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
  •  


HPE Synergy 480 Gen 10 Blade Server | 96GB Ram | No HDDs | Complete Otherwise picture

HPE Synergy 480 Gen 10 Blade Server | 96GB Ram | No HDDs | Complete Otherwise

$500.00



Dell PowerEdge FX2s + 8x FC430 Blades 16x E5-2630v4 160 Cores Rails No PSU/RAM picture

Dell PowerEdge FX2s + 8x FC430 Blades 16x E5-2630v4 160 Cores Rails No PSU/RAM

$699.00



NETAPP HCI NAF-1701 SuperMicro Server 4X BLADE H410C 8X GOLD 5120 - 4X S25G NICs picture

NETAPP HCI NAF-1701 SuperMicro Server 4X BLADE H410C 8X GOLD 5120 - 4X S25G NICs

$1999.97



Lot of 3 Dell PowerEdge Blade Server HHB005 x2 HHB006 x1 picture

Lot of 3 Dell PowerEdge Blade Server HHB005 x2 HHB006 x1

$256.49



LOT (8) Cisco UCS UCSB-B200-M5  2x6248R  24 core 3.0G   24x64g DDR4-2933 ram picture

LOT (8) Cisco UCS UCSB-B200-M5 2x6248R 24 core 3.0G 24x64g DDR4-2933 ram

$112000.00



Dell PowerEdge VRTX Rackmount Chassis w/4x PSUs 2x CMC Modules picture

Dell PowerEdge VRTX Rackmount Chassis w/4x PSUs 2x CMC Modules

$399.98



Dell PowerEdge FX2 FX2s Server 10GbE CMC Blade Enclosure Chassis picture

Dell PowerEdge FX2 FX2s Server 10GbE CMC Blade Enclosure Chassis

$274.99



Dell PowerEdge M620 Blade Server 2x Xeon E5-2680v2 2.8ghz 20-Cores | 128GB picture

Dell PowerEdge M620 Blade Server 2x Xeon E5-2680v2 2.8ghz 20-Cores | 128GB

$149.99



Dell PowerEdge FC430 Blade Server 2x Xeon E5-2630v4 20 Cores FX2 FX2s No RAM/HDD picture

Dell PowerEdge FC430 Blade Server 2x Xeon E5-2630v4 20 Cores FX2 FX2s No RAM/HDD

$119.99



Dell Poweredge VRTX 25Bay 2.5

Dell Poweredge VRTX 25Bay 2.5" 2x PERC 8, 2xCMC, I/O 1GB Pass Through, 4x PS

$578.08