Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Other Live CD's

  1. #11
    Junior Member registered user
    Join Date
    Apr 2005
    Location
    Hessen, DE
    Posts
    24
    Quote Originally Posted by Harry Kuhman
    Quote Originally Posted by Kowood
    can you write the disc to the hd instead of ram to make it run faster?
    Kowood, this may come as a shock to you but ram is faster than hard disk.
    Well, you are only half right here, of course, the RAM in a computer is always faster than the hard discs, but if you copy the whole CD image to RAM, you have left only a certain amount of RAM for the applications to use, but if you copy the whole CD image to HDD, you have as much free RAM, as if you would boot from a CD, but you have don't have to have the CD present the whole time, so it's kind of "best of both worlds" (as much free RAM as if booting from CD, while having one more free CD drive).

  2. #12
    Junior Member registered user
    Join Date
    Dec 2004
    Posts
    17
    The trick is to make the HDD copy bootable from HDD. Also, I'm fairly (not 100%) certain that Knoppix comes with a script or application that allows for copying of the CD image to HDD.

  3. #13
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441

    Backtrack 2

    Another very nice Live CD that I just came across is Backtrack 2, available here. The focus is on security, but it still contains a fair assortment of the typical tools. And Knoppix could learn a lot from this Live CD, wireless networking seems to work great, even on computers that Knoppix doesn't begin to try to support.
    ---
    Verifying of md5 checksum and burning a CD at slow speed are important.

  4. #14
    Junior Member registered user
    Join Date
    Nov 2004
    Location
    Cheshire, UK
    Posts
    10
    Nice to see old postings however I regularly use Knoppix , SLAX and Puppy, and on this year 2010 they are still as functional as ever.

  5. #15
    Senior Member otropogo's Avatar
    Join Date
    Jul 2008
    Posts
    109

    What about DVD-RAM and UDF?

    Quote Originally Posted by eionmac View Post
    Nice to see old postings however I regularly use Knoppix , SLAX and Puppy, and on this year 2010 they are still as functional as ever.
    Unfortunately, they are mostly also as unfunctional as previously. For example, Puppy Linux still can't mount a DVD-RAM disk. I'm not sure about Knoppix, because I've never had enough memory to load it into RAM and/or a second burner. I did try loading Knoppix 6.2.1 LiveDVD into memory on a system that has 4GB, and it wouldn't go....

    Slax, OTOH, will load into memory on a 1GB system, freeing up the burner. And it will also read and write to DVD-RAM disks formatted UDF 1.5 (NOT 2.01, the default) in Windows 7.

    I wish I could find a Linux LiveCD distro that uses the current kernel AND supports DVD-RAM and UDF.

  6. #16
    Moderator Moderator
    Join Date
    Jan 2010
    Location
    Asheville, NC, USA
    Posts
    528
    Quote Originally Posted by otropogo View Post
    Unfortunately, they are mostly also as unfunctional as previously. For example, Puppy Linux still can't mount a DVD-RAM disk. I'm not sure about Knoppix, because I've never had enough memory to load it into RAM and/or a second burner. I did try loading Knoppix 6.2.1 LiveDVD into memory on a system that has 4GB, and it wouldn't go....
    Have you tried it on a USB-flash drive? I got an 8GB super-fast, super-tiny Verbatim drive on Amazon for <$30, delivered. The speed is acceptable and I have plenty of room for the persistent file (using 2GB.) Since I have BIOS trouble, I still boot off the DVD, but I can switch over to the flash and free up the burner to make DVDs, or transfer data to/from backups.
    Slax, OTOH, will load into memory on a 1GB system, freeing up the burner. And it will also read and write to DVD-RAM disks formatted UDF 1.5 (NOT 2.01, the default) in Windows 7.

    I wish I could find a Linux LiveCD distro that uses the current kernel AND supports DVD-RAM and UDF.
    Good luck!
    Krishna

  7. #17
    Moderator Moderator
    Join Date
    Jan 2010
    Location
    Asheville, NC, USA
    Posts
    528
    Quote Originally Posted by poppe View Post
    The trick is to make the HDD copy bootable from HDD. Also, I'm fairly (not 100%) certain that Knoppix comes with a script or application that allows for copying of the CD image to HDD.
    Yes, it can done with (for instance)
    Code:
    knoppix tohd=/dev/sda1
    the first time, and thereafter using
    Code:
    knoppix fromhd=/dev/sda1
    if you don't mind the initial boot from CD.

    Cheers!
    Krishna

  8. #18
    Junior Member
    Join Date
    Oct 2006
    Location
    Berlin
    Posts
    3
    Quote Originally Posted by krishna.murphy View Post
    ...if you don't mind the initial boot from CD.
    If I do mind the boot from CD... then I must be able to copy the Knoppix ISO to a disk partition and boot it with Grub2 which will boot an ISO directly. I have used the 'tohd / fromhd' method in the past and its bullet proof, but it seems, today, that the Grub2 ISO boot would be nice. Any idea what kind of menu entry I would need to add to the Grub2 "40_custom" script to get it to work...?

    Here's what I've tried but it gets stuck looking for a USB device

    Code:
    menuentry "Knoppix 2 ADRIANE V6.2.1 ISO (on /dev/sda1)" {
    insmod ext2
    set root=(hd0,1)
    loopback loop (hd0,1)/Downloads_BACKUP/adriane-knoppix.iso
    linux (loop)/boot/isolinux/linux iso_filename=/Downloads_BACKUP/adriane-knoppix.iso ramdisk_size=100000 lang=en vt.default_utf8=0 apm=power-off vga=788 xmodule=fbdev initrd=minirt.gz nomce quiet loglevel=0 tz=localtime
    echo 'Loading initial ramdisk ...'
    initrd (loop)/boot/isolinux/minirt.gz
    }
    Any ideas (or pointers about where to look) would be great! Thanks...

  9. #19
    Moderator Moderator
    Join Date
    Jan 2010
    Location
    Asheville, NC, USA
    Posts
    528
    Does it work when it's booted from CD, without the encapsulation of the ISO format? Another option is to create a partition 1 you can then do your Knoppix "install" on - just use the flash-install script. It will set up booting from that as well as doing all the copying, etc. That script requires the use of partition 1, so you'd have to "move the existing partition 1" to another one of the slots with a partition table editor.

    Cheers!
    Krishna
    Last edited by krishna.murphy; 08-26-2010 at 05:40 PM. Reason: clarity

  10. #20
    Junior Member
    Join Date
    Oct 2006
    Location
    Berlin
    Posts
    3
    Hi Krishna,

    Thanks for the reply. I will take a look at this and get back to you...

    Cheers,
    Coady

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Cd rom is not recognizing music cd's
    By johnsmith01 in forum Hdd Install / Debian / Apt
    Replies: 6
    Last Post: 07-01-2005, 09:29 AM
  2. Gaming CD's
    By AnguisV in forum Customising & Remastering
    Replies: 2
    Last Post: 06-16-2004, 09:11 PM
  3. What is the difference in various Live cd's?
    By maeztro in forum Laptops
    Replies: 2
    Last Post: 05-01-2004, 02:30 PM
  4. Swapping CD's under Knoppix
    By mrmr96 in forum General Support
    Replies: 4
    Last Post: 03-07-2004, 04:27 AM
  5. kpackage + Debian cd's
    By proceed in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 03-21-2003, 11:33 AM

Posting Permissions

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


SanDisk 1TB SSD Plus, Internal Solid State Drive - SDSSDA-1T00-G26 picture

SanDisk 1TB SSD Plus, Internal Solid State Drive - SDSSDA-1T00-G26

$74.99



Western Digital 1TB WD Gold Enterprise Class SATA Internal HDD - WD1005FBYZ picture

Western Digital 1TB WD Gold Enterprise Class SATA Internal HDD - WD1005FBYZ

$84.99



Western Digital 1TB WD Blue PC Desktop 3.5'' Internal CMR Hard Drive - WD10EARZ picture

Western Digital 1TB WD Blue PC Desktop 3.5'' Internal CMR Hard Drive - WD10EARZ

$44.99



Western Digital 1TB WD Purple Surveillance HDD, Internal Hard Drive - WD11PURZ picture

Western Digital 1TB WD Purple Surveillance HDD, Internal Hard Drive - WD11PURZ

$52.99



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$23.99



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$14.99



1TB HDD/SSD 2.5

1TB HDD/SSD 2.5" SATA Hard Drive for Laptop with Win 10/Win 11 Pro Pre-installed

$29.55



Seagate Barracuda ST1000DM003 1 TB SATA III 3.5 in Desktop Hard Drive picture

Seagate Barracuda ST1000DM003 1 TB SATA III 3.5 in Desktop Hard Drive

$14.99



1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage US picture

1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage US

$26.39



Lenovo IdeaPad Pro 5i, 16″, i5-13500H, 16 GB, 1 TB SSD, RTX 3050, 120Hz, Laptop picture

Lenovo IdeaPad Pro 5i, 16″, i5-13500H, 16 GB, 1 TB SSD, RTX 3050, 120Hz, Laptop

$709.99