Congratulations to AcaCandy on her 100,000th post!
There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
acer black screen blue screen boot bsod computer connection crash css dell display drive driver drivers email error ethernet excel firefox firefox 3 game hard drive internet internet explorer itunes laptop linux malware monitor network networking nvidia outlook outlook 2003 outlook 2007 outlook express partition problem router slow software sound trojan usb video virus vista windows windows xp wireless
UNIX/Linux
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Operating Systems > UNIX/Linux >
Install from a Live CD/DVD?


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

Closed Thread
 
Thread Tools
GeekGawd's Avatar
Computer Specs
Senior Member with 177 posts.
 
Join Date: Apr 2003
Location: mumbai
Experience: Intermediate
28-Oct-2005, 07:38 AM #1
Install from a Live CD/DVD?
Hi,
I would like to know if its possible to install a linux distribution from its LIve CD/DVD
I have SUSE 9.3 Live DVD and i would like to install it.

Any clue?
lynch's Avatar
Senior Member with 1,962 posts.
 
Join Date: Aug 2002
Location: Back East,Way Back East
28-Oct-2005, 04:41 PM #2
Possible, but not worth the effort. You should just try downloading the Eval-DVD
brendandonhu's Avatar
Distinguished Member with 15,988 posts.
 
Join Date: Jul 2002
Location: Ann Arbor, MI
Experience: Advanced
28-Oct-2005, 05:17 PM #3
I don't know of any easy way to do it with Suse, but some distros can be installed from their LiveCD (such as Knoppix and Gentoo.)
saikee's Avatar
Distinguished Member with 2,515 posts.
 
Join Date: Jun 2004
Location: Newcastle
Experience: A Linux user gone nuts on multi-boot
28-Oct-2005, 06:47 PM #4
Generally if you can find an icon in the desktop, or a script in /home title something like "Install me", a HD installation program among the system command etc then the Linux can be installed into the hard disk.

If a distro says it is based in Knoppix then without any obvious aid one can type at root terminal

knoppix-installer

can kick start the hd-installation.

The help page that loaded with the Live CD desktop should tell the user whether a hd installation is possible or not.
__________________
A newbie entered Linux wonderland in Jun 2004, now a converted Linux user - No. 361921
Using a Linux live CD to clone XP
To install Linux and keep Windows MBR untouched
Adding extra Linux & Doing it in a lazy way
A Grub menu booting 100+ systems & & A "Howto" to install and boot 145 systems
Just booting tips A collection of booting tips
Judge told Linux "You are charged of murdering Windoze by stabbing its heart with a weapon, what was it? Linux replied "A Live CD"
gotrootdude's Avatar
Computer Specs
Distinguished Member with 9,627 posts.
 
Join Date: Feb 2003
Location: Myrtle Beach SC (paradise)
Experience: Intermediate
28-Oct-2005, 10:08 PM #5
I don't see why this procedure wouldn't work with suse live:


1. Prepare a partition on your hard drive for Live CD installation. Or maybe you want to use the whole hard drive. Format and install the file system of your choice. I used ext3.

2. Also prepare a swap partition. I used a swap equal in size to my RAM.

3. Boot the Live CD. Configure your network so that you can connect to the Internet.

4. Mount the partition you want for your Live CD hard drive installation
on /mnt. I used the following command.

# mount /dev/hda4 /mnt

5. Copy the system to your mounted partition. I used the following procedure.

# tar -C / -l -cpvf - . | tar -C /mnt -xpf -

6. Download a kernel source tar ball from kernel.org and put it in /mnt/usr/src. I used kernel 2.6.13.2. Make sure the kernel is in /usr/src of your new system, not in /usr/src of the Live CD.

7. chroot into your new system.

# chroot /mnt

8. Install the bootscripts. I used the following procedure.

# cp /sources/lfs-bootscripts-3.2.1.tar.bz2 /usr/src/
# cd /usr/src
# tar -xvjf lfs-bootscripts-3.2.1.tar.bz2
# cd lfs-bootscripts-3.2.1
# make
# make install

(bootscripts may be named differently)

9. Edit /etc/fstab. You need to delete references to the file system and add normal entries for a hard drive installation. The first two lines in my /etc/fstab are:

/dev/hda4 / ext3 defaults 1 1
/dev/hda5 swap swap defaults 0 0

10. Install the new kernel. I used the following procedure.

# cd /usr/src
# tar -xvjf linux-2.6.13.2.tar.bz2
# cd linux-2.6.13.2
# make mrproper
# make menuconfig (Set all configuration options that you need or want.)
# make
# make modules
# make modules_install
# cp arch/i386/boot/bzImage /boot/kernel-2.6.13.2
# cp System.map /boot/System.map-2.6.13.2
# cp .config /boot/config-2.6.13.2

11. Edit the bootloader of your choice for your new Live CD system. I had another Linux system on my hard drive, so I added an entry to my existing /etc/lilo.conf as follows.

image=/mnt/hda4/boot/kernel-2.6.13.2
vga=791
label=LiveCD
root=/dev/hda4
read-only

12. Boot into your new hard drive installation of the Live CD and enjoy.

This is for a different live CD, but the procedure should work as long as you get the filenames correct, and have the mount points in fstab and lilo or Grub correct..

Credit for this goes to linuxquestions.org

Maybe I'm wrong, but I've never noticed much differences between distros except in filenames and directory placements.. But I tend to stay with minimalistic distros and red hat based distros without the GUI's and just wget what I need..
__________________
4C6574206D65206B6E6F7720696620796F752063616E207265616420746869732E00

"The first job of a true patriot is to question the Government"

Thomas Jefferson

"Good intentions will always be pleaded for any assumption of power. The Constitution was made to guard the people against the dangers of good intentions. There are men in all ages who mean to govern well, but they mean to govern. They promise to be good masters ... but they mean to be masters. "

Daniel Webster
GeekGawd's Avatar
Computer Specs
Senior Member with 177 posts.
 
Join Date: Apr 2003
Location: mumbai
Experience: Intermediate
29-Oct-2005, 02:48 AM #6
Merci
Thanks a lot everybody. That was most informative!
Yea, i knew the knoppix was possible but was not sure about the command.

GotRoot - I will definitely try that out in my free time.
All those commands - not surprised you like to work on a Non-GUI machine.

(Am trying to settle down with a particular distribution for good. Not made a decision yet. Was hell bent on Red Hat. got ticked off when the Enterprise version wouldnt recognise Intel 915 audio chipset. Now i seem to be "gravitating" towards SUSE and the KDE interface..doesnt help to be in two minds)
- Migrating from Windows is the main aim.
lynch's Avatar
Senior Member with 1,962 posts.
 
Join Date: Aug 2002
Location: Back East,Way Back East
29-Oct-2005, 04:49 AM #7
Gotrootdude, where's your monastery located?
Like I said, not worth the effort. If you want to spend all that time installing a distro, get Gentoo.
lynch
CouchMaster's Avatar
Distinguished Member with 3,350 posts.
 
Join Date: May 2003
Location: West Texas
Experience: n00b
30-Oct-2005, 07:22 AM #8
The live CD was not made to install on your HD - make it easy on yourself, get the installation CD...
saikee's Avatar
Distinguished Member with 2,515 posts.
 
Join Date: Jun 2004
Location: Newcastle
Experience: A Linux user gone nuts on multi-boot
30-Oct-2005, 11:17 AM #9
Gotrootdude,

Is the procedure you gave a general method to move a Linux from a Live CD into a hard disk? I am interested in it as some Live CDs do appear worth the effort.
gotrootdude's Avatar
Computer Specs
Distinguished Member with 9,627 posts.
 
Join Date: Feb 2003
Location: Myrtle Beach SC (paradise)
Experience: Intermediate
30-Oct-2005, 12:15 PM #10
It should work for most live CD's, except some filenames and folder locations may be a little different depending on the distro.. Also, you need to make the choice between using lilo or grub..
GeekGawd's Avatar
Computer Specs
Senior Member with 177 posts.
 
Join Date: Apr 2003
Location: mumbai
Experience: Intermediate
31-Oct-2005, 01:14 AM #11
Yea, Lynch. Probably best to install from a regular distro CD.
but i downloaded a couple of LIVE distros. Was wondering if i could just use those, instead of downloading all over again.
Once again, many thanks to all ye guys.
Closed Thread

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who help people like you solve computer problems. See our Welcome Guide to get started.



Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 06:08 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.