Page 1 of 4 123 ... LastLast
Results 1 to 10 of 32

Thread: Solution: Very simple HD installation with cloop on VFAT par

  1. #1
    Junior Member
    Join Date
    Apr 2003
    Location
    Denmark
    Posts
    6

    Solution: Very simple HD installation with cloop on VFAT par

    I don't know if this have been bought up before but in our LUG we were discussing a way to install KNOPPIX, in such as easy way that my mother could find out how to do it.

    By looking at the miniroot.gz on the boot.img, we found linuxrc (placed in the root) was looking at all drives for a subdir called /KNOPPIX/

    The normal behavior is that it is found on the cdrom, but it could also be on /dev/hda1.

    You must have vfat or ext2 on your harddrive:
    1. Boot up in Microsoft Windows
    2. Open "My Computer"
    3. Open cdrom "KNOPPIX"
    4. Click right mouse button on subdir KNOPPIX and choose "copy"
    5. Click back to "My Computer"
    6. Click right mouse button on C: and choose "insert"
    7. Make a boot floppy disk and keep the floppy in drive
    8. Eject cdrom and reboot

    I have a page here about it with pictures (in danish, sorry):
    http://tyge.sslug.dk/knoppix/hdsimpel/

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    It's already in the docs section. Nice to see you figured it out on your own though.

  3. #3
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    872
    I went one step further using lilo and don't need the floppy. Was tamped to try to put it on NTFS(with proper changes to miniroot.gz) but being occupied now building a custom kernel.

    BTW, booting in this way, hda1(c:\) will become read only. I changed the code in linuxrc to make it read write.

  4. #4
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    177
    I'm curious, what exactly is the point of installing this way? I found that installing knoppix with hd-install is mind numbingly simple. Much simpler in my opinion than even installing windows on new machine. The only remotely complicated section is the formatting of the partitions, but that's realy NOT hard if you know what you are doing OR have even remotely descent directions.

  5. #5
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    872
    For me, because I use a notebook which only has a 10G harddisk. HD install means seperate partition and the size is much larger(if I am not mistaken, the compressed CD would be expanded to full size).

    Using this approach, I just put a 700M file on my VFAT(or may be NTFS) and can switch to a newer version by replacing this single file. Should I need the space(when I am in window), I just delete it.

    BTW, you find it simpler than installing windows is that installing KNOPPIX on harddisk is technically 'clone' a system onto an existing machine which many corporation does the same in windows, which is much easier than a fresh install.

  6. #6
    Junior Member
    Join Date
    Apr 2003
    Posts
    8

    dual boot under hdd install scenario

    Quote Originally Posted by garyng
    I went one step further using lilo and don't need the floppy. Was tamped to try to put it on NTFS(with proper changes to miniroot.gz) but being occupied now building a custom kernel.

    BTW, booting in this way, hda1(c:\) will become read only. I changed the code in linuxrc to make it read write.
    That may be one way out of my portable that does not have floppy but can you not use lilo ... can you start up winxp and boot to a dos command batch and then start linux from there ... or if you must lilo, how can you set it up under winxp and dual boot to a /knoppix under windows.

    Further how do you change the code in linuxrc to deal with the rw issues? (I run winxp with fat32 and not ntfs and perhaps easier choice).

    Thanks for any advice first.

  7. #7
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    872
    Well, my machine Dell Inspiron 2500 notebook comes with ME as stocked OS so I cannot boot to DOS and use loadlin, that is the reason I have to use LILO. I have documented my steps to trio boot XP/ME/KNOPPIX under the HDD install forum. You may try to search there. It is not very difficult but you just have to be careful. The first time I did it, I screw up the MBR and need to reinstall everything.

    As for changes to linuxrc, it is done this way :

    1. get into the boot.img and extract the vmlinuz and miniroot.gz file(there is a FAQ on this site under DOC) and put them on your c:\(or /dev/hda1)

    2. gzip -d miniroot.gz
    3. mount through loopback driver to the miniroot file(it is effectively a EXT2 system on a file)
    4. modify the linuxrc script file and change the line that mount the device(cd-rom in the script, easy to find if you have some scripting experience) from "ro" to "rw"
    5. gzip miniroot.gz

    now setup lilo as normal

  8. #8
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202
    "...¿3. mount through loopback driver to the miniroot file(it is effectively a EXT2 system on a file)... ?"

    exactly how please?
    thanks

    ************************************************** ********

    DOS with winxp and winme (to use loadlin from HD)

    If win is installed over a win98 partition then it is possible to boot into winxp or DOS at boot time

    boot.ini example


    [boot loader]
    timeout=30
    default=multi(0)disk(0)rdisk(0)partition(1)\WINDOW S
    [operating systems]
    multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Micro soft Windows XP Professional" /fastdetect
    C:\="C:\ Win98 DOS"



    There is a patch to apply winme in order to be able booting into DOS


    http://www.geocities.com/mfd4life_2000/

  9. #9
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202
    Quote Originally Posted by oscar
    "...¿3. mount through loopback driver to the miniroot file(it is effectively a EXT2 system on a file)... ?"

    exactly how please?

    thanks
    autoanswer


    | 56: # cp /mnt/anyfile/miniroot.gz /tmp
    | 57: # gzip -d /tmp/miniroot.gz
    | 58: # mount -t ext2 -o loop /tmp/miniroot.img /mounting_point
    | 60:
    | 61:
    | 62:
    | 63:
    | 64:after the edition of linuxrc
    | 66:
    | 67: # umount /mounting_point* * * * * * * *-> umounts miniroot
    | 68: # gzip /tmp/miniroot.img * * * * * -> recompresses miniroot

  10. #10
    Junior Member
    Join Date
    Apr 2003
    Location
    SE Wisconsin
    Posts
    2
    Quote Originally Posted by Stephen
    It's already in the docs section. Nice to see you figured it out on your own though.
    Does anyone know if this works with a NTFS filesystem? I followed the HdBasedHowTo instructions but the boot floppy can't find the c:\knoppix\knoppix file and boots to a minimal command prompt. Anybody have any suggestions on how to fix this problem? If I use the cd to boot everything works great.

    One more small question, if you use a floppy boot disk are you still able to load or save your configuration to a different floppy?


Page 1 of 4 123 ... LastLast

Similar Threads

  1. Replies: 1
    Last Post: 04-12-2005, 12:12 AM
  2. cloop : unable to get major 240 for cloop
    By psirac in forum Customising & Remastering
    Replies: 0
    Last Post: 09-12-2004, 09:22 PM
  3. iso to vfat
    By cld in forum Customising & Remastering
    Replies: 2
    Last Post: 07-26-2004, 05:33 PM
  4. Writting to a vfat HD
    By mangancha in forum General Support
    Replies: 4
    Last Post: 04-18-2003, 05:53 PM
  5. vfat not loaded automatically? vfat=fat32 support?
    By pc_dev in forum General Support
    Replies: 1
    Last Post: 02-21-2003, 04:08 PM

Posting Permissions

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


Genuine 45W Power Adapter Charger for Dell DA45NM140 0KXTTW 4.5*3.0mm OEM picture

Genuine 45W Power Adapter Charger for Dell DA45NM140 0KXTTW 4.5*3.0mm OEM

$16.99



OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170 picture

OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170

$35.88



NEW OEM Dell Inspiron 14 5406  P126G Laptop Battery 11.25V 40Wh JK6Y6  CF5RH picture

NEW OEM Dell Inspiron 14 5406 P126G Laptop Battery 11.25V 40Wh JK6Y6 CF5RH

$37.00



OEM WDX0R DELL 42Wh 15 5567 5568 5368 7368 7569 Fair Battery Health picture

OEM WDX0R DELL 42Wh 15 5567 5568 5368 7368 7569 Fair Battery Health

$14.24



OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip picture

OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip

$10.99



Dell Original OEM 45W 19.5V AC Adapter Charger 070VTC 0KXTTW 00285K 0YTFJC 4.5mm picture

Dell Original OEM 45W 19.5V AC Adapter Charger 070VTC 0KXTTW 00285K 0YTFJC 4.5mm

$10.94



OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270 picture

OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270

$11.88



OEM Dell 90W Laptop Charger AC Adapter 19.5V 4.62A 50-60 Hz Latitude, XPS picture

OEM Dell 90W Laptop Charger AC Adapter 19.5V 4.62A 50-60 Hz Latitude, XPS

$8.74



New Original OEM Genuine DELL 65W Small Tip 19.5V AC Charger Power Cord Adapter  picture

New Original OEM Genuine DELL 65W Small Tip 19.5V AC Charger Power Cord Adapter

$30.60



New OEM 90W AC Adapter Charger For Dell RT74M 0RT74M 0VRJN1 VRJN1 LA90PM111 picture

New OEM 90W AC Adapter Charger For Dell RT74M 0RT74M 0VRJN1 VRJN1 LA90PM111

$20.55