Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
soc:2009:pravin:journal:fedora11bko [2009/07/22 09:13] less1 |
soc:2009:pravin:journal:fedora11bko [2009/07/27 05:35] (current) less1 |
||
---|---|---|---|
Line 203: | Line 203: | ||
===== Removing plymouth ===== | ===== Removing plymouth ===== | ||
As marc has suggested, remove ''plymount'' from original iso, and see if it works without plymount. | As marc has suggested, remove ''plymount'' from original iso, and see if it works without plymount. | ||
- | If it doesn't then blame can be surely put on ''plymount'' and not the network related complications. | + | If it doesn't then blame can be surely put on ''plymount'' and not the network related complications. \\ |
+ | |||
+ | ==== Modifying ISO ==== | ||
+ | Now, the question is, how to add new initramfs into ISO and still keep it bootable?\\ | ||
+ | From Remastering Knoppix Howto, following is the command which works for knoppix | ||
+ | <code> | ||
+ | mkisofs -pad -l -r -J -v -V "KNOPPIX" -no-emul-boot -boot-load-size 4 \ | ||
+ | -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ | ||
+ | -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master | ||
+ | </code> | ||
+ | |||
+ | and I need to modify it, so that it will work for fedora. | ||
+ | |||
+ | <code> | ||
+ | mkisofs -pad -l -r -J -v -V "Fedora-11-i686-Live" -no-emul-boot -boot-load-size 4 \ | ||
+ | -boot-info-table -b isolinux/isolinux.bin -c isolinux/boot.cat \ | ||
+ | -hide-rr-moved -o /var/www/iso/fedora_11.iso /home/pravin/Etherboot/git/BKO.git/pxeknife/red_hat/fedora_11_live_cd/newfedora | ||
+ | </code> | ||
+ | ===== running startx from single user mode ===== | ||
+ | Tried an experiment of running ''startx'' from single user mode and see if it works.\\ | ||
+ | Well it did not worked atall. | ||
+ | |||
+ | ===== Problem Found ===== | ||
+ | With help of andyTim, the cause of problem has been located.\\ | ||
+ | The ''network'' and ''NetworkManager'' do restart the networking which breaks the existing HTTPFS mount. | ||
+ | |||
+ | |||
+ | ===== Solution ===== | ||
+ | The temporary solution tried is delete both of following files | ||
+ | - ''/etc/init.d/network'' | ||
+ | - ''/etc/init.d/NetworkManager'' | ||
+ | So, user has to first boot into single user mode, delete above files, | ||
+ | and then boot into runlevel 5. | ||
+ |