Difference between revisions of "CR48-stateful-exec"
From eLinux.org
(Created page with "=Making /mnt/stateful_partition exec friendly= ===NOTE: You need to root your CR48 before you can do this!=== Finally found out how to make the /mnt/stateful_pa...") |
|||
| Line 23: | Line 23: | ||
Reboot, and your stateful partition should be remounted with the correct options from this point forward.<br> | Reboot, and your stateful partition should be remounted with the correct options from this point forward.<br> | ||
| + | <br><br><br>[[CR48|Back to CR48 Home]] | ||
Revision as of 16:19, 20 January 2011
Making /mnt/stateful_partition exec friendly
NOTE: You need to root your CR48 before you can do this!
Finally found out how to make the /mnt/stateful_partition exec permission persistant.
- sudo su
- nano /sbin/chromeos_startup -- I'll use nano
Now, when scrolling around in nano, if the screen does not refresh properly when scrolling up/down pages, press CTRL-L to make it redraw the screen
While in nano, CTRL-C will give you you're current cursor position.
We want to edit lines 51, 58, and 67.<p>
Remove noexec, from each of those lines
The line should then look something like .... -o nodev,nosuid .....<p>
You can also remove the ,nosuid if you'll be wanting to install and SUID programs on the stateful partition.
Save the file by pressing CTRL-X and answering Y and pressing enter for the filename.
Reboot, and your stateful partition should be remounted with the correct options from this point forward.
Back to CR48 Home