linux mount

挂载磁盘

查看分区
cat /proc/partitions
查看磁盘信息
df [-T]
指定字符集进行挂载
mount -o iocharset=utf8 /dev/sdb4 /mnt/lxl
卸载
umount /mnt/lxl
查看文件夹信息
du 
-h :优化单位
-s :当前文件夹

挂载iso

建立挂载点
mkdir /mnt/iso
挂载netwar.iso文件
mount -o rw,loop netware.iso /mnt/iso
卸载iso
umount /mnt/iso


你可能感兴趣的:(linux,mount)