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 SSD 860 EVO 1TB 2.5 Inch SATA III Internal Solid State Drive picture

Samsung SSD 860 EVO 1TB 2.5 Inch SATA III Internal Solid State Drive

$49.99



Samsung - S Pen Creator Edition - White picture

Samsung - S Pen Creator Edition - White

$38.00



Samsung Galaxy Tab A9+ 11.0

Samsung Galaxy Tab A9+ 11.0" 64GB Gray Wi-Fi Tablet Bundle SM-X210NZAYXAR 2023

$149.99



SAMSUNG 8GB 1RX8 DDR4 PC4-2666V SO-DIMM LAPTOP RAM M471A1K43DB1-CTD E2-6(9) picture

SAMSUNG 8GB 1RX8 DDR4 PC4-2666V SO-DIMM LAPTOP RAM M471A1K43DB1-CTD E2-6(9)

$12.99



Samsung 27

Samsung 27" Ultra-Slim LED Curved Monitor HDMI (LC27F390FHN) ™

$97.99



Samsung Chromebook 3 4GB 16GB SSD 11.6-Inch Laptop  XE500C13-K02US HDMI WIFI picture

Samsung Chromebook 3 4GB 16GB SSD 11.6-Inch Laptop XE500C13-K02US HDMI WIFI

$39.59



Samsung Galaxy Tab A 8

Samsung Galaxy Tab A 8" SM-T387V 32GB Verizon WIFI + Cellular Grade A Condition

$52.49



Samsung 990 PRO 2TB NVMe PCIe 4.0 M.2 2280 (MZ-V9P2T0B/AM) Internal SSD picture

Samsung 990 PRO 2TB NVMe PCIe 4.0 M.2 2280 (MZ-V9P2T0B/AM) Internal SSD

$129.00



Samsung 990 PRO 4TB M.2 NVMe Internal SSD - Model MZ-V9P4T0 picture

Samsung 990 PRO 4TB M.2 NVMe Internal SSD - Model MZ-V9P4T0

$275.99



Samsung Galaxy Tab S6 Lite SM-P613 64GB 10.4

Samsung Galaxy Tab S6 Lite SM-P613 64GB 10.4" Oxford Gray Tablet Bundle Open Box

$164.95