Find the answer to your Linux question:
Results 1 to 10 of 10
Afternon people, Just a quick question. How does the Linux Live CD actually work? From what i have read, the actual CD contains the whole linux operating system and kernel ...
  1. #1
    Just Joined!
    Join Date
    Feb 2010
    Posts
    13

    [SOLVED] Linux Ubuntu Live CD

    Afternon people,

    Just a quick question.

    How does the Linux Live CD actually work? From what i have read, the actual CD contains the whole linux operating system and kernel etc.. but how it is booted that when loaded you can also see the contents of the windows XP operating system also.

    Ive used these live CD's before but would greatly appriciate any technical details as to what resources the live CD uses in the machine to load successfully. e.g. how much hard drive space does the linux cd need?


    Thanks in advance.

  2. #2
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,977
    A live CD/DVD uses no hard disc space on the system. It will mount available file systems, including the Windows FAT and NTFS volumes so you can access the files they contain. Linux has software that can detect and use almost any hardware you might have. There are incompatibilities you will encounter from time to time, but for the most part, modern distributions such as Ubuntu will give you use of almost anything imaginable including WiFi, Bluetooth, webcams, broadband wireless (Sprint, Verizon, etc), and such.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  3. #3
    Just Joined!
    Join Date
    Feb 2010
    Posts
    13
    Right,

    So what if the computer hard drive is not partitioned? Would a linux boot cd still be able to function correctly?

  4. #4
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,977
    Quote Originally Posted by eazye View Post
    Right,

    So what if the computer hard drive is not partitioned? Would a linux boot cd still be able to function correctly?
    It will recognize that. If you selected the "install" option, it could partition the drive for you and use that to boot your system.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  5. #5
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Posts
    1,230
    How does the Linux Live CD actually work?
    You can put in inside the CD/DVD on boot. This will allow you to experience working in the environment of the Linux flavor you have.

    From what i have read, the actual CD contains the whole linux operating system and kernel etc.. but how it is booted that when loaded you can also see the contents of the windows XP operating system also.
    Yes it does contain pretty much everything. An update though after installation would make sure that you have a complete working system. Like what Rubberman said "Linux has software that can detect and use almost any hardware you might have." This particular capability can also be used to recover data from crashed or virus infected windows system, even without installing the Linux to your system but only as Live CD use.

    Should you prefer to install it as a second partition, you may be able to do so also. If you choose to install, it should be getting around more or less 4G on your system.
    Last edited by nujinini; 03-31-2010 at 02:27 PM.
    nujinini
    Linux User #489667

  6. #6
    oz
    oz is online now
    forum.guy
    Join Date
    May 2004
    Location
    arch linux
    Posts
    18,099
    Quote Originally Posted by eazye View Post
    So what if the computer hard drive is not partitioned? Would a linux boot cd still be able to function correctly?
    You should be able to run a properly working liveCD without any hard drive installed on the machine at all, so any partitioning on the drive or lack thereof should make no difference.
    oz

    new members/users: read this first | new member faq
    no private messages requesting computer support - post them on the forums!
    please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.

  7. #7
    Just Joined!
    Join Date
    Feb 2010
    Posts
    13
    Much appriciated people, thanks.

    Rubberman, in one of my previous posts you corrected a problem for me which was about the DD commands.

    sudo mkdir /mnt/sdb1
    sudo mount -t ntfs-3g /dev/sdb1 /mnt/sdb1
    sudo dd if=/dev/sda of=/mnt/sdb1/sda.dd

    Would you be able to tell me what each line is doing exactly?

    E.g. why is -t needed, what does ntfs-3g mean? I need help especially on the 3rd line which actually creates the DD file.

    Thanks in advance.

  8. #8
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Posts
    1,230
    sudo mkdir /mnt/sdb1
    You made a directory/folder/destination where to mount your partition /dev/sdb1

    sudo mount -t ntfs-3g /dev/sdb1 /mnt/sdb1
    By this you actually are mounting /dev/sdb1 to the destination you made which is /mnt/sdb1

    The command to mount was mount -t

    why is -t needed,
    The standard form of the mount command, is mount -t type device dir.
    I got this from the manual. You may go to terminal and type $ man mount to see for yourself.

    sudo dd if=/dev/sda of=/mnt/sdb1/sda.dd
    I think you are in turn copying everything (the whole partition) /dev/sda in this case is your Input File "if" to your Output File "of" which is /mnt/sdb1/sda.dd

    what does ntfs-3g mean?
    ntfs-3g is needed for your linux to be able to handle the windows you are mounting. Please refer to this NTFS-3G at Tuxera

    Hi eazye,

    Welcome!

    I hope I was able to give what you need. Anyway, I defer to the wisdom of the gurus just in case I got something wrong or I missed something.

    Enjoy linux!
    Last edited by nujinini; 04-02-2010 at 02:05 PM.
    nujinini
    Linux User #489667

  9. #9
    Just Joined!
    Join Date
    Feb 2010
    Posts
    13
    nujinini, this was EXACTLY what i needed. Cheers.


    Have a nice day



    E

  10. #10
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Posts
    1,230
    You are most welcome!

    Have a my friend!
    nujinini
    Linux User #489667

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...