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
  •  


USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack picture

USB 3.0 Flash Drive 32GB 64GB 128GB Memory Stick Thumb Stick Lot Pack

$826.09



SanDisk Ultra Luxe USB 3.1 Flash Drive – 5 Pack | Premium Metal USB Flash Drives picture

SanDisk Ultra Luxe USB 3.1 Flash Drive – 5 Pack | Premium Metal USB Flash Drives

$59.99



Microsoft Windows 11 Pro 64bit - New Sealed – Flash USB 1 PC picture

Microsoft Windows 11 Pro 64bit - New Sealed – Flash USB 1 PC

$49.99



Windows 11 Pro Install/Recovery/Repair USB Flash Drive picture

Windows 11 Pro Install/Recovery/Repair USB Flash Drive

$35.00



Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack picture

Sandisk 16GB 32GB 64GB 128GB Cruzer Blade Flash Drive Memory Stick USB Lot Pack

$175.90



Sandisk Flash Drive 16GB 32GB 64GB 128GB 256GB 512GB Blade Glide Ultra Flair lot picture

Sandisk Flash Drive 16GB 32GB 64GB 128GB 256GB 512GB Blade Glide Ultra Flair lot

$623.38



Kingston 32GB 64GB 128GB 256GB USB 3.0 Flash Drive Thumb Memory Stick Pen lot picture

Kingston 32GB 64GB 128GB 256GB USB 3.0 Flash Drive Thumb Memory Stick Pen lot

$135.90



Sandisk 32GB 64GB 128GB 256GB Cruzer Glide Flash Drive USB 2.0 Memory Lot picture

Sandisk 32GB 64GB 128GB 256GB Cruzer Glide Flash Drive USB 2.0 Memory Lot

$404.42



Wholesale 5/10/100PCS 1GB 2GB 4GB 8GB 16GB 32GB USB 2.0 Flash Drive Memory Stick picture

Wholesale 5/10/100PCS 1GB 2GB 4GB 8GB 16GB 32GB USB 2.0 Flash Drive Memory Stick

$305.01



LOT 10x SanDisk 32GB Cruzer Spark USB 2.0 flash drive 32 GB SDCZ61-032G 32G picture

LOT 10x SanDisk 32GB Cruzer Spark USB 2.0 flash drive 32 GB SDCZ61-032G 32G

$34.80