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;








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







            -chmod, fstab, mount, opensuse, permissions

            Popular posts from this blog

            Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

            Frič See also Navigation menuinternal link

            Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant