Files
teslausb/windows_archive/remountfs_rw
2018-10-18 07:32:08 -05:00

10 lines
276 B
Bash

#!/bin/bash
echo "Remounting / as read/write"
mount / -o remount,rw
echo "Remounting /boot as read/write"
mount /boot -o remount,rw
echo "Done. Make any changes needed, and reboot the Pi when ready."
echo "Filesystems / and /boot will be mounted as read only after reboot."