Author Topic: how do i add INSTALL PCLINUXOS to my usb stick boot menu?  (Read 1328 times)

Offline JoeSomebody

  • Jr. Member
  • **
  • Posts: 35
how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« on: February 22, 2012, 09:07:18 AM »
how do i add INSTALL PCLINUXOS to my usb stick boot menu?
it is on my custom iso when burned to dvd, but removed for my usb stick
i am assuming i can change something to include the missing option in live usb creator

Offline JoeSomebody

  • Jr. Member
  • **
  • Posts: 35
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #1 on: February 22, 2012, 09:35:23 AM »
are we expected to add it manually? if yes, why?

Offline Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10675
  • MLUs Forever!
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #2 on: February 22, 2012, 10:31:42 AM »
Up to recently that was not an option even on the LiveCD.

The boot options on the LiveUSB were, until the latest release, were not selectable by the user.

The next release should have more options added for the user to choose when creating the LiveUSB. The install option should be one of them, if it tests out OK.

Simply adding the word  install   to the end of the boot line should do what you need, but this has not been tested.

Else edit the menu.lst file on the USB device  .....  copy the standard boot stanza and paste it as an extra boot option, adding the word  install  and change the 'title' to reflect that it is the "install" option should be a more permanent solution.

I am interested in hearing of feedback to this, so if you do it please let us know how it behaves, thank you.

Quote
are we expected to add it manually? if yes, why?

Yes, for the present.
Because no one requested its inclusion before  ;)

MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Offline JoeSomebody

  • Jr. Member
  • **
  • Posts: 35
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #3 on: February 22, 2012, 12:19:49 PM »
thanks, I will edit the menu on the stick, sounds easy
can't try it for about 5 hours
just started remastering after fixing a few things

Offline DeBaas

  • Hero Member
  • *****
  • Posts: 1521
    • PCLinuxOS.nl
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #4 on: February 22, 2012, 02:19:26 PM »
I found this on the liveCD /isolinux/isolinux.cfg

Code: [Select]
label LiveCD
    kernel vmlinuz
    append livecd=livecd initrd=initrd.gz root=/dev/rd/3 acpi=on vga=788 keyb=us vmalloc=256M nokmsboot splash=silent

Code: [Select]
label Install PCLinuxOS
    kernel vmlinuz
    append livecd=livecd initrd=initrd.gz root=/dev/rd/3 acpi=on vga=788 keyb=us vmalloc=256M nokmsboot splash=silent install

On an Unetbootin USB /syslinux.cfg

Code: [Select]
label ubnentry6
menu label Install PCLinuxOS
kernel /isolinux/vmlinuz
append initrd=/isolinux/initrd.gz livecd=livecd  root=/dev/rd/3 acpi=on vga=788 keyb=us vmalloc=256M nokmsboot splash=silent install

So install it is ;) and it's working. (already done some installs from USB)
Don't forget to add fromusb at the end of the append lines on your USB for proper shutdown.

Code: [Select]
label ubnentry6
menu label Install PCLinuxOS
kernel /isolinux/vmlinuz
append initrd=/isolinux/initrd.gz livecd=livecd  root=/dev/rd/3 acpi=on vga=788 keyb=us vmalloc=256M nokmsboot splash=silent install fromusb

Offline Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10675
  • MLUs Forever!
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #5 on: February 22, 2012, 03:02:41 PM »
Quote
Don't forget to add fromusb at the end of the append lines on your USB for proper shutdown.

It is there by default when the LiveUSB is created by the PCLOS utility .......  so copying the existing boot stanza and adding install to the end is all that is required as far as I can see.

...  but never having done it, I am open to correction.

I always like to boot into a desktop before installing.

MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Offline DeBaas

  • Hero Member
  • *****
  • Posts: 1521
    • PCLinuxOS.nl
Re: how do i add INSTALL PCLINUXOS to my usb stick boot menu?
« Reply #6 on: February 23, 2012, 12:29:56 AM »
Quote
adding install to the end is all that is required as far as I can see.
Correct ;)