lsblk:
Code: Select all
andy@T431 ~ $ lsblk -nio mountpoint /dev/sdb1
/run/timeshift/backup
Code: Select all
andy@T431 ~ $ df | grep sdb1
/dev/sdb1 1911193164 901146448 922710912 50% /media/ultrabay

Code: Select all
andy@T431 ~ $ lsblk -nio mountpoint /dev/sdb1
/run/timeshift/backup
Code: Select all
andy@T431 ~ $ df | grep sdb1
/dev/sdb1 1911193164 901146448 922710912 50% /media/ultrabay
/proc/mounts
?Code: Select all
andy@T431 /proc $ grep sdb1 mounts
/dev/sdb1 /media/ultrabay ext4 rw,relatime 0 0
/dev/sdb1 /run/timeshift/backup ext4 rw,relatime 0 0
Code: Select all
df -h --output=source,target
Correct
/media/ultrabay
mount point (which is mounted via fstab, not that I can think of any reason why this should make any difference). I assume timeshift is using mount, but why this should take precedence in the lsblk output, no idea?