How do I prevent my filesystems from being mounted read-only after suspending?
- by Chas. Owens
I have Ubuntu 12.04 installed on an SDHC card (only one ext2 partition, no swap). When I suspend using pm-suspend, my root filesystem is mounted read-only. I am currently "fixing" this with the following file:
/etc/pm/sleep.d/99_make_disk_rw:
#!/bin/sh
mount -o remount,rw /
But the disk is marked as needing an fsck on reboot. How can I…