Linux: Changing Permissions – No space left on device The 2019 Stack Overflow Developer...

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

One word riddle: Vowel in the middle

Can someone be penalized for an "unlawful" act if no penalty is specified?

Is bread bad for ducks?

Have you ever entered Singapore using a different passport or name?

Is "plugging out" electronic devices an American expression?

"as much details as you can remember"

Why is the Constellation's nose gear so long?

Do these rules for Critical Successes and Critical Failures seem fair?

Where to refill my bottle in India?

Right tool to dig six foot holes?

Identify boardgame from Big movie

Are spiders unable to hurt humans, especially very small spiders?

If a Druid sees an animal’s corpse, can they Wild Shape into that animal?

What is the closest word meaning "respect for time / mindful"

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

Why isn't airport relocation done gradually?

What did it mean to "align" a radio?

Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?

Apparent duplicates between Haynes service instructions and MOT

When should I buy a clipper card after flying to OAK?

Lightning Grid - Columns and Rows?

What is the most effective way of iterating a std::vector and why?

Falsification in Math vs Science



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;
}







4















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?










share|improve this question
















bumped to the homepage by Community yesterday


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 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


















4















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?










share|improve this question
















bumped to the homepage by Community yesterday


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 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














4












4








4








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 17 '16 at 2:47









G-Man

13.7k93770




13.7k93770










asked May 17 '16 at 1:37









user2223059user2223059

1242




1242





bumped to the homepage by Community yesterday


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 yesterday


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 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



















  • 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

















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










1 Answer
1






active

oldest

votes


















0














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





share|improve this answer
























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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





    share|improve this answer




























      0














      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





      share|improve this answer


























        0












        0








        0







        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





        share|improve this answer













        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






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 12 '16 at 11:01









        PeterPeter

        89468




        89468






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...