CentOS7.x 设置挂载、自动挂载、卸载磁盘设备
程序员文章站
2022-06-03 17:57:40
...
CentOS7.x 设置挂载、自动挂载、卸载磁盘设备
1、以块设备方式挂载
mount -t iso9660 -o loop CentOS-7-x86_64-Everything-1810.iso centos7.6/
2、设置开机自动挂载
vim /etc/fstab
尾行追加:
/dev/loop0 /opt/centos7.6 ext4 defaults 0 0
3、卸载设备
umount /dev/loop0
下一篇: python脚本处理文件到数据库