11

I was trying to install Ubuntu on an older laptop which doesn't have a DVD ROM or a USB boot capabilities. Is there an option to burn the image files to a Cd ROM? I am pretty sure that the size of the image file may be slightly larger to fit on a CD ROM. Is there a way to split the image files and use two CD Roms instead?

Mohammad Reza Rezwani
  • 10,286
  • 36
  • 92
  • 128
sam
  • 111

6 Answers6

12

You should install Ubuntu Minimal from the iso, you can download it here: https://help.ubuntu.com/community/Installation/MinimalCD

Then, once logged on the console, set the network, and install the desktop you need:

  • for Ubuntu, sudo apt-get install ubuntu-desktop
  • on an old laptop, try Xubuntu, sudo apt-get install xubuntu-desktop
ttoine
  • 1,160
4

You might want to consider something called plop boot. It is a small image you burn to cd that you boot from, then boots from usb. Useful for all those computers that don't boot usb.

Download and burn Plop-Boot

Download Ubuntu and put it on a usb just like you are going to install it.

Put the usb drive and cd in the other computer, turn it on, and Away You GO!

Scott Goodgame
  • 2,636
  • 15
  • 20
0

This may be possible if you have two optical drives, although I have no idea how, though. In answer to your question, your proposed method is impossible, since the live OS loaded into ram will be trying to access non-existent data (likely in /dev/sr0) when installing.

But you can use the minimal image[0], as jmreicha suggested, to burn to a 700MiB CD and install the ubuntu-desktop package after installation:

$ sudo -i # or 'su -'
# apt-get install ubuntu-desktop

Notes

The installer from the minimal CD is simple enough to not explain, but I've had trouble with wireless donogles when installing (the installer needs to retrieve packages from the ubuntu servers), so I would use an ethernet cable if available during the installation process.

References

[0] https://help.ubuntu.com/community/Installation/MinimalCD

0

You can prepare a cd with Plop and using it boot from a pendrive anyway.

f p
  • 101
0

1- You can simply download Ubuntu Desktop CD ISO Image from the following link http://releases.ubuntu.com/precise/

2- Desktop ISO will fit in a CD as you need (DO NOT DOWNLOAD THE ALTERNATE ISO) (PC (Intel x86) desktop CD would be the best choice)

3- Have fun :)

Ahmadgeo
  • 1,401
  • Here is the direct download link http://releases.ubuntu.com/precise/ubuntu-12.04.2-desktop-i386.iso – Ahmadgeo Mar 25 '13 at 18:32
0

I had a similar situation where I could burn only CD and not DVD and wanted to install Ubuntu on a "new" older computer that I got. What I did was download 12.04 (693 MB ISO that can be burnt to CD) and then upgrade to 12.10. This may be a more time consuming process. Does the computer have a floppy drive? Can it boot over a network using PXE?

vyse
  • 41