hawker
Honorary Master
- Joined
- Sep 22, 2006
- Messages
- 11,461
Hey guys
I'm running Ubuntu 10.04 (Pre release)
I have a small problem. I have 3 HDD's. I've posted the result of "fdisk -l"
Output of my /etc/fstab
Now as you can see, on the 3rd drive there is a FAT32 Partition that I would like to give read/write permissions to.
I have done that for the other 2 HDD's. They are mounted at:
/media/DDrive and /media/EDrive
I didn't previously have write permissions to those 2 locations but I just did a quick
to change it.
Now my problem is:
When I try execute:
(SeaDrive being the location to where my FAT32 partition is mounted)
The command doesn't change the permissions.
What could the problem be? Any ideas?
P.S. I know of the risks of giving everyone write permissions etc etc
so no lectures about all of that please. 
I'm running Ubuntu 10.04 (Pre release)
I have a small problem. I have 3 HDD's. I've posted the result of "fdisk -l"
Code:
rudi@TheHawkNest:~$ sudo fdisk -l
Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000090f2
Device Boot Start End Blocks Id System
/dev/sda1 1 30401 244196001 83 Linux
Disk /dev/sdb: 250.1 GB, 250058268160 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0008ac83
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 30402 244195328 7 HPFS/NTFS
Disk /dev/sdc: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x2acc6b83
Device Boot Start End Blocks Id System
/dev/sdc1 1 1824 14651248+ 83 Linux
/dev/sdc2 1825 1946 979965 5 Extended
/dev/sdc3 * 1947 60801 472752787+ b W95 FAT32
/dev/sdc5 1825 1946 979933+ 82 Linux swap / Solaris
Output of my /etc/fstab
Code:
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda1 during installation
UUID=29bb16a1-6095-46ab-8e84-b687f81d8aa5 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=8bfc4bb4-2659-4a62-9025-ef63ead967e5 none swap sw 0 0
/dev/sdc3 /media/SeaDrive vfat defaults 0 0
/dev/sdb1 /media/EDrive ntfs defaults 0 0
/dev/sda1 /media/DDrive ext4 defaults 0 0
Now as you can see, on the 3rd drive there is a FAT32 Partition that I would like to give read/write permissions to.
I have done that for the other 2 HDD's. They are mounted at:
/media/DDrive and /media/EDrive
I didn't previously have write permissions to those 2 locations but I just did a quick
Code:
sudo chmod -R 777 /media/<foldername>
to change it.
Now my problem is:
When I try execute:
Code:
sudo chmod -R 777 /media/SeaDrive
(SeaDrive being the location to where my FAT32 partition is mounted)
The command doesn't change the permissions.
What could the problem be? Any ideas?
P.S. I know of the risks of giving everyone write permissions etc etc
Last edited: