卸载不必要的驱动器

卸载不必要的驱动器

我的磁盘位置如下:

# df -HP
Filesystem             Size   Used  Avail Use% Mounted on
/dev/sda2              256G   177G    67G  73% /
/dev/sda1              510M    18M   467M   4% /boot
tmpfs                  8.5G      0   8.5G   0% /dev/shm
//10.10.10.10/softwares/shared_by_shantanu/abc/   2.0T   865G   1.2T  44% /mnt/windowsabc
//10.10.10.10/softwares/shared_by_shantanu/abc/   2.0T   865G   1.2T  44% /windosabc1
//10.10.10.10/abc/     2.0T   865G   1.2T  44% /mnt/windowsabc1

我想知道如何卸载“shared_by_shantanu”设置,因为它现在已经过时了。

答案1

命令是umount

umount /mnt/windowsabc
umount /windosabc1

答案2

只需使用umount命令,后跟每个共享的安装路径:

umount /mnt/windowsabc
umount /windosabc1
umount /mnt/windowsabc1

然后删除相关条目/etc/fstab以避免它们在系统启动时再次被安装。

相关内容