|
From: Dick M. <di...@li...> - 2008-04-10 07:36:13
|
Dick Middleton wrote: > Bruce, > >>>>>> unionfs is a part of DL 1.3 > You do it like this: > You could have 2 directories: /etc-default and /shm/etc-admin and mount like this: > > mount -t unionfs -o dirs=/shm/etc-admin:/etc-default=ro none /shm/etc A better way is if /etc is the default in rom and /shm/etc-admin is the user's changes: mount -t unionfs -o dirs=/shm/etc-admin:/etc=ro none /etc That way you don't have the default in shm and you can always access etc-admin directly for save and restore. Last night I was a bit fixated on keeping the link /etc->/shm/etc. Dick |