在我们的Ubuntu 10.04服务器上,我已经configuration它将第二个硬盘自动挂载到/mnt/wd15/但是现在我不能卸载(使用umount)或者在/etc/fstabfind条目。
我如何卸载它(或/并找出如何安装)?
细节:
我收到以下错误消息:
sudo umount /dev/sdb1 umount: /dev/sdb1: not mounted sudo umount /mnt/wd15/ umount: /mnt/wd15/: not mounted
这是我的mount输出(与/ etc / mtab相同):
# sudo mount /dev/mapper/veda-root on / type ext4 (rw,errors=remount-ro) proc on /proc type proc (rw,noexec,nosuid,nodev) none on /sys type sysfs (rw,noexec,nosuid,nodev) none on /sys/fs/fuse/connections type fusectl (rw) none on /sys/kernel/debug type debugfs (rw) none on /sys/kernel/security type securityfs (rw) none on /dev type devtmpfs (rw,mode=0755) none on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620) none on /dev/shm type tmpfs (rw,nosuid,nodev) none on /var/run type tmpfs (rw,nosuid,mode=0755) none on /var/lock type tmpfs (rw,noexec,nosuid,nodev) none on /lib/init/rw type tmpfs (rw,nosuid,mode=0755) none on /var/lib/ureadahead/debugfs type debugfs (rw,relatime) /dev/sda1 on /boot type ext2 (rw)
你可以使用“mount”找出哪些设备挂载到哪个目录中…
mount
它将首先列出设备,然后是挂载点,然后是文件系统types,最后是挂载选项。