Michael Creel wrote: > I need to figure out how to have the live CD image nfs mount /home. To > be exact, I need to execute "mount 192.168.0.1:/home /home" > in a way so that this is not subsequently undone by the normal > creation of /home/user.
i did some time ago change the fstab handling, so that live-initramfs by default just appends to an already existing fstab, rather than skipping it when it's not empty (fstab manipulation can be disabled entirely with nofstab, if desired). unfortunately, within a recent larger patch to live-helper some weeks ago, it got broken. however, now it's fixed again. you need to use the latest git snapshots for live-helper as well as live-initramfs, available from http://live.debian.net/debian-snapshots/: echo "192.168.0.1:/home /home nfs defaults 0 0" > chroot/etc/fstab additionally, if you want to avoid the default user creation, you can use nosudo as bootparameter (or even make it permanet through LH_BOOTAPPEND_LIVE="nosudo" in config/binary. -- Address: Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: [EMAIL PROTECTED] Internet: http://people.panthera-systems.net/~daniel-baumann/ _______________________________________________ debian-live-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-live-devel

