Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 3193  / 2 Years ago, thu, august 11, 2022, 11:35:11

I have a dual boot System with an Ubuntu-Filesystem a Windows Filesystem and another FAT Filesystem on my harddrive. My Thunderbird configuration is on that FAT partition.
I tried different tools, but they are mounting the filesystem as root, so thunderbird cannot read and write on it. Sorry for my bad english and thanks for your answers.


More From » mount

 Answers
6

Let us name your data partition as FAT for simplicity, and it's device name as /dev/sda11. Of course the actual partition Label and device name could be different.



You can check your device name and it's Label (If you set label, otherwise you will be given UUID of the device) with this command. Don't worry, if you see different UUID value for your system. Just open a terminal by Pressing Ctrl+Alt+T shortcut and type



sudo blkid | grep vfat


For my system, the output is like this,



/dev/sda11: LABEL="FAT" UUID="28D3-995A" TYPE="vfat" 


You can see, I've only one FAT partition whose Label is FAT and It's device name is /dev/sda11. The most important bit of information is this device name. After you have known the device name of your Fat partition, proceed as follows:




  1. Open a terminal by Pressing Ctrl+Alt+T shortcut.

  2. Type The below command



    gksu gedit /etc/fstab


    and hit Enter. This step will open /etc/fstab file in your gedit text editor. If you are using Kubuntu, replace "gedit" with kwrite. For Xubuntu and Lubuntu, use leafpad instead of gedit.


  3. At the end of this file, Add the below line



    /dev/sda11  /media/Fat   vfat   defaults,rw,users,uid=1000,gid=1000  0    0


    My user id is 1000 and group id is 1000, so I added uid=1000 and gid=1000. Check what is your user id and group id and use them as the value of uid and gid.



    To Find your user id, type id -i your-user-name and to find your group id, type id -g your-user-name.



    After adding the line, save the file by Pressing Ctrl + S keyboard shortcut. Then exit the Text editor by Pressing Alt+F4. You can also use close



    Don't simply paste the line, replace /dev/sda11 with the actual device name of your FAT partition you found by executing sudo blkid | grep vfat command early in the answer


  4. Then Again return to the terminal and type the below command



    sudo mkdir /media/Fat


    and hit Enter.


  5. Restart your PC and see if your fat partition is correctly mounted.



[#35659] Friday, August 12, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ampolinhad

Total Points: 88
Total Questions: 100
Total Answers: 116

Location: South Georgia
Member since Tue, Feb 1, 2022
2 Years ago
ampolinhad questions
Thu, Sep 8, 22, 15:45, 2 Years ago
Tue, Aug 10, 21, 20:03, 3 Years ago
Sat, Oct 16, 21, 22:44, 3 Years ago
Sat, Oct 23, 21, 03:11, 3 Years ago
Thu, Nov 17, 22, 15:34, 1 Year ago
;