1. Red Hat Enterprise Linux 7
1.1. 设备的识别
1 | /dev/sda ##系统中的第一块串口硬盘 |
1.2. 设备的使用
1 | mount 设备 挂载点 ##挂载 |
1.3. 当设备卸载出现以下问题时
1 | [root@foundation0 ~]# umount /mnt/ |
找到占用设备的进程
1 | fuser 设备|挂载点 |
1.4. 如何在系统中查找文件
find
find 路径 条件 条件值
1 | find /mnt -name file |
locate
用法
1 | locate +条件 ##在数据库中查找符合条件的文件 |
缺点
1 | 不能实时自动更新数据库,导致查询结果不准确 |
更新并配置
1 | updatedb ##更新数据库 |
1.5. 链接
硬链接
硬链接是文件的副本,为了节省设备节点号
1 | ln 文件 链接 |
软链接
软链接是文件的快捷方式,为了节省设备存储块
1 | ln -s 文件 链接 |
查看文件节点号
1 | ls -i 文件名 |
1.6. dd
1 | dd if=/dev/zero of=/mnt/file bs=1024 count=10 |