Results 1 to 8 of 8

Thread: detect/unpack file on vfat partition

  1. #1
    Junior Member registered user
    Join Date
    Apr 2003
    Posts
    12

    detect/unpack file on vfat partition

    I' have a HD install of Knoppix V3.2.2 2003-4-28, but have to get yet the modem from the most imminent to work.

    The modem driver is a *.tar.gz file that was donwloaded to a fat32 partition (=hda4 under Linux)

    I'd like to unpack and install the driver, but am failing even to detect it under Linux (yes, it's there on a E:\).

    find / -name [filename] searches, but finds nothing (*.tar.gz and similar tried, as well as ful filename) --does Knoppix/Debian2 have different syntax?? Mandrike that I tested before could find not this particular but another file.

    mount /dev/hda4 /mnt/windows [have made the mkdir /mnt/windows already] --returns
    mount: /dev/hda4 already mounted or /mnt/windows busy
    mount: according to mtab, /dev/hda4 is already mounted on /mnt/windows

    The QUESTION is simple, but has a multilevel answer, how to find/unpack the driver??

    Thank you much for your help and enlightening me.

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: detect/unpack file on vfat partition

    Quote Originally Posted by ls_linux
    I' have a HD install of Knoppix V3.2.2 2003-4-28, but have to get yet the modem from the most imminent to work.

    The modem driver is a *.tar.gz file that was donwloaded to a fat32 partition (=hda4 under Linux)

    I'd like to unpack and install the driver, but am failing even to detect it under Linux (yes, it's there on a E:\).

    find / -name [filename] searches, but finds nothing (*.tar.gz and similar tried, as well as ful filename) --does Knoppix/Debian2 have different syntax?? Mandrike that I tested before could find not this particular but another file.

    mount /dev/hda4 /mnt/windows returns (something like) that access is not possible [have made the /mnt/windows dir already]

    The QUESTION is simple, but has a multilevel answer, how to find/unpack the driver??

    Thank you much for your help and enlightening me.
    Try mount /dev/hda5 /mnt/windows you are trying to mount the extended partition itself not the logical drive like you should be doing.

  3. #3
    Junior Member registered user
    Join Date
    Apr 2003
    Posts
    12

    Re

    mount [i did it with the following, it shouldn't matter?]
    mount -t vfat /dev/hda5 /mnt/windows Enter
    hda5: bad access: block=0, count=1
    end request: I/O error, dev03:05 (hda5). sector 0
    FAT: unable to read boot sector
    mount: wrong fs type, bad option, bad superblock on /dev/hda5. or too many mounted file systems (Could this be the IDE device where you in fact use ide scsi so that sr0 or sda or so is needed?)

    Can someone please explian in plain English what is going on?

    1. What is the syntax for find in Debian/Knoppix if different from find / -name [filename] ? If not different, why doesn't it work??, both speculations and more scientific answers appreciated (as long as you make it clear which is which
    2. Why can't I mount the dev/hda4 or 5? I have no hda5, why the hda4/E: primary partition may be mounted as hda5 (logic)?
    3. Do I really need to mount it in order to unpack/install? - any go around?


    Thank you much!

    PS: the printing stuff is also about there, it sends a test page to be printed and nothing prints/happens with any of the drivers in the Knoppix 3.2.2 package... What a pitty start. I don't want though to end up going back to Windows forever where I have no clue what the computer is doing, or have no choice but to accept it even if I know.. ;(

  4. #4
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479
    Could you post the output of fdisk -l /dev/hda and mount so I can see what the partitions look like and what is mounted.

    The syntax for find is the same as any other linux it cannot find a file on a non-mounted file system there is no way to search for it.

  5. #5
    Junior Member registered user
    Join Date
    Apr 2003
    Posts
    12

    fdisk -l /dev/hda and mount

    Here it goes, hope it shreds more light. THANKS FOR HELPING OUT!

    [all performed as root]

    fdisk -l dev/hda
    Disk /dev/hda : 20GB, 20........bytes
    255 heads, 63 sectors/tracks 2432 cylinders
    Unit = cylinders of 16065 * 512 = 8225280


    Device/dev/hda1 Boot * Start 1 End 1401 Blocks 11277598+ Id 7 System HPFS/NTFS
    /dev/hda2 [nothing on boot] 1405 2003 4811467+ 83 Linux
    /dev/hda3 [nothing on boot] 2004 2127 996030 82 Linux swap
    /dev/hda4 [nothing on boot] 2128 2432 2449912+ c Win95 FAT32 (lba)

    mount
    disk /dev/hda2 on / type ext2 (rw, errors= remount-ro)
    none on /proc type proc (rw)
    devpts on /dev/pts type devpts (rw, gid=5, mode=620)

  6. #6
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    872
    what about "ls /mnt/windows" ? does it give you anything.

    what is the output of "cat /proc/mounts" ?

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

    Re: fdisk -l /dev/hda and mount

    --Note that he has an NTFS partition as C: - it might be confusing Linux...

    Quote Originally Posted by ls_linux
    Here it goes, hope it shreds more light. THANKS FOR HELPING OUT!

    [all performed as root]

    fdisk -l dev/hda
    Disk /dev/hda : 20GB, 20........bytes
    255 heads, 63 sectors/tracks 2432 cylinders
    Unit = cylinders of 16065 * 512 = 8225280


    Device/dev/hda1 Boot * Start 1 End 1401 Blocks 11277598+ Id 7 System HPFS/NTFS
    /dev/hda2 [nothing on boot] 1405 2003 4811467+ 83 Linux
    /dev/hda3 [nothing on boot] 2004 2127 996030 82 Linux swap
    /dev/hda4 [nothing on boot] 2128 2432 2449912+ c Win95 FAT32 (lba)

    mount
    disk /dev/hda2 on / type ext2 (rw, errors= remount-ro)
    none on /proc type proc (rw)
    devpts on /dev/pts type devpts (rw, gid=5, mode=620)

  8. #8
    Junior Member registered user
    Join Date
    Apr 2003
    Posts
    12

    RE

    > "ls /mnt/windows" nothing, returns the promt.

    >what is the output of "cat /proc/mounts" ?
    rootfs / rootfs rw 00
    /dev/root /ext2 rw 00
    none /proc proc rw 00
    devpts /dev/pts devpts rw 00

    >--Note that he has an NTFS partition as C: - it might be confusing Linux
    It might be managing a NTFS partition, I had a Mandrike before that could find and open a file on the NTFS partition.
    This particular file I'm struggling with is on the FAT32 partition, though to avoid any confussion.

Similar Threads

  1. knoppix-install doesn't detect swap partition
    By stonedyak in forum Hdd Install / Debian / Apt
    Replies: 0
    Last Post: 02-29-2004, 03:28 AM
  2. lilo wont detect my winxp partition
    By bitwarrior in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 08-16-2003, 03:57 AM
  3. How to unpack the compressed KNOPPIX file
    By Mongrol in forum Customising & Remastering
    Replies: 4
    Last Post: 07-02-2003, 08:27 AM
  4. LILO can't detect windows partition
    By endri in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 03-03-2003, 05:30 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
  •  


Fanxiang 1/2/5/10Pcs 2.5'' SATA SSD Lot 1TB 2TB 4TB 512GB 256GB TLC Internal SSD picture

Fanxiang 1/2/5/10Pcs 2.5'' SATA SSD Lot 1TB 2TB 4TB 512GB 256GB TLC Internal SSD

$755.99



Samsung SSD Solid State Drive  MZ-VL25120 512GB picture

Samsung SSD Solid State Drive MZ-VL25120 512GB

$54.99



ON SALE TURBOLINK EVO  4TB V-HAND SSD 2.5 SATA III Internal Solid State Drive picture

ON SALE TURBOLINK EVO 4TB V-HAND SSD 2.5 SATA III Internal Solid State Drive

$199.99



PNY CS900 250GB 2.5

PNY CS900 250GB 2.5" Internal SSD (SSD7CS900-250-RB)

$31.00



Samsung 860 EVO 250GB, SATA III, 2.5

Samsung 860 EVO 250GB, SATA III, 2.5" Internal Solid State Drive - Black

$29.00



SAMSUNG SSD 512GB 500GB 480GB 256GB 250GB 240GB SSD 2.5 Solide State Drive 6Gbps picture

SAMSUNG SSD 512GB 500GB 480GB 256GB 250GB 240GB SSD 2.5 Solide State Drive 6Gbps

$40.99



256GB mSATA SSD DRIVE  MIXED BRAND TESTED WORKING picture

256GB mSATA SSD DRIVE MIXED BRAND TESTED WORKING

$23.50



Crucial 2TB P3 Plus NVMe PCIe 4.0 M.2 Laptop Desktop Internal SSD CT2000P3PSSD8 picture

Crucial 2TB P3 Plus NVMe PCIe 4.0 M.2 Laptop Desktop Internal SSD CT2000P3PSSD8

$199.00



Western Digital Blue 3D NAND 250GB 2.5

Western Digital Blue 3D NAND 250GB 2.5" SATA III Internal SSD - WDS250G2B0A

$29.99



Netac 120GB 256GB 1TB 2TB Internal SSD 2.5'' SATAIII 6Gb/s Solid State Drive lot picture

Netac 120GB 256GB 1TB 2TB Internal SSD 2.5'' SATAIII 6Gb/s Solid State Drive lot

$119.99