Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: How can I use other FAT partition?

  1. #1
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536

    How can I use other FAT partition?

    I have a snall FAT partition that I would like to be able to write to. I cannot even see it anywhere in Linux. How do I go about setting it up to read-write?
    I can only see it Windows.

  2. #2
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949
    What hardrive icons do you have on your desktop, if you have two it should be

    hda1 and hda2.
    Hda2 is probably the FAT try clicking it.

  3. #3
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    hda1 (XP), hda3(Linux), hda5 is something with system volume information and another file but I dont know what it is.

  4. #4
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    Could you post your /etc/fstab and the output of sudo fdisk -l

  5. #5
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    Marcus, here are the results of sudo fdisk -l and my fstab.

    Disk /dev/hda: 240 heads, 63 sectors, 10587 cylinders
    Units = cylinders of 15120 * 512 bytes

    Device Boot Start End Blocks Id System
    /dev/hda1 * 597 10586 75524400 7 HPFS/NTFS
    /dev/hda2 10587 10587 7560 f Win95 Ext'd (LBA)
    /dev/hda3 1 596 4505728+ 83 Linux
    /dev/hda5 10587 10587 7528+ 1 FAT12



    # /etc/fstab: filesystem table.
    #
    # filesystem mountpoint type options dump pass
    /dev/hda3 / ext3 defaults,errors=remount-ro 0 1

    proc /proc proc defaults 0 0
    /dev/fd0 /floppy vfat defaults,user,noauto,showexec,umask=022 0 0
    usbdevfs /proc/bus/usb usbdevfs defaults 0 0
    sysfs /sys sysfs defaults 0 0
    #default line below - changed /dve/cdrom to /dev/sr0 and user to users
    /dev/sr0 /cdrom iso9660 defaults,ro,users,noexec,noauto 0 0
    #took out the 'mount' in the beginning of the next line and changed sr0 to hdb
    #/dev/hdb /cdrom iso9660 defaults,ro,users,noexec,noauto 0 0
    #This is what I added - mount /dev/sr0/cdrom iso9660 ro,user,noauto 0 0
    # default line for the line below - /dev/cdrom1 /cdrom1 iso9660 defaults,ro,user,noexec,noauto 0 0
    #This is what I added -
    /dev/sr1 /cdrom1 iso9660 defaults,ro,users,noexec,noauto 0 0
    #Changed in the line below dvd to sr2 and user to users
    /dev/sr2 /dvd iso9660 defaults,ro,users,noexec,noauto 0 0
    /dev/cdaudio /cdaudio iso9660 defaults,ro,user,noexec,noauto 0 0
    /dev/cdrom1 /mnt/auto/cdrom1 auto users,noauto,exec,ro 0 0
    # Added by KNOPPIX and I took ouut the ro after exec, .
    /dev/hda1 /mnt/hda1 ntfs noauto,users,exec,umask=000 0 0
    # Added by KNOPPIX
    /dev/hda5 /mnt/hda5 vfat noauto,users,exec,umask=000 0 0

    Also my dvd drive acts as a cd rom drive, I think it has something to do with sr1 and sr2.
    Can you see any problem?
    I don't see hda2 anywhere in linux when I boot. Is that the the partition I'm looking for? If it is, How do I write to it?

  6. #6
    Senior Member
    Join Date
    Oct 2003
    Location
    GA
    Posts
    382
    It looks like hda5 is the partition you're wanting. The reason it's not showing up on bootup is because it's got "noauto" set in your fstab. If you take that out it will mount it automatically at bootup.

  7. #7
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    You seem to be using FAT12 on it. Try one of these:
    /dev/hda5 /mnt/hda5 msdos noauto,users,exec,umask=000 0 0
    /dev/hda5 /mnt/hda5 auto noauto,users,exec,umask=000 0 0
    And if you want automounting do also what champagnemojo said.
    Something fishy about the start and end sectors, are you sure there's any space on hda5?

  8. #8
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    Don't know, how do I find that out through Linux?

  9. #9
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    My bad. I got it mixed up due to the strange order on the devices. Well, might not be strange, it's just different from what I have.

    This looked easier to me:
    Device Boot Start End Blocks Id System
    /dev/hda3 1 596 4505728+ 83 Linux
    /dev/hda1 * 597 10586 75524400 7 HPFS/NTFS
    /dev/hda2 10587 10587 7560 f Win95 Ext'd (LBA)
    /dev/hda5 10587 10587 7528+ 1 FAT12

    Did the lines work? That is, did you try them in your fstab?
    You could also try mounting with: mount -t msdos /dev/hda5 /mnt/hda5

  10. #10
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    This is what i get from that:

    mount: /dev/hda5 already mounted or /mnt/hda5 busy
    mount: according to mtab, /dev/hda5 is already mounted on /mnt/hda5

    So it is already mounted.

    This is what in that partition: System Volume Information, configs.tbz, knoppix.img and knoppix.sh. What are these files? They all belong to Linux? So all this while I had the partition available to me but didn't know it. Is it possible to read Linux files from Windows?

Page 1 of 2 12 LastLast

Similar Threads

  1. Copy data from one partition to the other partition
    By bono in forum MS Windows & New to Linux
    Replies: 5
    Last Post: 08-08-2005, 08:10 AM
  2. /usr partition
    By lupe in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 07-09-2005, 12:33 PM
  3. How to Partition HD ?
    By marshalx in forum Hdd Install / Debian / Apt
    Replies: 5
    Last Post: 12-09-2004, 09:38 AM
  4. Partition
    By Quite in forum General Support
    Replies: 5
    Last Post: 09-23-2004, 01:36 AM
  5. What is a DOS PARTITION?
    By rossnixon in forum General Support
    Replies: 10
    Last Post: 02-08-2004, 01:32 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
  •  


SanDisk 512GB Ultra Drive Dual Go USB Type-C Flash Drive Green SDDDC3-512G-G46G picture

SanDisk 512GB Ultra Drive Dual Go USB Type-C Flash Drive Green SDDDC3-512G-G46G

$49.99



SanDisk 1TB Ultra Dual Drive Go USB Type-C Flash Drive, Black - SDDDC3-1T00-G46 picture

SanDisk 1TB Ultra Dual Drive Go USB Type-C Flash Drive, Black - SDDDC3-1T00-G46

$109.99



SanDisk 512GB Extreme PRO USB 3.2 Solid State Flash Drive - SDCZ880-512G-G46 picture

SanDisk 512GB Extreme PRO USB 3.2 Solid State Flash Drive - SDCZ880-512G-G46

$99.99



SanDisk 128GB Ultra Dual Drive USB Type-C, USB 3.1 Flash Drive - SDDDC2-032G-G46 picture

SanDisk 128GB Ultra Dual Drive USB Type-C, USB 3.1 Flash Drive - SDDDC2-032G-G46

$10.99



Lenovo USB 16TB 3.0 USB Flash Drive Thumb Disk Silver Transfer Metal Memory picture

Lenovo USB 16TB 3.0 USB Flash Drive Thumb Disk Silver Transfer Metal Memory

$24.99



Mechanical Style Flash Drive USB 3.0 High Speed 16TB Large Capacity Waterproof  picture

Mechanical Style Flash Drive USB 3.0 High Speed 16TB Large Capacity Waterproof

$8.37



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

$4.99



2TB USB 3.0 Flash Drive Memory Photo Stick for iPhone Android iPad Type C 3 IN1 picture

2TB USB 3.0 Flash Drive Memory Photo Stick for iPhone Android iPad Type C 3 IN1

$13.00



1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot picture

1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot

$388.39



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

$399.99