If I put a USB-drive in, it will automount. I can see it with lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 1 7,5G 0 disk
└─sdb1 8:17 1 7,5G 0 part /media/user/usb-drive
If I unmount it with umount
umount /media/user/sdb1
it will still be visible with lsblk
, but not mounted any more:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 1 7,5G 0 disk
└─sdb1 8:17 1 7,5G 0 part
but if I instead eject it by clicking the eject icon in Thunar (xfce file manager), it will disappear from the list in lsblk
. Why is that so?