5 ms·
What are the "easy" steps to "overlay a separate read-write filesystem over the readonly system partition"? I would not even know where to start.
by HugThem 6y ago
What are the "easy" steps to "overlay a separate read-write filesystem over the readonly system partition"? I would not even know where to start.
- lupyuen 6y agoJust a simple line :-) sudo mount -o remount,rw / Then we can sudo apt install anything... sudo apt install gcc gdb git make libgles2-mesa-dev
- panta 6y agoThis is re-mounting R/W the root, not mounting an overlay. What you install this way will be wiped out on next update.
- IronBacon 6y agoI think something like "mount --bind olddir newdir"...