Linux: Changing Permissions – No space left on device The 2019 Stack Overflow Developer Survey Results Are InMoving stuff off of SSD to HDD after installation. Using mount --bind? LiveCD?Unable to change permissions of file system rootAutomated mounting for usb drives in linuxLoopback (bind) mount automatically mounting additional ext4 USB driveHow to finally mount FAT16 USB flash driveBest practice to mount directory in /home to directory in /media?How do I control what's mounted at Linux startup?What is overriding the fstab permissions mounting option?Mount permissions on LinuxWhy is /tmp mounted with permissions 0755 when fstab has 1777?
How can I add encounters in the Lost Mine of Phandelver campaign without giving PCs too much XP?
Straighten subgroup lattice
Kerning for subscripts of sigma?
Dropping list elements from nested list after evaluation
Why couldn't they take pictures of a closer black hole?
What do I do when my TA workload is more than expected?
How did passengers keep warm on sail ships?
Why doesn't shell automatically fix "useless use of cat"?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?
Are spiders unable to hurt humans, especially very small spiders?
Geography at the pixel level
How to type a long/em dash `—`
How to translate "being like"?
Can you cast a spell on someone in the Ethereal Plane, if you are on the Material Plane and have the True Seeing spell active?
Identify boardgame from Big movie
Likelihood that a superbug or lethal virus could come from a landfill
For what reasons would an animal species NOT cross a *horizontal* land bridge?
How to support a colleague who finds meetings extremely tiring?
What information about me do stores get via my credit card?
Is it possible for absolutely everyone to attain enlightenment?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
Is Cinnamon a desktop environment or a window manager? (Or both?)
What is the most efficient way to store a numeric range?
Linux: Changing Permissions – No space left on device
The 2019 Stack Overflow Developer Survey Results Are InMoving stuff off of SSD to HDD after installation. Using mount --bind? LiveCD?Unable to change permissions of file system rootAutomated mounting for usb drives in linuxLoopback (bind) mount automatically mounting additional ext4 USB driveHow to finally mount FAT16 USB flash driveBest practice to mount directory in /home to directory in /media?How do I control what's mounted at Linux startup?What is overriding the fstab permissions mounting option?Mount permissions on LinuxWhy is /tmp mounted with permissions 0755 when fstab has 1777?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have an external drive. When I just plug the drive into the PC, with a default /etc/fstab
file, the OS just detects it and it's there in the Dolphin browser. I can select it, I can navigate to it on the command line, read/write/etc the files on it, etc.
I'm trying to mount the drive into my home directory
so that Plex Media Server can access it. I've done this a million times before with this same drive no problem, on Linux.
I recently re-installed the OS and went to set up the drive, same as always. Again, this exact same configuration has worked in the past, on the same version of Linux (OpenSUSE Leap 42.1), on the same machine, with the same hard drive. I've added this entry
UUID=F474B7AA74B76DCC /home/craig/MediaDrive ntfs-3g defaults,nofail,permissions,auto 0 1
to /etc/fstab
to mount the drive in my home directory.
I get it mounted to /home/craig/MediaDrive
.
The first weird thing is that ls -l
shows
d--------- 1 root root 12288 May 16 18:33 MediaDrive
So then I go to set ownership and change permissions with
sudo chown -R 777 /home/craig/MediaDrive
and I get the error:
chmod: changing permissions of ‘MediaDrive’: No space left on device
The thing is, there's plenty of space left. There's over 300GB of space left. I'm pasting my df -h
output below.
Filesystem Size Used Avail Use% Mounted on
/dev/sde1 1.9T 1.6T 316G 84% /home/craig/MediaDrive
It doesn't seem to be an inode issue; here is the output of df -i
:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sde1 331060948 4846 331056102 1% /home/craig/MediaDrive
Again, this permissions issue only exists with the drive when I try to mount it in that location (in my home directory); otherwise when it's just at the default run/media/craig/My Passport location, it's fine. Reads, writes, etc.
How can I get my drive to mount successfully in my home directory?
permissions mount opensuse fstab chmod
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
|
show 3 more comments
I have an external drive. When I just plug the drive into the PC, with a default /etc/fstab
file, the OS just detects it and it's there in the Dolphin browser. I can select it, I can navigate to it on the command line, read/write/etc the files on it, etc.
I'm trying to mount the drive into my home directory
so that Plex Media Server can access it. I've done this a million times before with this same drive no problem, on Linux.
I recently re-installed the OS and went to set up the drive, same as always. Again, this exact same configuration has worked in the past, on the same version of Linux (OpenSUSE Leap 42.1), on the same machine, with the same hard drive. I've added this entry
UUID=F474B7AA74B76DCC /home/craig/MediaDrive ntfs-3g defaults,nofail,permissions,auto 0 1
to /etc/fstab
to mount the drive in my home directory.
I get it mounted to /home/craig/MediaDrive
.
The first weird thing is that ls -l
shows
d--------- 1 root root 12288 May 16 18:33 MediaDrive
So then I go to set ownership and change permissions with
sudo chown -R 777 /home/craig/MediaDrive
and I get the error:
chmod: changing permissions of ‘MediaDrive’: No space left on device
The thing is, there's plenty of space left. There's over 300GB of space left. I'm pasting my df -h
output below.
Filesystem Size Used Avail Use% Mounted on
/dev/sde1 1.9T 1.6T 316G 84% /home/craig/MediaDrive
It doesn't seem to be an inode issue; here is the output of df -i
:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sde1 331060948 4846 331056102 1% /home/craig/MediaDrive
Again, this permissions issue only exists with the drive when I try to mount it in that location (in my home directory); otherwise when it's just at the default run/media/craig/My Passport location, it's fine. Reads, writes, etc.
How can I get my drive to mount successfully in my home directory?
permissions mount opensuse fstab chmod
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
It might help if you show the exactchmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
May 17 '16 at 2:03
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
1
can you give fulldf -lh
output including OS partitions not just your mounted disk? (yes, update your question)
– cuongnv23
May 17 '16 at 2:40
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17
|
show 3 more comments
I have an external drive. When I just plug the drive into the PC, with a default /etc/fstab
file, the OS just detects it and it's there in the Dolphin browser. I can select it, I can navigate to it on the command line, read/write/etc the files on it, etc.
I'm trying to mount the drive into my home directory
so that Plex Media Server can access it. I've done this a million times before with this same drive no problem, on Linux.
I recently re-installed the OS and went to set up the drive, same as always. Again, this exact same configuration has worked in the past, on the same version of Linux (OpenSUSE Leap 42.1), on the same machine, with the same hard drive. I've added this entry
UUID=F474B7AA74B76DCC /home/craig/MediaDrive ntfs-3g defaults,nofail,permissions,auto 0 1
to /etc/fstab
to mount the drive in my home directory.
I get it mounted to /home/craig/MediaDrive
.
The first weird thing is that ls -l
shows
d--------- 1 root root 12288 May 16 18:33 MediaDrive
So then I go to set ownership and change permissions with
sudo chown -R 777 /home/craig/MediaDrive
and I get the error:
chmod: changing permissions of ‘MediaDrive’: No space left on device
The thing is, there's plenty of space left. There's over 300GB of space left. I'm pasting my df -h
output below.
Filesystem Size Used Avail Use% Mounted on
/dev/sde1 1.9T 1.6T 316G 84% /home/craig/MediaDrive
It doesn't seem to be an inode issue; here is the output of df -i
:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sde1 331060948 4846 331056102 1% /home/craig/MediaDrive
Again, this permissions issue only exists with the drive when I try to mount it in that location (in my home directory); otherwise when it's just at the default run/media/craig/My Passport location, it's fine. Reads, writes, etc.
How can I get my drive to mount successfully in my home directory?
permissions mount opensuse fstab chmod
I have an external drive. When I just plug the drive into the PC, with a default /etc/fstab
file, the OS just detects it and it's there in the Dolphin browser. I can select it, I can navigate to it on the command line, read/write/etc the files on it, etc.
I'm trying to mount the drive into my home directory
so that Plex Media Server can access it. I've done this a million times before with this same drive no problem, on Linux.
I recently re-installed the OS and went to set up the drive, same as always. Again, this exact same configuration has worked in the past, on the same version of Linux (OpenSUSE Leap 42.1), on the same machine, with the same hard drive. I've added this entry
UUID=F474B7AA74B76DCC /home/craig/MediaDrive ntfs-3g defaults,nofail,permissions,auto 0 1
to /etc/fstab
to mount the drive in my home directory.
I get it mounted to /home/craig/MediaDrive
.
The first weird thing is that ls -l
shows
d--------- 1 root root 12288 May 16 18:33 MediaDrive
So then I go to set ownership and change permissions with
sudo chown -R 777 /home/craig/MediaDrive
and I get the error:
chmod: changing permissions of ‘MediaDrive’: No space left on device
The thing is, there's plenty of space left. There's over 300GB of space left. I'm pasting my df -h
output below.
Filesystem Size Used Avail Use% Mounted on
/dev/sde1 1.9T 1.6T 316G 84% /home/craig/MediaDrive
It doesn't seem to be an inode issue; here is the output of df -i
:
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sde1 331060948 4846 331056102 1% /home/craig/MediaDrive
Again, this permissions issue only exists with the drive when I try to mount it in that location (in my home directory); otherwise when it's just at the default run/media/craig/My Passport location, it's fine. Reads, writes, etc.
How can I get my drive to mount successfully in my home directory?
permissions mount opensuse fstab chmod
permissions mount opensuse fstab chmod
edited May 17 '16 at 2:47
G-Man
13.7k93870
13.7k93870
asked May 17 '16 at 1:37
user2223059user2223059
1242
1242
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
It might help if you show the exactchmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
May 17 '16 at 2:03
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
1
can you give fulldf -lh
output including OS partitions not just your mounted disk? (yes, update your question)
– cuongnv23
May 17 '16 at 2:40
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17
|
show 3 more comments
It might help if you show the exactchmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
May 17 '16 at 2:03
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
1
can you give fulldf -lh
output including OS partitions not just your mounted disk? (yes, update your question)
– cuongnv23
May 17 '16 at 2:40
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17
It might help if you show the exact
chmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
May 17 '16 at 2:03
It might help if you show the exact
chmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
May 17 '16 at 2:03
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
1
1
can you give full
df -lh
output including OS partitions not just your mounted disk? (yes, update your question)– cuongnv23
May 17 '16 at 2:40
can you give full
df -lh
output including OS partitions not just your mounted disk? (yes, update your question)– cuongnv23
May 17 '16 at 2:40
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17
|
show 3 more comments
1 Answer
1
active
oldest
votes
Umount it, and make the mountpoint more permissive. Sometimes this is relevant... maybe it is in your case because using a different mountpoint has different results. Compare the permissions on those 2 directories for more info.
Check man ntfs-3g
for options, and use them, for example:
mount -o fmask=664,dmask=775,uid=1000,gid=1000 /dev/sde1 /home/craig/MediaDrive
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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/3.0/"u003ecc by-sa 3.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%2funix.stackexchange.com%2fquestions%2f283551%2flinux-changing-permissions-no-space-left-on-device%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Umount it, and make the mountpoint more permissive. Sometimes this is relevant... maybe it is in your case because using a different mountpoint has different results. Compare the permissions on those 2 directories for more info.
Check man ntfs-3g
for options, and use them, for example:
mount -o fmask=664,dmask=775,uid=1000,gid=1000 /dev/sde1 /home/craig/MediaDrive
add a comment |
Umount it, and make the mountpoint more permissive. Sometimes this is relevant... maybe it is in your case because using a different mountpoint has different results. Compare the permissions on those 2 directories for more info.
Check man ntfs-3g
for options, and use them, for example:
mount -o fmask=664,dmask=775,uid=1000,gid=1000 /dev/sde1 /home/craig/MediaDrive
add a comment |
Umount it, and make the mountpoint more permissive. Sometimes this is relevant... maybe it is in your case because using a different mountpoint has different results. Compare the permissions on those 2 directories for more info.
Check man ntfs-3g
for options, and use them, for example:
mount -o fmask=664,dmask=775,uid=1000,gid=1000 /dev/sde1 /home/craig/MediaDrive
Umount it, and make the mountpoint more permissive. Sometimes this is relevant... maybe it is in your case because using a different mountpoint has different results. Compare the permissions on those 2 directories for more info.
Check man ntfs-3g
for options, and use them, for example:
mount -o fmask=664,dmask=775,uid=1000,gid=1000 /dev/sde1 /home/craig/MediaDrive
answered Jul 12 '16 at 11:01
PeterPeter
89468
89468
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f283551%2flinux-changing-permissions-no-space-left-on-device%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
-chmod, fstab, mount, opensuse, permissions
It might help if you show the exact
chmod
command that you're using. Also, you talk about two different ways of mounting your drive; please describe this. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
May 17 '16 at 2:03
I added the information you asked for. Thanks.
– user2223059
May 17 '16 at 2:16
1
can you give full
df -lh
output including OS partitions not just your mounted disk? (yes, update your question)– cuongnv23
May 17 '16 at 2:40
@user2223059: I put your question into a blender and put the pieces back together in what seems to me to be a more sequential narrative. Please check it and fix any errors that I made. And now, I’m afraid that I probably won’t be able to help you any further; I’m stumped. Good luck.
– G-Man
May 17 '16 at 2:53
Thanks for the help. Honestly, I'm at the point where if no one comes up with anything, after work tomorrow I'm going to just wipe and reinstall from scratch. Maybe there's something weird and random that got screwed up at some point? who knows.
– user2223059
May 17 '16 at 3:17