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
  •  


HPGYT DELL 960GB SATA 6Gb/s 2.5in Internal SSD 0HPGYT MTFDDAK960TCB picture

HPGYT DELL 960GB SATA 6Gb/s 2.5in Internal SSD 0HPGYT MTFDDAK960TCB

$59.00



### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ### picture

### MZ-7KE1T0 Samsung 850 Pro Series 1TB 2.5 inch SATA3 SSD ###

$105.00



G5T03 Dell Intel DC S3700 Series 800GB SATA 6Gb/s 2.5

G5T03 Dell Intel DC S3700 Series 800GB SATA 6Gb/s 2.5" SSD 0G5T03 SSDSC2BA800G3E

$55.00



Micron 3.84TB SSD 5200 ECO SATA 2.5

Micron 3.84TB SSD 5200 ECO SATA 2.5" MTFDDAK3T8TDC D1MU420 Solid State Drive

$312.00



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



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

$13.99



Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot picture

Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot

$13.99



Patriot P210 256GB SSD 2.5

Patriot P210 256GB SSD 2.5" SATA III 6GB/s Internal Solid State Drive For PC/MAC

$19.99



Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot picture

Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot

$109.99



M.2 NVMe SSD 128GB 256GB 512GB Single Notch with Windows Installed 10 / 11 picture

M.2 NVMe SSD 128GB 256GB 512GB Single Notch with Windows Installed 10 / 11

$85.25