Após uma nova instalação do Kubuntu 15.10, minha unidade USB é montada automaticamente como somente leitura em /media/usb0
em vez de /media/<username>/
Montar saída
$ sudo mount
…
/dev/sdb1 on /media/usb0 type vfat (rw,nodev,noexec,noatime,nodiratime,sync,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
O dispositivo é de propriedade de root
:
drwxr-xr-x 9 root root 4,0K janv. 1 1970 usb0/
dmesg | tail
Eu notei errors=remount-ro
no final da linha do resultado mount
para o USB, então decidi verificar dmesg
para erros:
dmesg | tail
…
[64509.392669] sd 11:0:0:0: [sdb] Attached SCSI removable disk
[64509.698730] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
fsck
eu corro
$ sudo fsck.vfat -a /dev/sdb1
fsck.fat 3.0.28 (2015-05-16)
0x41: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
Automatically removing dirty bit.
There are differences between boot sector and its backup.
This is mostly harmless. Differences: (offset:original/backup)
3:53/6d, 4:59/6b, 5:53/64, 6:4c/6f, 7:49/73, 8:4e/66, 9:55/73, 10:58/00
…
Not automatically fixing this.
Reclaimed 123 unused clusters (503808 bytes) in 4 chains.
Performing changes.
/dev/sdb1: 3906 files, 500874/1974252 clusters
dmesg | tail
novamente
dmesg | tail
…
[64990.154612] sdb: sdb1
[64990.156582] sd 12:0:0:0: [sdb] Attached SCSI removable disk
Sem mais erros, mas ainda sem permissões de gravação.
Pergunta
Como eu monto automaticamente meu USB como leitura / gravação?