LagadaoDoMal
(usa Metamorphose)
Enviado em 15/12/2020 - 15:43h
leandropscardua escreveu:
Lembrando q vc tb consegue usar uma lâmpada até antes de ela queimar. Mas, se quiser insistir pode tentar remontar o device e forçar a permissão
sudo mount -o remount,rw /dev/sdX
Se não funcionar pode tentar recuperar o filesystem
sudo umount /dev/sdX
sudo fsck -p /dev/sdX
sudo fsck -a /dev/sdX
onde X é o device no seu sistema
O terminal retorna isso:
root@kali:~# mount -o remount,rw /dev/sdh
mount: /dev/sdh not mounted or bad option
In some cases useful info is found in syslog - try
dmesg | tail or so.
root@kali:~# umount /dev/sdh
umount: /dev/sdh: not mounted
root@kali:~# umount /dev/sdh
umount: /dev/sdh: not mounted
root@kali:~# fsck -p /dev/sdh
fsck from util-linux 2.28.1
fsck.ext2: Read-only file system while trying to open /dev/sdh
Disk write-protected; use the -n option to do a read-only
check of the device.
root@kali:~# fsck -p /dev/sdh -n
fsck from util-linux 2.28.1
e2fsck: Only one of the options -p/-a, -n or -y may be specified.
root@kali:~# fsck -a /dev/sdh
fsck from util-linux 2.28.1
fsck.ext2: Read-only file system while trying to open /dev/sdh
Disk write-protected; use the -n option to do a read-only
check of the device.