PDA

View Full Version : [all variants] Dual boot without much hardware



Austin25
September 5th, 2010, 03:55 AM
I have an old desktop with Xubuntu on it, and I'd like to set up a dual boot of Xubuntu and Ubuntu Server Edition. I don't have any live CDs, nor can I burn any. I don't have any working floppy drives, and the computer is too old to support usb booting or network booting, any ideas?

bobpress
September 5th, 2010, 04:03 AM
Looks like your choices are limited. You need a CD to run which will take awhile, but you can get it through a request to https://shipit.ubuntu.com/. You probably need both the desktop and server CDs since you need to use gparted on a live CD to create some free space on your hard drive for the Server edition (unless you have a second HD to install).

Austin25
September 5th, 2010, 04:17 AM
Looks like your choices are limited. You need a CD to run which will take awhile, but you can get it through a request to https://shipit.ubuntu.com/. You probably need both the desktop and server CDs since you need to use gparted on a live CD to create some free space on your hard drive for the Server edition (unless you have a second HD to install).
Isn't there some way to do it with GRUB or something?

witeshark17
September 5th, 2010, 05:50 AM
Good luck yo!

bobpress
September 5th, 2010, 06:28 AM
Isn't there some way to do it with GRUB or something?

No, you need to be able to change the partitions on the hard drive to install a second system and you have to not be using any partition that will be changed. For Windows users in your situation, there is WUBI to install Ubuntu within the Windows partition, but I don't know of an equivalent for a linux distribution except Virtual Box and similar virtual software. You need enough memory to run two linux systems at the same time, however, probably a Gig or better. Don't know what hardware you actually have.

Austin25
September 5th, 2010, 06:40 AM
No, you need to be able to change the partitions on the hard drive to install a second system and you have to not be using any partition that will be changed. For Windows users in your situation, there is WUBI to install Ubuntu within the Windows partition, but I don't know of an equivalent for a linux distribution except Virtual Box and similar virtual software. You need enough memory to run two linux systems at the same time, however, probably a Gig or better. Don't know what hardware you actually have.
I have Virtual box on my laptop. (It has much better spces) I have a Virtual computer set up with the same size hard drive and the same partition table I would like. Is there any way to copy it to the hard drive? What about some form of chainloading to a USB drive?

Doulos1
September 5th, 2010, 06:51 AM
One daughter got an i5 and the other go an AMD quad. Both are awesome, especially compared to my P4 server.

bobpress
September 5th, 2010, 07:15 AM
I have Virtual box on my laptop. (It has much better spces) I have a Virtual computer set up with the same size hard drive and the same partition table I would like. Is there any way to copy it to the hard drive? What about some form of chainloading to a USB drive?

The problem is that however you use a USB, except for booting from one (which you can't do - I assume due to older PC and bios), your partition on the hard drive which you need to partition will be mounted and active.

Since you also have a laptop, can you download and burn a CD there? I have two older PCs which I changed from XP to Ubuntu by download Ubuntu iso to my laptop, burning a CD and booting from the CDs on the older PCs.

Austin25
September 5th, 2010, 07:26 AM
The problem is that however you use a USB, except for booting from one (which you can't do - I assume due to older PC and bios), your partition on the hard drive which you need to partition will be mounted and active.

Since you also have a laptop, can you download and burn a CD there? I have two older PCs which I changed from XP to Ubuntu by download Ubuntu iso to my laptop, burning a CD and booting from the CDs on the older PCs.
No, I can't burn a CD, see here. (http://ubuntuforums.org/showthread.php?t=1549953&highlight=CD+burning)

bobpress
September 5th, 2010, 07:37 AM
No, I can't burn a CD, see here. (http://ubuntuforums.org/showthread.php?t=1549953&highlight=CD+burning)

Was K3B among the programs you tried? I've had trouble on a laptop with Brasero and GnomeBaker burning iso images.

Sorry, didn't see your K3B reference. Do you have any form of Windows accessible to you? I resorted to burning a CD under MS for use a couple of times.

I've seen several error reports and this page about problems burning CDs. http://jeff.ecchi.ca/blog/2010/05/31/burnt-by-disc-burning/

Austin25
September 5th, 2010, 09:16 AM
Are there any tools to boot a Hard Drive Image?

Austin25
September 6th, 2010, 04:46 PM
Ok, I think I can use unetbootin with slax, then boot it in "copy to ram mode" so it doesn't need to mount the hard drive. Will this command work, or do I need a different format of Hard disk image?

dd if=hdimage.vdi of=/dev/sda1

GoggleEyedSalmon
September 8th, 2010, 09:35 PM
Did you manage to do this? I am trying to do a similar thing and I can't seem to get any help.

Austin25
September 21st, 2010, 03:11 AM
I ended up using a broken external hard drive and borking it somewhat. I converted a .vdi to .raw and put it on said hard drive, then copied it with
dd /media/sdb1/image.raw /dev/sda

Austin25
November 20th, 2010, 07:29 PM
Alright, I ended up using another computer to burn an ubuntu cd, installed ssh on the live environment, then used:

ssh ubuntu@ubuntu.local 'dd if=/dev/sda' | dd of=image.raw
Then I used virtualization to install everything on the image, then I used:

dd if=image.raw | ssh ubuntu@ubuntu.local 'dd of=/dev/sda'