I have got an external hard disk TOSHIBA 1TB USB 3, the permission is always READ ONLY.
fdisk -l (output) :
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf2198b37
Device Boot Start End Blocks Id System
/dev/sda1 * 2046 362369023 181183489 5 Extended
/dev/sda3 362371072 976771071 307200000 7 HPFS/NTFS/exFAT
/dev/sda5 2048 976895 487424 83 Linux
/dev/sda6 978944 362369023 180695040 83 Linux
Disk /dev/sdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xeba6fb57
Device Boot Start End Blocks Id System
/dev/sdb1 16065 312576704 156280320 f W95 Ext'd (LBA)
/dev/sdb5 16128 312573708 156278790+ 7 HPFS/NTFS/exFAT
Disk /dev/sdc: 1000.2 GB, 1000204885504 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525167 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x297c35de
Device Boot Start End Blocks Id System
/dev/sdc1 63 1953520064 976760001 7 HPFS/NTFS/exFAT
How can I change the owner and permission of this hard drive ?
Best Answer
Try executing the following command in a terminal:
Explanation:
-o
means "with these options".remount
- remounts the drive over the same mount point with the same previous options.uid=1000
- this option makes the user with id 1000 the owner of the drive. This is probably your username's id if you only have one username. If you have more than one username on your system, run the commandid
and use the number afteruid=
.gid=1000
- this option makes the group with id 1000 the group owner of the drive. Same notes as previous point.rw
- this option mounts the drive as read/write. It was probably read/write anyways, but this is just to double check./dev/sdc1
is the name of the partition or device (can be checked in GParted in case you need to do the same with a different hardisk)Since you've already tried this command and it didn't work, let's try manually mounting the drive. Follow the below:
sudo umount /dev/sdc1
sudo mkdir toshibaHDD
sudo mount -o rw,uid=1000,gid=1000,user,exec,umask=003,blksize=4096 /dev/sdc1 /media/toshibaHDD
user
- permits any user to mount the driveexec
- allows for execution of binaries on this drive. You can remove this option if you want.umask=003
- this will giverwxrwxr--
permissions to everything (directories and files) inside the drive. Alternatively, you can usedmask
andfmask
instead ofumask
to give separate permissions to directories and files (respectively)./media/toshibaHDD
- is the name of the hardisk (can be checked in GParted in case you need to do the same with a different hardisk)Now check the permissions of your drive.
##Edit
Follow the steps to make it permanent:
cd /etc
sudo cp fstab fstab.bak
sudo nano fstab
fstab
file in a text editor.Move the blinking cursor to the end of the file, and paste the following two lines:
Hit Ctrl+X, then Y, then Enter to save and close.
That's it. Now, when you plug your external hard disk in, it will always have those options.