add ubuntu 10.10 iso to UBCD
Moderators: Icecube, StopSpazzing
add ubuntu 10.10 iso to UBCD
He,
I created a UBCD on my USB-flash drive using this guide
http://wiki.ultimatebootcd.com/index.ph ... stallation
Everything works great.
Now I would like to add the Ubuntu Netbook Edition LiveCD:
ubuntu-10.10-netbook-i386.iso
How do I do this? (im newbie with this)
I created a UBCD on my USB-flash drive using this guide
http://wiki.ultimatebootcd.com/index.ph ... stallation
Everything works great.
Now I would like to add the Ubuntu Netbook Edition LiveCD:
ubuntu-10.10-netbook-i386.iso
How do I do this? (im newbie with this)
Re: add ubuntu 10.10 iso to UBCD
yeah i also created a backup ultimate boot cd sd card for my eeepc
am using ubuntu-netbook edition as well
am also looking for a guide to integrate ultimate boot cd with ubuntu-netbook-10.10
so that if my hdd os is lost i can boot into sd card ubuntu and set things back

am using ubuntu-netbook edition as well

am also looking for a guide to integrate ultimate boot cd with ubuntu-netbook-10.10

so that if my hdd os is lost i can boot into sd card ubuntu and set things back

Re: add ubuntu 10.10 iso to UBCD
hmm long time no reply and 71 views
so i guess ubuntu 10.10. cant be integrated or something like that ???
so i guess ubuntu 10.10. cant be integrated or something like that ???
Re: add ubuntu 10.10 iso to UBCD
The possibility to integrate UBCD and Ubuntu into 1 UFD (USB Flash Disk) depends on the way you prepare the UFD (filesystem, bootloader, BIOS settings, specific bootable UFD...), more than it depends on UBCD or Ubuntu.
Personally, I don't see the point in using the same UFD for a "regular" OS and for a "maintain/repair/administration" tool, and maybe there is no much actual experience in making such an UFD in this forum. Maybe that's why you didn't receive suggestions here?
I can think about several possibilities, according to your goal.
You could search for more general solutions, like installing "Linux and UBCD" (PartedMagic is included already, and there are other tutorials and similar troubleshooting questions at this UBCD forum and at the UBCD Wiki http://wiki.ultimatebootcd.com for other distros) instead of "Ubuntu and UBCD", and from that start point, try to reproduce the general method with a specific Linux distro.
In any case, you should try to use the latest available versions of the tools, not just the versions mentioned in a specific tutorial, except for cases where you find specific suggestions / recommendations for specific "previous" versions.
If you want to try RMPrepUSB as suggested in the tutorial at the UBCD Wiki http://wiki.ultimatebootcd.com , you should search for the specific RMPrepUSB forum at boot-land.net. There might be useful tips also at the RMPrepUSB website.
Using RMPrepUSB or any other similar tool, besides the methods you may find at their forums, you could try the complete "ISO" method, which includes several complete ISO images in 1 UFD, and the boot process expands the ISO image each time you boot. There are pros and cons for this method.
Another possibility is to use a "maintain/repair/administration" tool that is based on Ubuntu, as for example Ubuntu Rescue Remix, if this is more close to your actual goal.
Personally, I don't see the point in using the same UFD for a "regular" OS and for a "maintain/repair/administration" tool, and maybe there is no much actual experience in making such an UFD in this forum. Maybe that's why you didn't receive suggestions here?
I can think about several possibilities, according to your goal.
You could search for more general solutions, like installing "Linux and UBCD" (PartedMagic is included already, and there are other tutorials and similar troubleshooting questions at this UBCD forum and at the UBCD Wiki http://wiki.ultimatebootcd.com for other distros) instead of "Ubuntu and UBCD", and from that start point, try to reproduce the general method with a specific Linux distro.
In any case, you should try to use the latest available versions of the tools, not just the versions mentioned in a specific tutorial, except for cases where you find specific suggestions / recommendations for specific "previous" versions.
If you want to try RMPrepUSB as suggested in the tutorial at the UBCD Wiki http://wiki.ultimatebootcd.com , you should search for the specific RMPrepUSB forum at boot-land.net. There might be useful tips also at the RMPrepUSB website.
Using RMPrepUSB or any other similar tool, besides the methods you may find at their forums, you could try the complete "ISO" method, which includes several complete ISO images in 1 UFD, and the boot process expands the ISO image each time you boot. There are pros and cons for this method.
Another possibility is to use a "maintain/repair/administration" tool that is based on Ubuntu, as for example Ubuntu Rescue Remix, if this is more close to your actual goal.
Re: add ubuntu 10.10 iso to UBCD
Open the ubuntu-10.10-netbook-i386.iso ISO with 7-zip and extract:
and place those files in a subdir /ubuntu in your UFD.
Also place the ubuntu-10.10-netbook-i386.iso in /ubuntu.
Syslinux menu: Add the folowing to /ubcd/custom/custom.cfg:
Grub4dos menu: Add the folowing to /ubcd/custom/custom.lst:
Code: Select all
/casper/vmlinuz
/casper/initrd.lz
Also place the ubuntu-10.10-netbook-i386.iso in /ubuntu.
Syslinux menu: Add the folowing to /ubcd/custom/custom.cfg:
Code: Select all
LABEL ubuntu_live
MENU LABEL Try Ubuntu Netbook without installing
LINUX /ubuntu/vmlinuz
INITRD /ubuntu/initrd.lz
APPEND file=/cdrom/preseed/ubuntu-netbook.seed boot=casper iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash --
LABEL ubuntu_install
MENU LABEL Install Ubuntu Netbook
LINUX /ubuntu/vmlinuz
INITRD /ubuntu/initrd.lz
APPEND file=/cdrom/preseed/ubuntu-netbook.seed boot=casper only-ubiquity iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash --
Code: Select all
title Try Ubuntu Netbook without installing
kernel /ubuntu/vmlinuz file=/cdrom/preseed/ubuntu-netbook.seed boot=casper iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash --
initrd /ubuntu/initrd.lz
title Install Ubuntu Netbook
kernel /ubuntu/vmlinuz file=/cdrom/preseed/ubuntu-netbook.seed boot=casper only-ubiquity iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash --
initrd /ubuntu/initrd.lz
Download Ultimate Boot CD v5.0: http://www.ultimatebootcd.com/download.html
Use Parted Magic for handling all partitioning task: http://partedmagic.com/
Use Parted Magic for handling all partitioning task: http://partedmagic.com/
Re: add ubuntu 10.10 iso to UBCD
Icecube wrote:Open the ubuntu-10.10-netbook-i386.iso ISO with 7-zip and extract:and place those files in a subdir /ubuntu in your UFD.Code: Select all
/casper/vmlinuz /casper/initrd.lz
Also place the ubuntu-10.10-netbook-i386.iso in /ubuntu.
Syslinux menu: Add the folowing to /ubcd/custom/custom.cfg:Grub4dos menu: Add the folowing to /ubcd/custom/custom.lst:Code: Select all
LABEL ubuntu_live MENU LABEL Try Ubuntu Netbook without installing LINUX /ubuntu/vmlinuz INITRD /ubuntu/initrd.lz APPEND file=/cdrom/preseed/ubuntu-netbook.seed boot=casper iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash -- LABEL ubuntu_install MENU LABEL Install Ubuntu Netbook LINUX /ubuntu/vmlinuz INITRD /ubuntu/initrd.lz APPEND file=/cdrom/preseed/ubuntu-netbook.seed boot=casper only-ubiquity iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash --
Code: Select all
title Try Ubuntu Netbook without installing kernel /ubuntu/vmlinuz file=/cdrom/preseed/ubuntu-netbook.seed boot=casper iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash -- initrd /ubuntu/initrd.lz title Install Ubuntu Netbook kernel /ubuntu/vmlinuz file=/cdrom/preseed/ubuntu-netbook.seed boot=casper only-ubiquity iso-scan/filename=/ubuntu/ubuntu-10.10-netbook-i386.iso quiet splash -- initrd /ubuntu/initrd.lz
yaayyyyyyy that worked





thanks
so as far as i get
Code: Select all
iso-scan/filename
Re: add ubuntu 10.10 iso to UBCD
iso-scan/filename= tells Ubuntu to look for the ISO file specified after that parameter, instead of looking for the unpacked ISO. It is not a kernel parameter. The parameter is interpreted by the scripts inside the initramfs.msj4u wrote:Icecube wrote:Open the ubuntu-10.10-netbook-i386.iso ISO with 7-zip and extract:
so as far as i getis the parameter of ubuntu kernelCode: Select all
iso-scan/filename
It is not an universal parameter. Only some distro's use it. Another common used parameter to boot from ISO is fromiso=.
Download Ultimate Boot CD v5.0: http://www.ultimatebootcd.com/download.html
Use Parted Magic for handling all partitioning task: http://partedmagic.com/
Use Parted Magic for handling all partitioning task: http://partedmagic.com/