linux如何卸载掉所有挂载的分区
发布网友
发布时间:2022-04-20 11:47
我来回答
共5个回答
热心网友
时间:2022-07-06 14:18
你用fdisk -l 查看你分区是/dev/hda* 还是/dev/sda*
或者你的分区挂载的目录是/mnt还是那
然后你用umount /dev/sda(分区)
or
umount /mnt(挂载的目录)
就可以了
热心网友
时间:2022-07-06 14:19
umount /要卸载的分区 在去/etc/fstab 删去LABEL=已经删去的分区
不改这里 你的进不去系统
热心网友
时间:2022-07-06 14:19
umount /挂载点
ex
umount /mnt
使用 mount 不带参数即可,ex
在我的cygwin
nc10@your-5554c55be4 ~
$ mount
D:/cygwin/bin on /usr/bin type ntfs (binary)
D:/cygwin/lib on /usr/lib type ntfs (binary)
D:/cygwin on / type ntfs (binary)
C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount)
D: on /cygdrive/d type ntfs (binary,posix=0,user,noumount)
R: on /cygdrive/r type vfat (binary,posix=0,user,noumount)
nc10@your-5554c55be4 ~
$
on 后面的就是挂载点
热心网友
时间:2022-07-06 14:20
umount -a
umount 是卸载命令,参照-h命令来学习使用。
热心网友
时间:2022-07-06 14:20
umount -a