How to change read-only permission of external hard drive
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:
chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system
What do I do in order to be able to save to it? I have data on there, so formatting is not an option.
raspberry-pi chmod
add a comment |Â
up vote
0
down vote
favorite
I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:
chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system
What do I do in order to be able to save to it? I have data on there, so formatting is not an option.
raspberry-pi chmod
2
Please post the output ofmount | grep FreeAgent
while it is mounted.
â Ned64
Feb 17 at 12:24
mount | grep FreeAgent GoFlex Drive/
gives no output
â matsuo_basho
Feb 17 at 22:08
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:
chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system
What do I do in order to be able to save to it? I have data on there, so formatting is not an option.
raspberry-pi chmod
I have an FreeAgent GoFlex Drive that I would like to save data to via my Raspberry Pi 3. I'm able to view jpegs from the drive, but not save data to it. When I attempt to change permissions, I get the following error:
chmod 755 FreeAgent GoFlex Drive/
chmod: changing permisssons of 'FreeAgent GoFlex Drive/': Read-only file system
What do I do in order to be able to save to it? I have data on there, so formatting is not an option.
raspberry-pi chmod
asked Feb 17 at 12:19
matsuo_basho
101
101
2
Please post the output ofmount | grep FreeAgent
while it is mounted.
â Ned64
Feb 17 at 12:24
mount | grep FreeAgent GoFlex Drive/
gives no output
â matsuo_basho
Feb 17 at 22:08
add a comment |Â
2
Please post the output ofmount | grep FreeAgent
while it is mounted.
â Ned64
Feb 17 at 12:24
mount | grep FreeAgent GoFlex Drive/
gives no output
â matsuo_basho
Feb 17 at 22:08
2
2
Please post the output of
mount | grep FreeAgent
while it is mounted.â Ned64
Feb 17 at 12:24
Please post the output of
mount | grep FreeAgent
while it is mounted.â Ned64
Feb 17 at 12:24
mount | grep FreeAgent GoFlex Drive/
gives no outputâ matsuo_basho
Feb 17 at 22:08
mount | grep FreeAgent GoFlex Drive/
gives no outputâ matsuo_basho
Feb 17 at 22:08
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
1
down vote
This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).
Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.
add a comment |Â
up vote
1
down vote
Viola mount -o remount,rw /path/to/remount
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error:mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).
Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.
add a comment |Â
up vote
1
down vote
This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).
Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).
Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.
This could work:
Try to dismount (can be done with umount) it, restart PC and login as root or do sudo chroot 755 YOUR_HARD_DISK_DRIVE (if it gets mounted, dismount it again) and then manually mount it (create a subdir in /mnt/ example "cd /mnt/, mkdir mntpnt1") then use mount command to mount it in /mnt/ (or wherever you like).
Also is there any documentation from Hard Disk Drive's manufacturer? If yes, make sure you read it.
answered Feb 17 at 12:32
Fido-X
1225
1225
add a comment |Â
add a comment |Â
up vote
1
down vote
Viola mount -o remount,rw /path/to/remount
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error:mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
add a comment |Â
up vote
1
down vote
Viola mount -o remount,rw /path/to/remount
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error:mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Viola mount -o remount,rw /path/to/remount
Viola mount -o remount,rw /path/to/remount
answered Feb 17 at 12:43
jas-
71038
71038
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error:mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
add a comment |Â
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error:mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
sudo mount -o remount,rw FreeAgent GoFlex Drive/
gives following error: mount: cannot remount /dev/sda1 read-write, is write-protected
â matsuo_basho
Feb 17 at 22:10
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
It might have a hardware switch that needs to be flipped, have you looked at the user manual?
â jas-
Feb 18 at 6:07
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424783%2fhow-to-change-read-only-permission-of-external-hard-drive%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
Please post the output of
mount | grep FreeAgent
while it is mounted.â Ned64
Feb 17 at 12:24
mount | grep FreeAgent GoFlex Drive/
gives no outputâ matsuo_basho
Feb 17 at 22:08