Chmod error changing permission read only file systemHow to make read-only file system writable?“system reserved” windows partition showed on ubuntu 12.04. Not installed using wubiELI5: Resizing PartitionsGoogle Cloud VM memory is being used up 100%How to set read+executable permission in internal drive when chmod 777 * is not working?
Booking for intra-EU trains
Catalina: /usr/sbin/accept command not found
Phrase/Word-pair for a variant of master-slave relationship
What is smallest addressable value in an octal number called?
How to react to unfair reviewer comments?
Why is the Australian ETA application fee cheaper on a 3rd party website?
Does the sun cross other spiral arms in its movement around the galaxy's center?
Isn't it obvious there are infinitely many primes?
Is using RSA with SHA-1 considered as secure as HMAC-SHA-1?
Can I land my aircraft on the grass next to the runway at a public airport?
Are there any (natural) scientists in Middle-earth?
How do impulse response guitar amp simulators work?
Did someone help Quentin pass the exam?
SQL Server - Snapshot is useful in production environments?
C: Can't pass '#' as command-line argument
Weird Power Outage in Certain Rooms- Condominium
What color is a wolf's coat?
Can a microwave oven cook chicken?
What is the communications range of a standard Starfleet combadge?
Is 忍者/忍び also used for women?
Collaborating on Jupyter Notebooks
Can I wire this light fixture set with the plate mounted directly to the stud?
Crack hashed passwords using a known password
Size Does Matter (at least referring to bottles)
Chmod error changing permission read only file system
How to make read-only file system writable?“system reserved” windows partition showed on ubuntu 12.04. Not installed using wubiELI5: Resizing PartitionsGoogle Cloud VM memory is being used up 100%How to set read+executable permission in internal drive when chmod 777 * is not working?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I have three main partitions on my disc /dev/sda
:
/dev/sda1 2048 117186559 58592256 83 Linux
/dev/sda2 117186560 128905215 5859328 82 Linux swap / Solaris
/dev/sda3 * 128905216 324216831 97655808 7 HPFS/NTFS/exFAT
/dev/sda4 324216832 1250263039 463023104 b W95 FAT32
/dev/sda3
is a Windows 7 partition and /dev/sda4
is a FAT32 partition where I keep my data. My problem is that yesterday I can't write on /dev/sda4
and when I tried to change the file permissions I get an error:
$ sudo chmod 777 /media/fourat/74A7-A44E/
chmod: changing permissions of ‘74A7-A44E/’: Read-only file system
mount output:
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=fourat)
/dev/sda4 on /media/fourat/74A7-A44E type vfat (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
Please help. Thanks
SOLVED: thanks to mikewhatever
Remounting the partition with
sudo mount -o remount,rw /dev/sda4
14.04 partitioning permissions chmod
add a comment
|
I have three main partitions on my disc /dev/sda
:
/dev/sda1 2048 117186559 58592256 83 Linux
/dev/sda2 117186560 128905215 5859328 82 Linux swap / Solaris
/dev/sda3 * 128905216 324216831 97655808 7 HPFS/NTFS/exFAT
/dev/sda4 324216832 1250263039 463023104 b W95 FAT32
/dev/sda3
is a Windows 7 partition and /dev/sda4
is a FAT32 partition where I keep my data. My problem is that yesterday I can't write on /dev/sda4
and when I tried to change the file permissions I get an error:
$ sudo chmod 777 /media/fourat/74A7-A44E/
chmod: changing permissions of ‘74A7-A44E/’: Read-only file system
mount output:
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=fourat)
/dev/sda4 on /media/fourat/74A7-A44E type vfat (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
Please help. Thanks
SOLVED: thanks to mikewhatever
Remounting the partition with
sudo mount -o remount,rw /dev/sda4
14.04 partitioning permissions chmod
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output ofmount
and where the directory you cannot change permissions of actually is.
– Marcin Kaminski
Jan 11 '15 at 19:05
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
3
If a filesystem is read only, you need to re-mount it as rw -sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.
– mikewhatever
Jan 11 '15 at 19:17
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead ofchmod
, you could just give your user permission to access the files withmount
/fstab
.
– earthmeLon
Jan 12 '15 at 18:37
4
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14
add a comment
|
I have three main partitions on my disc /dev/sda
:
/dev/sda1 2048 117186559 58592256 83 Linux
/dev/sda2 117186560 128905215 5859328 82 Linux swap / Solaris
/dev/sda3 * 128905216 324216831 97655808 7 HPFS/NTFS/exFAT
/dev/sda4 324216832 1250263039 463023104 b W95 FAT32
/dev/sda3
is a Windows 7 partition and /dev/sda4
is a FAT32 partition where I keep my data. My problem is that yesterday I can't write on /dev/sda4
and when I tried to change the file permissions I get an error:
$ sudo chmod 777 /media/fourat/74A7-A44E/
chmod: changing permissions of ‘74A7-A44E/’: Read-only file system
mount output:
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=fourat)
/dev/sda4 on /media/fourat/74A7-A44E type vfat (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
Please help. Thanks
SOLVED: thanks to mikewhatever
Remounting the partition with
sudo mount -o remount,rw /dev/sda4
14.04 partitioning permissions chmod
I have three main partitions on my disc /dev/sda
:
/dev/sda1 2048 117186559 58592256 83 Linux
/dev/sda2 117186560 128905215 5859328 82 Linux swap / Solaris
/dev/sda3 * 128905216 324216831 97655808 7 HPFS/NTFS/exFAT
/dev/sda4 324216832 1250263039 463023104 b W95 FAT32
/dev/sda3
is a Windows 7 partition and /dev/sda4
is a FAT32 partition where I keep my data. My problem is that yesterday I can't write on /dev/sda4
and when I tried to change the file permissions I get an error:
$ sudo chmod 777 /media/fourat/74A7-A44E/
chmod: changing permissions of ‘74A7-A44E/’: Read-only file system
mount output:
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=fourat)
/dev/sda4 on /media/fourat/74A7-A44E type vfat (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
Please help. Thanks
SOLVED: thanks to mikewhatever
Remounting the partition with
sudo mount -o remount,rw /dev/sda4
14.04 partitioning permissions chmod
14.04 partitioning permissions chmod
edited Aug 12 at 7:15
RtmY
1255 bronze badges
1255 bronze badges
asked Jan 11 '15 at 18:59
FouratFourat
1411 gold badge1 silver badge6 bronze badges
1411 gold badge1 silver badge6 bronze badges
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output ofmount
and where the directory you cannot change permissions of actually is.
– Marcin Kaminski
Jan 11 '15 at 19:05
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
3
If a filesystem is read only, you need to re-mount it as rw -sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.
– mikewhatever
Jan 11 '15 at 19:17
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead ofchmod
, you could just give your user permission to access the files withmount
/fstab
.
– earthmeLon
Jan 12 '15 at 18:37
4
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14
add a comment
|
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output ofmount
and where the directory you cannot change permissions of actually is.
– Marcin Kaminski
Jan 11 '15 at 19:05
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
3
If a filesystem is read only, you need to re-mount it as rw -sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.
– mikewhatever
Jan 11 '15 at 19:17
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead ofchmod
, you could just give your user permission to access the files withmount
/fstab
.
– earthmeLon
Jan 12 '15 at 18:37
4
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output of
mount
and where the directory you cannot change permissions of actually is.– Marcin Kaminski
Jan 11 '15 at 19:05
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output of
mount
and where the directory you cannot change permissions of actually is.– Marcin Kaminski
Jan 11 '15 at 19:05
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
3
3
If a filesystem is read only, you need to re-mount it as rw -
sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.– mikewhatever
Jan 11 '15 at 19:17
If a filesystem is read only, you need to re-mount it as rw -
sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.– mikewhatever
Jan 11 '15 at 19:17
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead of
chmod
, you could just give your user permission to access the files with mount
/fstab
.– earthmeLon
Jan 12 '15 at 18:37
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead of
chmod
, you could just give your user permission to access the files with mount
/fstab
.– earthmeLon
Jan 12 '15 at 18:37
4
4
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f572579%2fchmod-error-changing-permission-read-only-file-system%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f572579%2fchmod-error-changing-permission-read-only-file-system%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There's nothing in your question that shows us the location of '74A7-A44E'. Please update your question with the output of
mount
and where the directory you cannot change permissions of actually is.– Marcin Kaminski
Jan 11 '15 at 19:05
Are you trying to apply chmod command on a file that exists on USB?
– Wolverine
Jan 11 '15 at 19:15
3
If a filesystem is read only, you need to re-mount it as rw -
sudo mount -o remount,rw /dev/sda4
, and not hammer it with chmod. The cause of such errors is usually filesystem corruption, so you'll need to check it for errors in Windows.– mikewhatever
Jan 11 '15 at 19:17
If I'm not mistaken, FAT partitions don't have 'permissions'. Instead of
chmod
, you could just give your user permission to access the files withmount
/fstab
.– earthmeLon
Jan 12 '15 at 18:37
4
Possible duplicate of How to make read-only file system writable?
– Zanna
Mar 7 '17 at 7:14