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
  •  


ORICO 5 Bay Raid Hard Drive Enclosure USB C, 3.5” SATA HDD, Up To 80TB, NS500RC3 picture

ORICO 5 Bay Raid Hard Drive Enclosure USB C, 3.5” SATA HDD, Up To 80TB, NS500RC3

$139.99



OWC Guardian Maximus Raid Enclosure SATA Hard Drive FireWire picture

OWC Guardian Maximus Raid Enclosure SATA Hard Drive FireWire

$36.99



WD My Book Duo WDBFBE0200JBK-NESN Black 20TB Desktop RAID External Hard Drive picture

WD My Book Duo WDBFBE0200JBK-NESN Black 20TB Desktop RAID External Hard Drive

$249.99



Dell HV52W PERC H310 8-Port SAS 6Gbps PCIe 2.0 x8 RAID Controller No/Cables 36-4 picture

Dell HV52W PERC H310 8-Port SAS 6Gbps PCIe 2.0 x8 RAID Controller No/Cables 36-4

$14.99



Inspur LSI 9300-8i Raid Card 12Gbps HBA HDD Controller High Profile IT MODE picture

Inspur LSI 9300-8i Raid Card 12Gbps HBA HDD Controller High Profile IT MODE

$15.98



ORICO Multi Bay RAID Hard Drive Enclosure USB 3.0/ Type-C For 2.5/3.5'' HDD SSDs picture

ORICO Multi Bay RAID Hard Drive Enclosure USB 3.0/ Type-C For 2.5/3.5'' HDD SSDs

$86.99



Dell PERC H330 PCIe 3.0 x8 RAID Storage Controller 4Y5H1 High Profile picture

Dell PERC H330 PCIe 3.0 x8 RAID Storage Controller 4Y5H1 High Profile

$13.99



9207-8i PCIE3.0 6Gbps HBA LSI FW:P20 IT Mode ZFS FreeNAS unRAID 2* SFF-8087 US picture

9207-8i PCIE3.0 6Gbps HBA LSI FW:P20 IT Mode ZFS FreeNAS unRAID 2* SFF-8087 US

$32.88



ORICO 5Bay Raid Hard Drive Enclosure USB3.0 to SATA for 3.5'' HDD SSD 150W Power picture

ORICO 5Bay Raid Hard Drive Enclosure USB3.0 to SATA for 3.5'' HDD SSD 150W Power

$191.99



Areca ARC-1883LP PCIe x8 SAS RAID Card ver 1.0 picture

Areca ARC-1883LP PCIe x8 SAS RAID Card ver 1.0

$249.99