25 | | To mount the disk use command `sudo mount -o ro /dev/sdb1 /mnt/tmp`. This will mount it read only. Then check the data looks ok. If it does, remount the disk using `sudo mount -o remount,rw /mnt/tmp` to make it read/write and run the command `chmod a+rX -R /mnt/tmp' to ensure we have full read permission. Finally, remount the SATA back as read only, `sudo mount -o remount,ro /mnt/tmp`. |
| 25 | To mount the disk use command `sudo mount -o ro /dev/sdb1 /mnt/tmp`. This will mount it read only. Then check the data looks ok. If it does, remount the disk using `sudo mount -o remount,rw /mnt/tmp` to make it read/write and run the command `chmod a+rX -R /mnt/tmp` to ensure we have full read permission. Finally, remount the SATA back as read only, `sudo mount -o remount,ro /mnt/tmp`. |