Can't create a folder on my newly created partition












0















If I have a partition: /dev/sda3 how do I take ownership so that I can create folders?



I tried:



sudo chown -R chris:chris /dev/sda3
sudo chmod -R 755 /dev/sda3



but when I right click within the folder 'Create new folder' is still greyed out?



Thanks for any assistance.










share|improve this question



























    0















    If I have a partition: /dev/sda3 how do I take ownership so that I can create folders?



    I tried:



    sudo chown -R chris:chris /dev/sda3
    sudo chmod -R 755 /dev/sda3



    but when I right click within the folder 'Create new folder' is still greyed out?



    Thanks for any assistance.










    share|improve this question

























      0












      0








      0








      If I have a partition: /dev/sda3 how do I take ownership so that I can create folders?



      I tried:



      sudo chown -R chris:chris /dev/sda3
      sudo chmod -R 755 /dev/sda3



      but when I right click within the folder 'Create new folder' is still greyed out?



      Thanks for any assistance.










      share|improve this question














      If I have a partition: /dev/sda3 how do I take ownership so that I can create folders?



      I tried:



      sudo chown -R chris:chris /dev/sda3
      sudo chmod -R 755 /dev/sda3



      but when I right click within the folder 'Create new folder' is still greyed out?



      Thanks for any assistance.







      permissions






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 8 '13 at 21:42









      ChrisChris

      614




      614






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You can not read/write directly to block devices--/dev/sd? devices.



          You need to format and mount partitions.



          Ubuntu automounts most partions under the /media folder with a GUID mount point.



          https://help.ubuntu.com/community/HowtoPartition






          share|improve this answer


























          • I have mounted the partition already. I want to copy data into the partition.

            – Chris
            Dec 8 '13 at 21:57











          • What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

            – David
            Dec 8 '13 at 22:04













          • /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

            – Chris
            Dec 8 '13 at 22:06











          • So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

            – Chris
            Dec 8 '13 at 22:07













          • You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

            – David
            Dec 8 '13 at 22:09











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


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f388061%2fcant-create-a-folder-on-my-newly-created-partition%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














          You can not read/write directly to block devices--/dev/sd? devices.



          You need to format and mount partitions.



          Ubuntu automounts most partions under the /media folder with a GUID mount point.



          https://help.ubuntu.com/community/HowtoPartition






          share|improve this answer


























          • I have mounted the partition already. I want to copy data into the partition.

            – Chris
            Dec 8 '13 at 21:57











          • What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

            – David
            Dec 8 '13 at 22:04













          • /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

            – Chris
            Dec 8 '13 at 22:06











          • So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

            – Chris
            Dec 8 '13 at 22:07













          • You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

            – David
            Dec 8 '13 at 22:09
















          0














          You can not read/write directly to block devices--/dev/sd? devices.



          You need to format and mount partitions.



          Ubuntu automounts most partions under the /media folder with a GUID mount point.



          https://help.ubuntu.com/community/HowtoPartition






          share|improve this answer


























          • I have mounted the partition already. I want to copy data into the partition.

            – Chris
            Dec 8 '13 at 21:57











          • What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

            – David
            Dec 8 '13 at 22:04













          • /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

            – Chris
            Dec 8 '13 at 22:06











          • So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

            – Chris
            Dec 8 '13 at 22:07













          • You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

            – David
            Dec 8 '13 at 22:09














          0












          0








          0







          You can not read/write directly to block devices--/dev/sd? devices.



          You need to format and mount partitions.



          Ubuntu automounts most partions under the /media folder with a GUID mount point.



          https://help.ubuntu.com/community/HowtoPartition






          share|improve this answer















          You can not read/write directly to block devices--/dev/sd? devices.



          You need to format and mount partitions.



          Ubuntu automounts most partions under the /media folder with a GUID mount point.



          https://help.ubuntu.com/community/HowtoPartition







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Dec 9 '13 at 0:08

























          answered Dec 8 '13 at 21:54









          DavidDavid

          1,75911633




          1,75911633













          • I have mounted the partition already. I want to copy data into the partition.

            – Chris
            Dec 8 '13 at 21:57











          • What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

            – David
            Dec 8 '13 at 22:04













          • /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

            – Chris
            Dec 8 '13 at 22:06











          • So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

            – Chris
            Dec 8 '13 at 22:07













          • You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

            – David
            Dec 8 '13 at 22:09



















          • I have mounted the partition already. I want to copy data into the partition.

            – Chris
            Dec 8 '13 at 21:57











          • What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

            – David
            Dec 8 '13 at 22:04













          • /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

            – Chris
            Dec 8 '13 at 22:06











          • So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

            – Chris
            Dec 8 '13 at 22:07













          • You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

            – David
            Dec 8 '13 at 22:09

















          I have mounted the partition already. I want to copy data into the partition.

          – Chris
          Dec 8 '13 at 21:57





          I have mounted the partition already. I want to copy data into the partition.

          – Chris
          Dec 8 '13 at 21:57













          What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

          – David
          Dec 8 '13 at 22:04







          What is the mount point? Type mount from your command prompt, and if you have mounted the partition, it will say something like /dev/sda5 on /some/other/folder type ext4 (rw,errors=remount-ro) The /some/other/folder is where you need to change the permissions.

          – David
          Dec 8 '13 at 22:04















          /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

          – Chris
          Dec 8 '13 at 22:06





          /dev/sda3 on /media/0c997a25-85ee-4190-8d14-daef8e29dea9 type ext2 (rw,nosuid,nodev,uhelper=udisks)

          – Chris
          Dec 8 '13 at 22:06













          So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

          – Chris
          Dec 8 '13 at 22:07







          So i should try: Sudo chown -R chris:chris /media/0c997a25-85ee-4190-8d14-daef8e29dea9 sudo chmod -R 755 /media/0c997a25-85ee-4190-8d14-daef8e29dea9?

          – Chris
          Dec 8 '13 at 22:07















          You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

          – David
          Dec 8 '13 at 22:09





          You need to access the partition from /media/0c997a25-85ee-4190-8d14-daef8e29dea9 It might appear as something nicer on your desktop.

          – David
          Dec 8 '13 at 22:09


















          draft saved

          draft discarded




















































          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%2f388061%2fcant-create-a-folder-on-my-newly-created-partition%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

          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

          Mangá

           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕