How to put /etc
on separate partition? Obviously i can't do that by editing /etc/fstab
like i did with /home
, because... it's in /etc
. I want /etc
and /home
on one partition (sda7), and the rest on the other (sda6). I guess /etc
must be symlink to /mnt/part2/etc
(/mnt/part2
being mount point of sda7), and same with /home
. But how to tell the system to mount part2 without access to fstab
?
I'm using Arch Linux x64, if that helps.
make
your own kernel patched in way that it will automount youretc
beforeinit
. Or you could make minimalbin dev etc lib proc
sysdisk with minimal libraries / utilities (sh
,mount
and few libs). Will easily fit under 1MB... btw. this is somewhat same as asking about how to build house without walls, you can do that but it is mostly useless and it will be hard to add walls afterwards. – Sampo Sarrala May 30 '13 at 19:23/etc
on a different partition – Ulrich Dangel May 30 '13 at 20:12/
like absolutely everyone does. – Shadur May 31 '13 at 9:59systemd
-- and it still is a bad idea. – Shadur Jun 1 '13 at 14:46