|
I have a block device I call backups (/dev/xvdc) mounted to /mnt/backups and I can't unmount it. It doesn't show up in fstab or mtab and is there after reboots. I mounted this drive a couple of years ago and must have done it in a weird way that I can't remember. I want to unmount now, but can't figure out how to do it. Despite umount saying it's not mounted, I can use it just fine.
umount /mnt/backups/ umount: /mnt/backups/: not mounted
cat /etc/fstab # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/xvda / ext3 noatime,errors=remount-ro 0 1 /dev/xvdb none swap sw 0 0
cat /etc/mtab rootfs / rootfs rw 0 0 /dev/root / ext3 rw,noatime,errors=remount-ro,barrier=0,data=writeback 0 0 devtmpfs /dev devtmpfs rw,relatime,size=1019268k,nr_inodes=254817,mode=755 0 0 tmpfs /run tmpfs rw,nosuid,noexec,relatime,size=204092k,mode=755 0 0 tmpfs /run/lock tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k 0 0 proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0 sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0 tmpfs /run/shm tmpfs rw,nosuid,nodev,noexec,relatime,size=460600k 0 0 devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
|