findmnt, mountinfo mostra partições inexistentes

0

Percebi que findmnt -n -o SOURCE --target MOUNT_POINT estava retornando linhas contendo dispositivos de bloco que não existiam no meu sistema:

TARGET                              SOURCE    FSTYPE OPTIONS
/home/USER/mnt/070C6A0EB3DFA834 /dev/sdb1 vfat   rw,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
/home/USER/mnt/070C6A0EB3DFA834 /dev/sdc1 vfat   rw,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro

Também notei que cat /proc/self/mountinfo mostra resultados semelhantes:

223 21 8:17 / /home/USER/mnt/MNT rw,relatime shared:206 - vfat /dev/sdb1 rw,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
263 223 8:33 / /home/USER/mnt/MNT rw,relatime shared:216 - vfat /dev/sdc1 rw,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
█

Ambas as saídas indicam que a mesma partição é denominada /dev/sdb1 , bem como /dev/sdc1 . Mas o nome do caminho /dev/sdb1 não existe no meu sistema:

[my-hostname][0]$ findmnt -n -o SOURCE --target /home/USER/.usb-drive-symlink | xargs -L1 ls -l
ls: cannot access '/dev/sdb1': No such file or directory
brw-rw---- 1 root disk 8, 33 Sep  3 19:40 /dev/sdc1

O que poderia estar errado?

    
por user84207 04.09.2018 / 05:53

0 respostas