Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Is there a "loadlin" for knoppix?

  1. #1
    Guest

    Is there a "loadlin" for knoppix?

    I have tried to search it in google but I found nothing. Everyone says "using a bootable CD or a bootable floppy". However, I just want to run the cd from a running windows system. Is there a "loadlin" for knoppix?

  2. #2
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Auckland, New Zealand
    Posts
    818
    Not in the current knoppix, no. It would be an interesting idea though.

  3. #3
    Member registered user
    Join Date
    Dec 2002
    Location
    Atlanta, GA
    Posts
    57

    Sounds like a job...

    ...for VMWare? http://www.vmware.com/

  4. #4
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: Is there a "loadlin" for knoppix?

    --Knoppix (and *nix in general) is not designed to boot from within Windows. For one thing, it confuses the hell out of Win (you will probably get a scandisk at the next reboot from dirty-drive flags) and the system won't be in the consistent, fresh state that Linux expects on bootup.

    --Just put the CD in the drive and boot the computer. If you can't boot from the CDROM, use rawrite to dump the knoppix\boot-en.img file to floppy, and boot from the floppy. It's that simple.

    Quote Originally Posted by Anonymous
    I have tried to search it in google but I found nothing. Everyone says "using a bootable CD or a bootable floppy". However, I just want to run the cd from a running windows system. Is there a "loadlin" for knoppix?

  5. #5
    SUOrangeman
    Guest

    Interested in a loadlin option as well

    For better or for worse, I've got a dual Athlon system based on a Tyan MPX-4M mobo and no floppy drive. If you've read about Tyan's AMD+SMP systems, you may have seen a thing or two about CD booting not working accurately (only Win2K and WinXP CDs work for me!). So, it would be nice to have an option to start Knoppix via loadlin from a DOS prompt (hard drive boot).

    I haven't looked at the files on the boot floppy image, but it *may* just be a matter of extracting those to a directory and rigging loadlin to run accordingly. (Yes, I am aware that SMP may not be available to me using this method.)

    -SUO

  6. #6
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: Interested in a loadlin option as well

    --If you can't get that to work, I'd just throw a floppy drive in. You can get them at computer shows for ~$15. You should also see if there's a flash upgrade available for your BIOS that fixes the problem.

    --I've gotten around the computer not being able to boot from CD (or done the following for speed/convenience) by repartitioning the disk so that there's a 1-cylinder primary partition (2/3/4) after the Win stuff, and putting a boot flag on it. The computer then boots from that partition instead of Win, and you can reassign the boot flag using either Win fdisk or linux. Once you have the partition in place (I will assume partition 4):

    As root:
    ' fdisk /dev/hda '
    o ' a '
    oo ' 4 '
    o ' a '
    oo ' 1 ' == Activate 4 and deactivate 1
    o ' p ' == Print partition table; the boot flag should now be on 4
    o ' w ' == Write and exit

    --To init the new partition:
    ' dd if=/dev/zero of=/dev/hda4 '

    --To copy the boot-en.img to partition 4 so the computer will boot from it:
    ' dd if=/cdrom/KNOPPIX/boot-en.img of=/dev/hda4 '

    ' reboot '

    --The computer will now find the floppy image on hda4 and boot from there.

    --To reassign the boot flag from Win, run fdisk and hit ' 2 ' - Set active partition. Set it to the non-DOS 1-cylinder one. Reboot.

    --Obviously, to reassign the boot flag from Linux, re-do the above mentioned fdisk steps.

    --BTW, this method also works fine if you want to run Knoppix from the hard drive; just copy X:\knoppix\knoppix to c:\knoppix. If you actually have a Knoppix CD in the drive when it boots, it will run from the CD; if not, it finds the image on the HD and runs from there - which is good, especially if you want to upgrade the Knoppix compressed file on the HD.

    Quote Originally Posted by SUOrangeman
    For better or for worse, I've got a dual Athlon system based on a Tyan MPX-4M mobo and no floppy drive. If you've read about Tyan's AMD+SMP systems, you may have seen a thing or two about CD booting not working accurately (only Win2K and WinXP CDs work for me!). So, it would be nice to have an option to start Knoppix via loadlin from a DOS prompt (hard drive boot).

    I haven't looked at the files on the boot floppy image, but it *may* just be a matter of extracting those to a directory and rigging loadlin to run accordingly. (Yes, I am aware that SMP may not be available to me using this method.)

    -SUO

  7. #7
    SUOrangeman
    Guest

    NO! NO! NO! The floppy drive must DIE! :)

    I do like the idea of having a very small partition to serve as a "bootable floppy." However, making use of 'dd' sorta assumes that some competent *NIX is up and running.

    And, yes, I am trying to force the issue of moving beyond the era of the floppy drive. Heck, we've got single hard drives inching towards 250 and 320GB. Bootable CDs would definitely suffice, by Tyan seems to be having a little trouble with El Torito and friends.

    -SUO

  8. #8
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: NO! NO! NO! The floppy drive must DIE! :)

    --If you just need quick-and-dirty stuff w/o Reiserfs or complex networking, try Tom's Root/Boot: http://www.toms.net/rb/

    --1.44 floppy becomes a 1.7(?) with special format, boots, dumps everything to Ramdisk so you can use the floppy drive. There's also a 2.88MB El Torito boot image.

    --IMHO, IBM did a Good Thing(TM) when they standardized on the 1.44M starting with the PS/2 MCA series; remember, all we had before those were basically 360k, el cheapo 720, and half-assed 5 1/4" 1.2M drives.

    --The "era" of the floppy drive is long past, but you still can't beat it for built-in (BIOS) *writable* support. If you could make a Zip-100 drive act as /dev/fd0 ( A:\ ) in the BIOS (or an LS-120 hybrid even) it would be a good leap fwd; but for most common, everyday stuff it would be overkill.

    --Of course I'm still waiting for packet-writing CD burners to be BIOS-supported; then we can use those 3.5" CDRW's as floppies.

    Quote Originally Posted by SUOrangeman
    I do like the idea of having a very small partition to serve as a "bootable floppy." However, making use of 'dd' sorta assumes that some competent *NIX is up and running.

    And, yes, I am trying to force the issue of moving beyond the era of the floppy drive. Heck, we've got single hard drives inching towards 250 and 320GB. Bootable CDs would definitely suffice, by Tyan seems to be having a little trouble with El Torito and friends.

    -SUO

  9. #9
    SUOrangeman
    Guest

    Alas, I am defeated!

    Even after trying all of the great suggestions posted above, I still cannot boot into Knoppix on my Tyan-based system *without* a floppy. The CD is good, as it boots just fine on other systems. I've created small primary partitions (on hard drive and Zip disks), made them active, and dropped the boot floppy image on those partitions via dd. Nothing works *on this system* (other systems perform as expected).

    Although this isn't the end of the world, Tyan still hasn't solved this bootable CD problem with this board. If I want to install anything non-MS, I'm gonna hafta *GASP* install a floppy/LS-120 drive. Oh, the horror!

    -SUO

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: Alas, I am defeated!

    --What kind of error msgs do you get from the HD-based floppy image? That should have worked as a last resort...

    Quote Originally Posted by SUOrangeman
    Even after trying all of the great suggestions posted above, I still cannot boot into Knoppix on my Tyan-based system *without* a floppy. The CD is good, as it boots just fine on other systems. I've created small primary partitions (on hard drive and Zip disks), made them active, and dropped the boot floppy image on those partitions via dd. Nothing works *on this system* (other systems perform as expected).

    Although this isn't the end of the world, Tyan still hasn't solved this bootable CD problem with this board. If I want to install anything non-MS, I'm gonna hafta *GASP* install a floppy/LS-120 drive. Oh, the horror!

    -SUO

Page 1 of 2 12 LastLast

Similar Threads

  1. startx with "root" and not with "knoppix"
    By ix86i in forum Customising & Remastering
    Replies: 1
    Last Post: 10-30-2004, 12:16 PM
  2. "modprobe ppa" before "home=scan" ??
    By Pokec in forum General Support
    Replies: 2
    Last Post: 12-07-2003, 07:39 PM
  3. "Connection Reset by Peer" or "hang"
    By oreo in forum General Support
    Replies: 11
    Last Post: 07-23-2003, 06:33 PM
  4. "Foreign" drive formats and "dd" command
    By geebee2000 in forum Hardware & Booting
    Replies: 9
    Last Post: 05-21-2003, 07:29 PM
  5. Locate Knoppix "group" in "K" menu
    By Juny in forum General Support
    Replies: 4
    Last Post: 03-14-2003, 09:02 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
  •  


Apple MacBook Pro 13” Dual Core i5 16GB RAM | 1TB HD | OS Catalina | WARRANTY picture

Apple MacBook Pro 13” Dual Core i5 16GB RAM | 1TB HD | OS Catalina | WARRANTY

$229.00



WF12F DELL 1TB 7.2K 6GBPS SATA 2.5'' HDD HARD DRIVE ST91000640NS 0WF12F picture

WF12F DELL 1TB 7.2K 6GBPS SATA 2.5'' HDD HARD DRIVE ST91000640NS 0WF12F

$25.00



Apple Macbook Pro 13

Apple Macbook Pro 13" Laptop | UPGRADED i5 16GB RAM | 1TB HD | MacOS | WARRANTY

$255.55



ST1000NX0373 SEAGATE SAS EXOS ENTERPRISE ST1000NX0373 12Gb/s 1TB 7.2K 2.5

ST1000NX0373 SEAGATE SAS EXOS ENTERPRISE ST1000NX0373 12Gb/s 1TB 7.2K 2.5"

$55.00



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



Crucial - P3 Plus 1TB Internal SSD PCIe Gen 4 x4 NVMe picture

Crucial - P3 Plus 1TB Internal SSD PCIe Gen 4 x4 NVMe

$69.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.95



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

$34.29



Fanxiang 2TB 1TB SSD M.2 For PS5 PCIe 4.0 NVMe Gaming Internal Solid State Drive picture

Fanxiang 2TB 1TB SSD M.2 For PS5 PCIe 4.0 NVMe Gaming Internal Solid State Drive

$239.98