LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-01-2009, 10:15 AM   #1
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Rep: Reputation: 15
Unable to Install Linux on Old PC


I have an old pentium 3 PC with a CD/DVD drive and I wanted to install Linux from a DVD but it does not seem to recognise the linux dvd. Can anyone tell me how I can create a bootable CD from this DVD so that I can use it to install on my old PC.

Thanks

Jay
 
Old 08-01-2009, 10:25 AM   #2
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Download the iso from the distribution you want to install.
Burn the iso to cd or dvd
http://www.petri.co.il/how_to_write_iso_files_to_cd.htm
Boot from the cd/dvd
 
Old 08-01-2009, 10:27 AM   #3
rjwilmsi
Member
 
Registered: Mar 2005
Location: UK
Distribution: opensuse 12.2 x86_64
Posts: 563

Rep: Reputation: 38
I think that the issue you are experiencing is down to the fact that some older DVD drives will not correctly read DVDs burnt at home (as opposed to factory pressed DVDs). To create a bootable CD you need to download and burn the CD image for the distribution you are attempting to install. An alternative might be to look for LINUX magazines which include an installable DVD as a freebie with the magazine.
 
Old 08-01-2009, 10:30 AM   #4
rjwilmsi
Member
 
Registered: Mar 2005
Location: UK
Distribution: opensuse 12.2 x86_64
Posts: 563

Rep: Reputation: 38
I have heard of older CD or DVD drives being unable to read discs burnt at home (as opposed to those pressed in a factory). You might find that getting a CD off of a LINUX magazine might work better.
 
Old 08-01-2009, 10:35 AM   #5
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Original Poster
Rep: Reputation: 15
I was wondering if it was possible to create an iso from the debian dvd that I already have, rather than download the entire distribution?

The debian dvd is from a Linux magazine so I think the factory pressed dvd's do not run on my old PC.

Last edited by Jay88; 08-01-2009 at 10:40 AM.
 
Old 08-01-2009, 10:39 AM   #6
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Do you still have the original iso you downloaded?
Try to burn it to cd/dvd at a low speed.
The first dvd will install almost everything you need.
 
Old 08-01-2009, 10:43 AM   #7
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Original Poster
Rep: Reputation: 15
I did not download it, I have a dvd from a Linux magazine.
 
Old 08-01-2009, 10:47 AM   #8
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Take a look at
http://en.kioskea.net/faq/sujet-231-make-an-iso-image
 
Old 08-01-2009, 10:53 AM   #9
vonbiber
Member
 
Registered: Apr 2009
Distribution: slackware 14.1 64-bit, slackware 14.2 64-bit, SystemRescueCD
Posts: 533

Rep: Reputation: 129Reputation: 129
you can create an iso file from your dvd by using the
command dd in linux:

dd if=/dev/dvd of=whatevernameyouwant.iso

Check that you have a symbolic link
/dev/dvd that points to the actual name of your dvd device,
if you don't know the name of your device, do a

dmesg | grep -i cd-rom

and look at the last line:

.... Attached ... CD-ROM thenameofthedevice

so your device is in /dev/thenameofthedevice

I know that with slackware it's possible to install with
an iso or the contents of the iso placed in a partition.
Provided you have a usb plug and you can boot from usb
(actually, it's always possible to boot from usb even
if your bios doesn't support it)

I had a laptop with a cd drive that didn't work.
I created a usb boot from a usb boot image provided
by the slackware dvd. I booted from it, launched
the setup program and when prompted for the media
to install from I choose a partition where I actually
copied the contents of the iso by keeping the same structure
as in the dvd.

Check on the debian site, or look in your dvd if there's
anything similar
 
Old 08-01-2009, 11:18 AM   #10
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,343

Rep: Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587Reputation: 1587
know this may sound to simple, but sometimes the easy is overlooked, did you try cleaning the DVD.
Spent have the day one time, before I decided to clean it, trying to get a brand new straight of the box installation Cd to work that had thin layer of something on it that I couldn't see.
 
Old 08-01-2009, 11:22 AM   #11
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Original Poster
Rep: Reputation: 15
Thanks for your replies, I followed vonbiber's post and ran the dd command and I think it has created an iso file but it also created a .ICE-unix directory and .X11-unix directory - not sure what these are for because I only specified of=debian.iso.

Do I just burn the .iso file to a cd/dvd and do I need to use any special software because I am doing it on Linux?
 
Old 08-01-2009, 11:25 AM   #12
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by colorpurple21859 View Post
know this may sound to simple, but sometimes the easy is overlooked, did you try cleaning the DVD.
Spent have the day one time, before I decided to clean it, trying to get a brand new straight of the box installation Cd to work that had thin layer of something on it that I couldn't see.
Yes, this was the first thing I tried but made no difference - I am able to run the dvd and view its contents on a newer PC.
Thanks
 
Old 08-01-2009, 11:40 AM   #13
Jay88
Member
 
Registered: May 2009
Location: London
Distribution: Xubuntu 14.04
Posts: 49

Original Poster
Rep: Reputation: 15
Thanks for your replies, I followed vonbiber's post and ran the dd command and I think it has created an iso file but it also created a .ICE-unix directory and .X11-unix directory - not sure what these are for because I only specified of=debian.iso.

Do I just burn the .iso file to a cd/dvd and do I need to use any special software because I am doing it on Linux?
 
Old 08-01-2009, 12:26 PM   #14
gregorian
Member
 
Registered: Apr 2006
Posts: 509

Rep: Reputation: 34
Burn the ISO using software. It's always worked for me.

EDIT: You might find it easier to use Windows for burning the DVD. I use ImgBurn, a small and free tool for Windows. You can simply choose "Burn image to disc"

Last edited by gregorian; 08-01-2009 at 12:29 PM.
 
Old 08-01-2009, 12:26 PM   #15
dv502
Member
 
Registered: Sep 2006
Location: USA - NYC
Distribution: Whatever icon you see!
Posts: 642

Rep: Reputation: 57
I use this command to burn my iso files. Whether the image is in CD or DVD.

growisofs -dvd-compat -Z /dev/dvd=linux-distro.iso

The -dvd-compat gives maximum compatibility with many dvd-rom drives.

BTW, does the old P3 has support to boot from a cd/dvd drive? Check the bios if it supports this feature.

- Cheers
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to install linux in my P.C ecevijay6_2 Red Hat 6 12-14-2007 05:20 AM
Error: Unable to boot /install/2.6/linux when starting Etch Install BuckRogers01 Debian 4 08-06-2005 06:40 PM
unable to install linux 8.0 bishal Linux - Software 7 02-06-2004 12:15 PM
unable to install linux, please help nappy Linux - Software 7 04-17-2003 02:11 AM
unable to install linux zingcat Linux - Hardware 7 01-06-2003 09:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration