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
  •  


Samsung Galaxy Tab A8 10.5

Samsung Galaxy Tab A8 10.5" SM-X200 128GB Wifi Only Tablet Open Box

$149.99



EXCELLENT SAMSUNG GALAXY TAB 4 - 10.1in SM-T537V - 16GB WIFI VERIZON ANDROID picture

EXCELLENT SAMSUNG GALAXY TAB 4 - 10.1in SM-T537V - 16GB WIFI VERIZON ANDROID

$37.99



Genuine Samsung Book Cover Keyboard for 14.6

Genuine Samsung Book Cover Keyboard for 14.6" Galaxy Tab S8 Ultra | S8 Ultra 5G

$89.99



Samsung USB 3.1 Flash Drive Bar Plus 256gb TITAN Gray picture

Samsung USB 3.1 Flash Drive Bar Plus 256gb TITAN Gray

$24.10



Samsung Galaxy 12.4 Inch Slim Keyboard For S7+ | S7 FE | S8+ | S8+ 5G EF-DT730 picture

Samsung Galaxy 12.4 Inch Slim Keyboard For S7+ | S7 FE | S8+ | S8+ 5G EF-DT730

$49.99



Samsung Galaxy Tab A9 (X110) 64GB 4GB RAM International Version (New) picture

Samsung Galaxy Tab A9 (X110) 64GB 4GB RAM International Version (New)

$129.99



Samsung - S Pen Creator Edition - White picture

Samsung - S Pen Creator Edition - White

$40.00



SAMSUNG AM-P613NZBMXAR Galaxy S6 Lite 2022 10.4

SAMSUNG AM-P613NZBMXAR Galaxy S6 Lite 2022 10.4" 64GB Wi-Fi Tablet With S Pen,

$134.00



Samsung 22 In LED-backlit LCD monitor, S22E450D picture

Samsung 22 In LED-backlit LCD monitor, S22E450D

$45.00



512GB SAMSUNG EVO Plus Micro SD MicroSDXC Flash Memory Card w/ SD Adapter picture

512GB SAMSUNG EVO Plus Micro SD MicroSDXC Flash Memory Card w/ SD Adapter

$21.99