| hawki  
 
 
 
 
 Group: Members
 Posts: 175
 Joined: Jan. 2004
 | 
|  | Posted: June 22 2005,13:20 |  |  I use GRUB as my loader so I don't know exactly which works best.  With GRUB I do the frugal install with no options at all.  I then specify my boot options on the "kernel" line.  I think that the equivalent would be to put it on the same line as your home and opt settings.  Here is a portion of my GRUB config file.  This way I can boot any of several ways depending on what I need at the time.
 
 # Boot automatically after 30 secs.
 timeout 30
 
 # By default, boot the first entry.
 default 0
 
 #or, for frugal,
 
 title DSL-frugal-mydsl-ssh-nodhcp (hda5)
 root (hd0,4)
 kernel /boot/isolinux/linux24 root=/dev/hda5 mydsl=hda6 ssh nodhcp
 initrd /boot/isolinux/minirt24.gz
 boot
 
 title DSL-frugal-base-norestore (hda5)
 root (hd0,4)
 kernel /boot/isolinux/linux24 root=/dev/hda5 base norestore
 initrd /boot/isolinux/minirt24.gz
 boot
 
 title DSL-frugal-toram-ssh-ftp-nodhcp (hda5)
 root (hd0,4)
 kernel /boot/isolinux/linux24 root=/dev/hda5 mydsl=hda6 toram ssh ftp nodhcp
 initrd /boot/isolinux/minirt24.gz
 boot
 |