目录

工欲善其事

实践出真知

活跃标签: linux java mysql 待分类 windows js win10 springboot pdf idea docker 电路 nginx esp32 macOS git vue Arduino maven ffmpeg

存档:

centos7.5 识别exfat U盘

Install the nux repo for CentOS 7 yum install -y http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm 安装这两个包 yum install exfat-utils fuse-exfat 插硬盘,看看是否挂载成功 可以使用 fdisk -l 或 cat /proc/partitions 命令查看 [~]# fdisk -l WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion. 磁盘 /dev/sda:1000.2 GB, 1000204886016 字节,1953525168 个扇区 Units = 扇区 of 1 * 512 = 512 bytes 扇区大小(逻辑/物理):512 字节 / 4096 字节 I/O 大小(最小/最佳):4096 ....

Linux 开启按Tab时忽略大小写

Linux下配置 Tab忽略大小写: 切换root 账户 root su 编辑 /etc/inputrc 文件 vim /etc/inputrc 粘贴下面代码 set completion-ignore-case on 保存后重启即可 Mac 下配置 Tab忽略大小写: 当前 用户目录下 vim .inputrc 粘贴下面的代码 set completion-ignore-case on set show-all-if-ambiguous on TAB: menu-complete 保存重新打开终端即可