Page 3 of 3

Re: Show or teach me about ISO booting

Posted: 14 Jan 2017, 01:08
by Ed_P
Bogomips wrote:So now Ed_P the time has come the walrus said ... to make a nice tutorial out of all this! :good:
Thank you Bogomips. Let me know when you're done and I will review it. :wink:

Re: Show or teach me about ISO booting

Posted: 14 Jan 2017, 01:36
by Ed_P
Jack wrote:I will do this that will help a lot.

Code: Select all

    set bootparms='from='$isopath' volume=33 reboot=cold extramod=/porteus322/Modules  changes=EXIT:/porteus322/Changes'
The advantage of this approach, IMO, is if you change/install/activate something and it doesn't work you can choose when shutting down to not same the changes. You start the next boot fresh to start over.

A tweak I have made to my Grub2Win isoboot code that you may like is I specify the name of the folder where my Linux system's files and folders are only once by setting a variable to the name and then using the variable whenever the folder name is required. In your instance your code could become:

Code: Select all

    set iso_folder='/porteus322'
    set isopath=$iso_folder/Porteus-MATE-v3.2.2-x86_64.iso
    set kernelpath='/boot/syslinux/vmlinuz'                
    set initrdpath='/boot/syslinux/initrd.xz'              
    set bootparms='from='$isopath' volume=33 reboot=cold extramod='$iso_folder'/Modules changes=EXIT:'$iso_folder'/Changes' 
Just a thought, not a requirement. What you're doing is working fine at this point. (finally)

Re: Show or teach me about ISO booting

Posted: 14 Jan 2017, 02:03
by Jack
I can't believe how better it run this way and a lot better then a USB. I will try this later or when I reboot up.

Code: Select all

    set iso_folder='/porteus322'
    set isopath=$iso_folder/Porteus-MATE-v3.2.2-x86_64.iso
    set kernelpath='/boot/syslinux/vmlinuz'               
    set initrdpath='/boot/syslinux/initrd.xz'             
    set bootparms='from='$isopath' volume=33 reboot=cold extramod='$iso_folder'/Modules changes=EXIT:'$iso_folder'/Changes' 
This way looks a lot cleaner or better to me.

Re: Show or teach me about ISO booting

Posted: 14 Jan 2017, 10:39
by Bogomips
Ed_P wrote:
Bogomips wrote:So now Ed_P the time has come the walrus said ... to make a nice tutorial out of all this! :good:
Thank you Bogomips. Let me know when you're done and I will review it. :wink:
Oh no! I meant you that should do the honours, while all's fresh in mind, and that's the best time! 8)

Re: Show or teach me about ISO booting

Posted: 14 Jan 2017, 19:44
by Jack
Well I have both Porteus 64bit Mate v3.2.2 and v3.2rc5 setup in Grub2Win.

1. Windows 7 64bit.
2. v3.2.2 the one for me that boot up slow.
3. v3.2rc5 the one for me that boot up fast.