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
  •  


SUPERMICRO CSE-512 AMD Opteron Processor 6128, 32GB DDR3 RAM NO HDD picture

SUPERMICRO CSE-512 AMD Opteron Processor 6128, 32GB DDR3 RAM NO HDD

$90.00



HPE ProLiant MicroServer Gen8 Intel Xeon E3-1265L 16GB ECC PCIe x16 4x1TB HDD picture

HPE ProLiant MicroServer Gen8 Intel Xeon E3-1265L 16GB ECC PCIe x16 4x1TB HDD

$249.99



HP ProLiant Xeon E3-1220L V2 MicroServer Gen8 2.30 GHz 16 GB RAM NO DRIVES picture

HP ProLiant Xeon E3-1220L V2 MicroServer Gen8 2.30 GHz 16 GB RAM NO DRIVES

$199.99



HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon picture

HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon

$846.19



SuperMicro Server 505-2 Intel Atom 2.4GHz 8GB RAM SYS-5018A-FTN4 1U Rackmount picture

SuperMicro Server 505-2 Intel Atom 2.4GHz 8GB RAM SYS-5018A-FTN4 1U Rackmount

$202.49



HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ* picture

HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ*

$94.99



Supermicro 5018A-FTN4 Rack Server - Black picture

Supermicro 5018A-FTN4 Rack Server - Black

$125.00



Microsel Server Tower Supermicro X10SAE E3-1275 V3 @3.5GHz 16GB 509849-001 picture

Microsel Server Tower Supermicro X10SAE E3-1275 V3 @3.5GHz 16GB 509849-001

$149.99



1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE picture

1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE

$297.00



1U 20

1U 20" Short Depth Server Firewall PFSense X11SSH-F Xeon 3.5Ghz 32GB RAM NVME

$247.00