mirror of
https://github.com/cimryan/teslausb.git
synced 2026-03-01 12:40:33 +00:00
10 lines
276 B
Bash
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."
|
|
|