Cannot change permission to external hard drive ubuntu 18.04Mount USB drive with write permissions for...

555 timer FM transmitter

Does tea made with boiling water cool faster than tea made with boiled (but still hot) water?

Initiative: Do I lose my attack/action if my target moves or dies before my turn in combat?

Is there really no use for MD5 anymore?

Critique of timeline aesthetic

How to not starve gigantic beasts

Like totally amazing interchangeable sister outfits II: The Revenge

Which big number is bigger?

Classification of surfaces

Minor Revision with suggestion of an alternative proof by reviewer

How do I reattach a shelf to the wall when it ripped out of the wall?

How to have a sharp product image?

How does Captain America channel this power?

On The Origin of Dissonant Chords

What is causing the white spot to appear in some of my pictures

Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?

Why does nature favour the Laplacian?

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?

How can I practically buy stocks?

Can we say “you can pay when the order gets ready”?

Can SQL Server create collisions in system generated constraint names?

Checks user level and limit the data before saving it to mongoDB

What is the most expensive material in the world that could be used to create Pun-Pun's lute?

What happened to Captain America in Endgame?



Cannot change permission to external hard drive ubuntu 18.04


Mount USB drive with write permissions for everyone or specific userChanging file permissions on USB external hard driveExternal hard drive not allowing permissionChange owner of internal hard drive partition from root to userMounting external hard drive in 11.10Mounting Second Hard Drive in Ubuntu 11.10Auto mount & Permissions on a new hard driveUnable to Use External Hard Drive (NTFS Formatted)unable to change file permissions on external hard drive, 14.04Change owner of external hard drive partition from root to userHow can I make My external hard drive writable in ubuntu 18.04?Setting NTFS partition permissions for external hard driveRead/Write permission of 2nd hard drive






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I know this question has been asked before, but I cannot find a solution for ubuntu 18.04



I have an external hard drive (FAT32) that had a default name with spaces that was making my life hell for scripting. So I manually changed the Mount point to "/media/$user/Ext1TB" but now I do not have write access to the disk and cannot save or modify the content. It used to work fine previously



Things I have tried:



sudo chown -R $USER:$USER path/to/folder
gksu nautilus (doesn't work on 18.04?)
sudo chmod -R 777 /<folder name or path>


changing permissions through sudo nautilus (works but does not stay like that)



So I am a bit out of ideas: Any other suggestion that doesn't involve formatting?



I have already looked at the following posts:
Changing file permissions on USB external hard drive
External hard drive not allowing permission



Edit:
Thanks to guiverc
now I understand the problem with FAT32 permissions. I have tried the following with no result:



sudo mount /dev/sda1 /media/$USER/Ext1TB


should I add the "-w" ? The help says it is implicit.Can somebody help with the mount call?



From what I understand of the post suggested to make it permanent I have to add or modify a line in fstab similar to this:
UUID=8C52-C1CD /home/storage auto user,umask=000,utf8,auto 0 0



But I have no idea on how to build the line, find the correct UUID number and set the correct options. Any suggestion with that?










share|improve this question









New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

    – guiverc
    13 hours ago






  • 2





    Possible duplicate of Mount USB drive with write permissions for everyone or specific user

    – guiverc
    13 hours ago











  • @guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

    – ciskoh
    12 hours ago











  • should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

    – tatsu
    12 hours ago











  • Thanks @tatsu that worked

    – ciskoh
    11 hours ago


















0















I know this question has been asked before, but I cannot find a solution for ubuntu 18.04



I have an external hard drive (FAT32) that had a default name with spaces that was making my life hell for scripting. So I manually changed the Mount point to "/media/$user/Ext1TB" but now I do not have write access to the disk and cannot save or modify the content. It used to work fine previously



Things I have tried:



sudo chown -R $USER:$USER path/to/folder
gksu nautilus (doesn't work on 18.04?)
sudo chmod -R 777 /<folder name or path>


changing permissions through sudo nautilus (works but does not stay like that)



So I am a bit out of ideas: Any other suggestion that doesn't involve formatting?



I have already looked at the following posts:
Changing file permissions on USB external hard drive
External hard drive not allowing permission



Edit:
Thanks to guiverc
now I understand the problem with FAT32 permissions. I have tried the following with no result:



sudo mount /dev/sda1 /media/$USER/Ext1TB


should I add the "-w" ? The help says it is implicit.Can somebody help with the mount call?



From what I understand of the post suggested to make it permanent I have to add or modify a line in fstab similar to this:
UUID=8C52-C1CD /home/storage auto user,umask=000,utf8,auto 0 0



But I have no idea on how to build the line, find the correct UUID number and set the correct options. Any suggestion with that?










share|improve this question









New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

    – guiverc
    13 hours ago






  • 2





    Possible duplicate of Mount USB drive with write permissions for everyone or specific user

    – guiverc
    13 hours ago











  • @guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

    – ciskoh
    12 hours ago











  • should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

    – tatsu
    12 hours ago











  • Thanks @tatsu that worked

    – ciskoh
    11 hours ago














0












0








0








I know this question has been asked before, but I cannot find a solution for ubuntu 18.04



I have an external hard drive (FAT32) that had a default name with spaces that was making my life hell for scripting. So I manually changed the Mount point to "/media/$user/Ext1TB" but now I do not have write access to the disk and cannot save or modify the content. It used to work fine previously



Things I have tried:



sudo chown -R $USER:$USER path/to/folder
gksu nautilus (doesn't work on 18.04?)
sudo chmod -R 777 /<folder name or path>


changing permissions through sudo nautilus (works but does not stay like that)



So I am a bit out of ideas: Any other suggestion that doesn't involve formatting?



I have already looked at the following posts:
Changing file permissions on USB external hard drive
External hard drive not allowing permission



Edit:
Thanks to guiverc
now I understand the problem with FAT32 permissions. I have tried the following with no result:



sudo mount /dev/sda1 /media/$USER/Ext1TB


should I add the "-w" ? The help says it is implicit.Can somebody help with the mount call?



From what I understand of the post suggested to make it permanent I have to add or modify a line in fstab similar to this:
UUID=8C52-C1CD /home/storage auto user,umask=000,utf8,auto 0 0



But I have no idea on how to build the line, find the correct UUID number and set the correct options. Any suggestion with that?










share|improve this question









New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I know this question has been asked before, but I cannot find a solution for ubuntu 18.04



I have an external hard drive (FAT32) that had a default name with spaces that was making my life hell for scripting. So I manually changed the Mount point to "/media/$user/Ext1TB" but now I do not have write access to the disk and cannot save or modify the content. It used to work fine previously



Things I have tried:



sudo chown -R $USER:$USER path/to/folder
gksu nautilus (doesn't work on 18.04?)
sudo chmod -R 777 /<folder name or path>


changing permissions through sudo nautilus (works but does not stay like that)



So I am a bit out of ideas: Any other suggestion that doesn't involve formatting?



I have already looked at the following posts:
Changing file permissions on USB external hard drive
External hard drive not allowing permission



Edit:
Thanks to guiverc
now I understand the problem with FAT32 permissions. I have tried the following with no result:



sudo mount /dev/sda1 /media/$USER/Ext1TB


should I add the "-w" ? The help says it is implicit.Can somebody help with the mount call?



From what I understand of the post suggested to make it permanent I have to add or modify a line in fstab similar to this:
UUID=8C52-C1CD /home/storage auto user,umask=000,utf8,auto 0 0



But I have no idea on how to build the line, find the correct UUID number and set the correct options. Any suggestion with that?







permissions mount hard-drive






share|improve this question









New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 12 hours ago







ciskoh













New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 15 hours ago









ciskohciskoh

11




11




New contributor




ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






ciskoh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

    – guiverc
    13 hours ago






  • 2





    Possible duplicate of Mount USB drive with write permissions for everyone or specific user

    – guiverc
    13 hours ago











  • @guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

    – ciskoh
    12 hours ago











  • should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

    – tatsu
    12 hours ago











  • Thanks @tatsu that worked

    – ciskoh
    11 hours ago














  • 1





    FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

    – guiverc
    13 hours ago






  • 2





    Possible duplicate of Mount USB drive with write permissions for everyone or specific user

    – guiverc
    13 hours ago











  • @guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

    – ciskoh
    12 hours ago











  • should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

    – tatsu
    12 hours ago











  • Thanks @tatsu that worked

    – ciskoh
    11 hours ago








1




1





FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

– guiverc
13 hours ago





FAT32 partitions don't include space to store posix/unix/linux file permission bits (+r +w +x etc) as it has different bits (/hid /sys /ro /arc) so the chmod cannot work. Your 'fix' is to mount (ie. mount with permissions you want; the new directory has different permissions to where you mounted it previously)

– guiverc
13 hours ago




2




2





Possible duplicate of Mount USB drive with write permissions for everyone or specific user

– guiverc
13 hours ago





Possible duplicate of Mount USB drive with write permissions for everyone or specific user

– guiverc
13 hours ago













@guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

– ciskoh
12 hours ago





@guiverc Indeed your suggestion seems fitting but it didn't work for me. please see the edit for details

– ciskoh
12 hours ago













should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

– tatsu
12 hours ago





should be sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000

– tatsu
12 hours ago













Thanks @tatsu that worked

– ciskoh
11 hours ago





Thanks @tatsu that worked

– ciskoh
11 hours ago










1 Answer
1






active

oldest

votes


















0














To mount your drive you must use the argument -o umask=000 this will mount the whole drive as write. since it is a FAT32 formatted drive this is how user rights work on it : they are set at mount so :



sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000


will solve your issue.






share|improve this answer
























  • the solution proposed works. Could you tell me how to make it permanent?

    – ciskoh
    8 hours ago











  • you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

    – tatsu
    5 hours ago












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


}
});






ciskoh is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1138317%2fcannot-change-permission-to-external-hard-drive-ubuntu-18-04%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














To mount your drive you must use the argument -o umask=000 this will mount the whole drive as write. since it is a FAT32 formatted drive this is how user rights work on it : they are set at mount so :



sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000


will solve your issue.






share|improve this answer
























  • the solution proposed works. Could you tell me how to make it permanent?

    – ciskoh
    8 hours ago











  • you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

    – tatsu
    5 hours ago
















0














To mount your drive you must use the argument -o umask=000 this will mount the whole drive as write. since it is a FAT32 formatted drive this is how user rights work on it : they are set at mount so :



sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000


will solve your issue.






share|improve this answer
























  • the solution proposed works. Could you tell me how to make it permanent?

    – ciskoh
    8 hours ago











  • you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

    – tatsu
    5 hours ago














0












0








0







To mount your drive you must use the argument -o umask=000 this will mount the whole drive as write. since it is a FAT32 formatted drive this is how user rights work on it : they are set at mount so :



sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000


will solve your issue.






share|improve this answer













To mount your drive you must use the argument -o umask=000 this will mount the whole drive as write. since it is a FAT32 formatted drive this is how user rights work on it : they are set at mount so :



sudo mount /dev/sda1 /media/$USER/Ext1TB -o umask=000


will solve your issue.







share|improve this answer












share|improve this answer



share|improve this answer










answered 11 hours ago









tatsutatsu

610737




610737













  • the solution proposed works. Could you tell me how to make it permanent?

    – ciskoh
    8 hours ago











  • you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

    – tatsu
    5 hours ago



















  • the solution proposed works. Could you tell me how to make it permanent?

    – ciskoh
    8 hours ago











  • you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

    – tatsu
    5 hours ago

















the solution proposed works. Could you tell me how to make it permanent?

– ciskoh
8 hours ago





the solution proposed works. Could you tell me how to make it permanent?

– ciskoh
8 hours ago













you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

– tatsu
5 hours ago





you could use DISKS, it's an installed app on your system. simply open it up, navigate to the partition you want to mount, turn off automounting (the default it no mount for a usb drive) and set the mount point and mount arguments like above or anything else that suits your needs

– tatsu
5 hours ago










ciskoh is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















ciskoh is a new contributor. Be nice, and check out our Code of Conduct.













ciskoh is a new contributor. Be nice, and check out our Code of Conduct.












ciskoh is a new contributor. Be nice, and check out our Code of Conduct.
















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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1138317%2fcannot-change-permission-to-external-hard-drive-ubuntu-18-04%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

Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...