I want to modify some options in my fstab (umask parameter for vfat disks, for instance). It seems that fstab is generated at boot time by linuxlive scripts. Putting my modified fstab in rootcopy doesn't work (and is not a good solution imo). So, who can I change the way fstab is generated ? Where to add the tweaked parameters ?
> thats handled in the initrd. You actually want to mount the initrd, open it > up, fiddle with it and repack it up?
as markds wrote, it is located in initrd.gz.
documented on: 2008-03-24, Quax
Great !
Many thanks for those informations, it worked just fine. If anyone is interested :
I couldn't mount initrd (error message -> mount: could not find any free loop device) so I did :
# mknod -m 0600 /dev/loop255 b 7 255 # mount -o loop=/dev/loop255 /tmp/initrd /mnt/loop
documented on: 2008-03-24, merindol