摘要: ctrl+k ctrl+s 打开快捷键列表,标签页最右边可打开自定义快捷键的文件。 内容可参考 Key Bindings for Visual Studio Code 例如: // Place your key bindings in this file to override the defaul 阅读全文
posted @ 2024-06-28 18:58 cliter 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 编辑下载目录的 desktop.ini,可复制 restore-desktop-ini.md 中的内容。 注意:desktop.ini 为隐藏文件,除了在“文件夹选项”需要显示隐藏文件外,还要取消勾选“隐藏受保护的操作系统文件(推荐)”。 删除 win+r 的 %localappdata% 下的 I 阅读全文
posted @ 2024-06-28 18:40 cliter 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 上方选择排序 - 分组依据 - 无 右边三个点 - 选项(即文件夹选项) - 查看 - 应用到文件夹 来自: Disable Grouping in Windows 11 Explorer 阅读全文
posted @ 2024-06-28 18:37 cliter 阅读(9) 评论(0) 推荐(0) 编辑
摘要: syncthing 的作用:多平台文件同步 客户端:win、安卓、Linux(docker) 环境:手机、linux 服务器、pc linux 的 ip 地址为:123.123.123.123 目的:做笔记,受不了 remotely-save 丢失的风险。仅让这几台设备互联,实现文件同步,不希望被其 阅读全文
posted @ 2024-06-12 09:18 cliter 阅读(6) 评论(0) 推荐(0) 编辑
摘要: youtube 视频下载 下载 yt-dlp # python 虚拟环境 apt install python3.11-venv python3-virtualenv python3 -m venv env #创建虚拟环境 source env/bin/activate #进入虚拟环境 deacti 阅读全文
posted @ 2023-08-16 04:38 cliter 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 环境:debian、win10 双系统 启动 win10 后,grub 不显示。 通过 debian.iso 文件进入 advanced - rescue mode,在选择分区的一步选择 linux 分区(不清楚就一个个选过去),选择重新安装 grub。 阅读全文
posted @ 2023-08-14 19:54 cliter 阅读(196) 评论(0) 推荐(0) 编辑
摘要: [toc] 环境:debian 查看 [unicodes](https://unicodes.jessetane.com/) ## [手动安装](https://wiki.debian.org/Fonts#Manually) 1. 安装目录 - /usr/local/share/fonts (sys 阅读全文
posted @ 2023-08-04 01:49 cliter 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 需求:因 linux 分区不够大,需要 linux 开机自动挂载 win 分区。 环境:Debian 12 mount 命令可以挂载分区,通过 [mount man部分中文#The files /etc/fstab, /etc/mtab and /proc/mounts](https://www.c 阅读全文
posted @ 2023-07-21 05:43 cliter 阅读(62) 评论(0) 推荐(0) 编辑
摘要: [toc] Unix 系统中可访问的所有文件都排列在一棵大树中,即文件层次结构,根位于 / 。 这些文件可以分布在多个设备上。 mount 命令用于将某个设备上找到的文件系统附加到大文件树。 相反,umount(8) 命令将再次分离它。 文件系统用于控制数据如何存储在设备上或通过网络或其他服务以虚拟 阅读全文
posted @ 2023-07-20 16:29 cliter 阅读(28) 评论(0) 推荐(0) 编辑
摘要: ```shell # docker exec -it /bin/bash # echo php_value upload_max_filesize 500M $'\n'php_value post_max_size 500M >> .htaccess ``` 退出容器:Ctrl+p Ctrl+q 阅读全文
posted @ 2023-07-17 18:06 cliter 阅读(226) 评论(0) 推荐(0) 编辑