How to change permissions on mounted windows share? The Next CEO of Stack OverflowCannot view...

How to avoid supervisors with prejudiced views?

Novel about a guy who is possessed by the divine essence and the world ends?

How to make a variable always equal to the result of some calculations?

Complex fractions

Make solar eclipses exceedingly rare, but still have new moons

Why do we use the plural of movies in this phrase "We went to the movies last night."?

How to count occurrences of text in a file?

Which tube will fit a -(700 x 25c) wheel?

Why has the US not been more assertive in confronting Russia in recent years?

Why do remote companies require working in the US?

What is ( CFMCC ) on ILS approach chart?

Giving the same color to different shapefiles in QGIS

Won the lottery - how do I keep the money?

In excess I'm lethal

Return the Closest Prime Number

multiple labels for a single equation

If the heap is initialized for security, then why is the stack uninitialized?

Written every which way

If a black hole is created from light, can this black hole then move at speed of light?

Do I need to enable Dev Hub in my PROD Org?

What flight has the highest ratio of time difference to flight time?

FBX seems to be empty when imported into Blender

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

Unreliable Magic - Is it worth it?



How to change permissions on mounted windows share?



The Next CEO of Stack OverflowCannot view mounted drive contents in Sonarr/RadarrUbuntu desktop unable to mount sharewindows mapped folder accessWhy can't root access my CIFS mounts?Unable to Write to Mount Applied by fstabFiles in fstab mounted CIFS folders are not available automaticallyFstab after reboot does not workmount drive at boot attached to asus wireless routerPermissions issue with fstab CIFS mount but not when using mount commandWrite Permissions denied to LAN mounted driveChange permissions of windows mounted folder from linux












5















I have mounted a windows share, But only root have write permissions..



I need to change that to my user so my programs can download and shave stuff to my windows share.



commands I've have used to mount:



sudo mkdir /mnt/ussenterprise
sudo gedit /etc/fstab
//servername/sharename /mnt/ussenterprise cifs username=msusername,password=mspassword,iocharset=utf8,sec=ntlm 0 0
sudo mount -a


yes I have read access to everything in the mounted share, but only root gave write..



I've tried: sudo chown user:user /mnt/ussenterprise, and sudo chown user /mnt/ussenterprise



I get; permissions denied



what to do?










share|improve this question

























  • Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

    – Haplo
    Dec 28 '17 at 18:09
















5















I have mounted a windows share, But only root have write permissions..



I need to change that to my user so my programs can download and shave stuff to my windows share.



commands I've have used to mount:



sudo mkdir /mnt/ussenterprise
sudo gedit /etc/fstab
//servername/sharename /mnt/ussenterprise cifs username=msusername,password=mspassword,iocharset=utf8,sec=ntlm 0 0
sudo mount -a


yes I have read access to everything in the mounted share, but only root gave write..



I've tried: sudo chown user:user /mnt/ussenterprise, and sudo chown user /mnt/ussenterprise



I get; permissions denied



what to do?










share|improve this question

























  • Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

    – Haplo
    Dec 28 '17 at 18:09














5












5








5


3






I have mounted a windows share, But only root have write permissions..



I need to change that to my user so my programs can download and shave stuff to my windows share.



commands I've have used to mount:



sudo mkdir /mnt/ussenterprise
sudo gedit /etc/fstab
//servername/sharename /mnt/ussenterprise cifs username=msusername,password=mspassword,iocharset=utf8,sec=ntlm 0 0
sudo mount -a


yes I have read access to everything in the mounted share, but only root gave write..



I've tried: sudo chown user:user /mnt/ussenterprise, and sudo chown user /mnt/ussenterprise



I get; permissions denied



what to do?










share|improve this question
















I have mounted a windows share, But only root have write permissions..



I need to change that to my user so my programs can download and shave stuff to my windows share.



commands I've have used to mount:



sudo mkdir /mnt/ussenterprise
sudo gedit /etc/fstab
//servername/sharename /mnt/ussenterprise cifs username=msusername,password=mspassword,iocharset=utf8,sec=ntlm 0 0
sudo mount -a


yes I have read access to everything in the mounted share, but only root gave write..



I've tried: sudo chown user:user /mnt/ussenterprise, and sudo chown user /mnt/ussenterprise



I get; permissions denied



what to do?







mount permissions samba fstab






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 min ago







starR

















asked Dec 20 '13 at 16:44









starRstarR

1202311




1202311













  • Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

    – Haplo
    Dec 28 '17 at 18:09



















  • Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

    – Haplo
    Dec 28 '17 at 18:09

















Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

– Haplo
Dec 28 '17 at 18:09





Maybe this saves some time to people...I made the changes mentioned above, and also added the uid and gid params in the answer below, but it wasn't working...until I unmounted and mounted again the share

– Haplo
Dec 28 '17 at 18:09










5 Answers
5






active

oldest

votes


















5














I changed my /etc/fstab to:



//server/share  /media/share  cifs  username=msusername,password=mspassword,uid=1000,gid=1000  0  0





share|improve this answer

































    1














    Try these options:



    username=msusername,password=mspassword,iocharset=utf8,sec=ntlm,nosetuids,noperm


    (definitions of noperm and nosetuids are found in the mount.cifs manpage)



    Also, think about using a credentials file instead of having your name/pw in the clear:



    credentials=/home/<user>/.smbcredentials


    since fstab can be read by all.






    share|improve this answer



















    • 2





      did not change anything, stil only read

      – starR
      Dec 20 '13 at 17:42



















    1














    Your entry in fstab is creating the mount point in /mnt. Using the /mnt directory should only work if the drive is a local volume rather than a network share or removable device.



    Edit your fstab entry to:



    //servername/sharename  /media/ussenterprise  cifs  username=msusername,password=mspassword,umask=002,uid=1000,gid=1000,iocharset=utf8,sec=ntlm  0  0


    This assumes that your uid and gid are 1000 which is the first default user and group IDs. Then use:



    sudo umount /media/ussenterprise
    sudo mkdir /media/ussenterprise
    sudo chown einar:einar /media/ussenterprise
    sudo chmod 755 /media/ussenterprise
    mount -a


    This should mount the share with your user ID and permissions set to read/write.






    share|improve this answer


























    • sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

      – starR
      Dec 20 '13 at 17:26











    • Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

      – douggro
      Dec 20 '13 at 17:33











    • Still only have read :(

      – starR
      Dec 20 '13 at 17:40











    • when i run the mount command, i lose all permissions to root

      – starR
      Dec 20 '13 at 17:43













    • What is the output of ls -l /media ?

      – douggro
      Dec 20 '13 at 17:44





















    1














    I hope you found out your answer by the way I think this issue is not related to samba option, I think this is for ntfs permission level.
    In windows 10 you can right click on folder which you want to share between windows and linux base system and follow this path:




    1. Go to properties

    2. Click on sharing tab

    3. Go to advanced sharing

    4. Go to permission and then give full control to everyone user






    share|improve this answer


























    • I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

      – starR
      Feb 13 '16 at 0:09



















    0














    This is what worked for me:



    https://wiki.ubuntu.com/MountWindowsSharesPermanently



    The section: 'Mount password protected network folders' got me READ access.
    Then, adding:
    The Section: 'Special permissions' got me WRITE and DELETE access.



    My system info:
    - Laptop: Kubuntu 16.04 (client)
    - File server: Windows Vista (hosting shares)
    - Domain controller: Windows Server 2003 (Active Directory, DNS, etc)






    share|improve this answer
























      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%2f393563%2fhow-to-change-permissions-on-mounted-windows-share%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      5














      I changed my /etc/fstab to:



      //server/share  /media/share  cifs  username=msusername,password=mspassword,uid=1000,gid=1000  0  0





      share|improve this answer






























        5














        I changed my /etc/fstab to:



        //server/share  /media/share  cifs  username=msusername,password=mspassword,uid=1000,gid=1000  0  0





        share|improve this answer




























          5












          5








          5







          I changed my /etc/fstab to:



          //server/share  /media/share  cifs  username=msusername,password=mspassword,uid=1000,gid=1000  0  0





          share|improve this answer















          I changed my /etc/fstab to:



          //server/share  /media/share  cifs  username=msusername,password=mspassword,uid=1000,gid=1000  0  0






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 23 '18 at 4:21









          muru

          1




          1










          answered Apr 10 '14 at 13:28









          starRstarR

          1202311




          1202311

























              1














              Try these options:



              username=msusername,password=mspassword,iocharset=utf8,sec=ntlm,nosetuids,noperm


              (definitions of noperm and nosetuids are found in the mount.cifs manpage)



              Also, think about using a credentials file instead of having your name/pw in the clear:



              credentials=/home/<user>/.smbcredentials


              since fstab can be read by all.






              share|improve this answer



















              • 2





                did not change anything, stil only read

                – starR
                Dec 20 '13 at 17:42
















              1














              Try these options:



              username=msusername,password=mspassword,iocharset=utf8,sec=ntlm,nosetuids,noperm


              (definitions of noperm and nosetuids are found in the mount.cifs manpage)



              Also, think about using a credentials file instead of having your name/pw in the clear:



              credentials=/home/<user>/.smbcredentials


              since fstab can be read by all.






              share|improve this answer



















              • 2





                did not change anything, stil only read

                – starR
                Dec 20 '13 at 17:42














              1












              1








              1







              Try these options:



              username=msusername,password=mspassword,iocharset=utf8,sec=ntlm,nosetuids,noperm


              (definitions of noperm and nosetuids are found in the mount.cifs manpage)



              Also, think about using a credentials file instead of having your name/pw in the clear:



              credentials=/home/<user>/.smbcredentials


              since fstab can be read by all.






              share|improve this answer













              Try these options:



              username=msusername,password=mspassword,iocharset=utf8,sec=ntlm,nosetuids,noperm


              (definitions of noperm and nosetuids are found in the mount.cifs manpage)



              Also, think about using a credentials file instead of having your name/pw in the clear:



              credentials=/home/<user>/.smbcredentials


              since fstab can be read by all.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Dec 20 '13 at 17:07









              msbrownmsbrown

              191




              191








              • 2





                did not change anything, stil only read

                – starR
                Dec 20 '13 at 17:42














              • 2





                did not change anything, stil only read

                – starR
                Dec 20 '13 at 17:42








              2




              2





              did not change anything, stil only read

              – starR
              Dec 20 '13 at 17:42





              did not change anything, stil only read

              – starR
              Dec 20 '13 at 17:42











              1














              Your entry in fstab is creating the mount point in /mnt. Using the /mnt directory should only work if the drive is a local volume rather than a network share or removable device.



              Edit your fstab entry to:



              //servername/sharename  /media/ussenterprise  cifs  username=msusername,password=mspassword,umask=002,uid=1000,gid=1000,iocharset=utf8,sec=ntlm  0  0


              This assumes that your uid and gid are 1000 which is the first default user and group IDs. Then use:



              sudo umount /media/ussenterprise
              sudo mkdir /media/ussenterprise
              sudo chown einar:einar /media/ussenterprise
              sudo chmod 755 /media/ussenterprise
              mount -a


              This should mount the share with your user ID and permissions set to read/write.






              share|improve this answer


























              • sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

                – starR
                Dec 20 '13 at 17:26











              • Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

                – douggro
                Dec 20 '13 at 17:33











              • Still only have read :(

                – starR
                Dec 20 '13 at 17:40











              • when i run the mount command, i lose all permissions to root

                – starR
                Dec 20 '13 at 17:43













              • What is the output of ls -l /media ?

                – douggro
                Dec 20 '13 at 17:44


















              1














              Your entry in fstab is creating the mount point in /mnt. Using the /mnt directory should only work if the drive is a local volume rather than a network share or removable device.



              Edit your fstab entry to:



              //servername/sharename  /media/ussenterprise  cifs  username=msusername,password=mspassword,umask=002,uid=1000,gid=1000,iocharset=utf8,sec=ntlm  0  0


              This assumes that your uid and gid are 1000 which is the first default user and group IDs. Then use:



              sudo umount /media/ussenterprise
              sudo mkdir /media/ussenterprise
              sudo chown einar:einar /media/ussenterprise
              sudo chmod 755 /media/ussenterprise
              mount -a


              This should mount the share with your user ID and permissions set to read/write.






              share|improve this answer


























              • sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

                – starR
                Dec 20 '13 at 17:26











              • Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

                – douggro
                Dec 20 '13 at 17:33











              • Still only have read :(

                – starR
                Dec 20 '13 at 17:40











              • when i run the mount command, i lose all permissions to root

                – starR
                Dec 20 '13 at 17:43













              • What is the output of ls -l /media ?

                – douggro
                Dec 20 '13 at 17:44
















              1












              1








              1







              Your entry in fstab is creating the mount point in /mnt. Using the /mnt directory should only work if the drive is a local volume rather than a network share or removable device.



              Edit your fstab entry to:



              //servername/sharename  /media/ussenterprise  cifs  username=msusername,password=mspassword,umask=002,uid=1000,gid=1000,iocharset=utf8,sec=ntlm  0  0


              This assumes that your uid and gid are 1000 which is the first default user and group IDs. Then use:



              sudo umount /media/ussenterprise
              sudo mkdir /media/ussenterprise
              sudo chown einar:einar /media/ussenterprise
              sudo chmod 755 /media/ussenterprise
              mount -a


              This should mount the share with your user ID and permissions set to read/write.






              share|improve this answer















              Your entry in fstab is creating the mount point in /mnt. Using the /mnt directory should only work if the drive is a local volume rather than a network share or removable device.



              Edit your fstab entry to:



              //servername/sharename  /media/ussenterprise  cifs  username=msusername,password=mspassword,umask=002,uid=1000,gid=1000,iocharset=utf8,sec=ntlm  0  0


              This assumes that your uid and gid are 1000 which is the first default user and group IDs. Then use:



              sudo umount /media/ussenterprise
              sudo mkdir /media/ussenterprise
              sudo chown einar:einar /media/ussenterprise
              sudo chmod 755 /media/ussenterprise
              mount -a


              This should mount the share with your user ID and permissions set to read/write.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Feb 11 '14 at 14:02

























              answered Dec 20 '13 at 17:18









              douggrodouggro

              2,11131222




              2,11131222













              • sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

                – starR
                Dec 20 '13 at 17:26











              • Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

                – douggro
                Dec 20 '13 at 17:33











              • Still only have read :(

                – starR
                Dec 20 '13 at 17:40











              • when i run the mount command, i lose all permissions to root

                – starR
                Dec 20 '13 at 17:43













              • What is the output of ls -l /media ?

                – douggro
                Dec 20 '13 at 17:44





















              • sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

                – starR
                Dec 20 '13 at 17:26











              • Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

                – douggro
                Dec 20 '13 at 17:33











              • Still only have read :(

                – starR
                Dec 20 '13 at 17:40











              • when i run the mount command, i lose all permissions to root

                – starR
                Dec 20 '13 at 17:43













              • What is the output of ls -l /media ?

                – douggro
                Dec 20 '13 at 17:44



















              sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

              – starR
              Dec 20 '13 at 17:26





              sorry the entry in fstab was only a copy/paste of a guid, i have used "mnt/ussenterprise" ..

              – starR
              Dec 20 '13 at 17:26













              Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

              – douggro
              Dec 20 '13 at 17:33





              Change your fstab to make the mount in /media and run the commands I listed. I have a network cifs share mounted exactly like this.

              – douggro
              Dec 20 '13 at 17:33













              Still only have read :(

              – starR
              Dec 20 '13 at 17:40





              Still only have read :(

              – starR
              Dec 20 '13 at 17:40













              when i run the mount command, i lose all permissions to root

              – starR
              Dec 20 '13 at 17:43







              when i run the mount command, i lose all permissions to root

              – starR
              Dec 20 '13 at 17:43















              What is the output of ls -l /media ?

              – douggro
              Dec 20 '13 at 17:44







              What is the output of ls -l /media ?

              – douggro
              Dec 20 '13 at 17:44













              1














              I hope you found out your answer by the way I think this issue is not related to samba option, I think this is for ntfs permission level.
              In windows 10 you can right click on folder which you want to share between windows and linux base system and follow this path:




              1. Go to properties

              2. Click on sharing tab

              3. Go to advanced sharing

              4. Go to permission and then give full control to everyone user






              share|improve this answer


























              • I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

                – starR
                Feb 13 '16 at 0:09
















              1














              I hope you found out your answer by the way I think this issue is not related to samba option, I think this is for ntfs permission level.
              In windows 10 you can right click on folder which you want to share between windows and linux base system and follow this path:




              1. Go to properties

              2. Click on sharing tab

              3. Go to advanced sharing

              4. Go to permission and then give full control to everyone user






              share|improve this answer


























              • I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

                – starR
                Feb 13 '16 at 0:09














              1












              1








              1







              I hope you found out your answer by the way I think this issue is not related to samba option, I think this is for ntfs permission level.
              In windows 10 you can right click on folder which you want to share between windows and linux base system and follow this path:




              1. Go to properties

              2. Click on sharing tab

              3. Go to advanced sharing

              4. Go to permission and then give full control to everyone user






              share|improve this answer















              I hope you found out your answer by the way I think this issue is not related to samba option, I think this is for ntfs permission level.
              In windows 10 you can right click on folder which you want to share between windows and linux base system and follow this path:




              1. Go to properties

              2. Click on sharing tab

              3. Go to advanced sharing

              4. Go to permission and then give full control to everyone user







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Feb 12 '16 at 2:38









              andrew.46

              22.2k1470150




              22.2k1470150










              answered Feb 11 '16 at 15:52









              Ehsan AhmadiEhsan Ahmadi

              211




              211













              • I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

                – starR
                Feb 13 '16 at 0:09



















              • I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

                – starR
                Feb 13 '16 at 0:09

















              I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

              – starR
              Feb 13 '16 at 0:09





              I found the answer as writen above "//server/share /media/share cifs username=msusername,password=mspassword,uid=1000,gid=1000 0 0"

              – starR
              Feb 13 '16 at 0:09











              0














              This is what worked for me:



              https://wiki.ubuntu.com/MountWindowsSharesPermanently



              The section: 'Mount password protected network folders' got me READ access.
              Then, adding:
              The Section: 'Special permissions' got me WRITE and DELETE access.



              My system info:
              - Laptop: Kubuntu 16.04 (client)
              - File server: Windows Vista (hosting shares)
              - Domain controller: Windows Server 2003 (Active Directory, DNS, etc)






              share|improve this answer




























                0














                This is what worked for me:



                https://wiki.ubuntu.com/MountWindowsSharesPermanently



                The section: 'Mount password protected network folders' got me READ access.
                Then, adding:
                The Section: 'Special permissions' got me WRITE and DELETE access.



                My system info:
                - Laptop: Kubuntu 16.04 (client)
                - File server: Windows Vista (hosting shares)
                - Domain controller: Windows Server 2003 (Active Directory, DNS, etc)






                share|improve this answer


























                  0












                  0








                  0







                  This is what worked for me:



                  https://wiki.ubuntu.com/MountWindowsSharesPermanently



                  The section: 'Mount password protected network folders' got me READ access.
                  Then, adding:
                  The Section: 'Special permissions' got me WRITE and DELETE access.



                  My system info:
                  - Laptop: Kubuntu 16.04 (client)
                  - File server: Windows Vista (hosting shares)
                  - Domain controller: Windows Server 2003 (Active Directory, DNS, etc)






                  share|improve this answer













                  This is what worked for me:



                  https://wiki.ubuntu.com/MountWindowsSharesPermanently



                  The section: 'Mount password protected network folders' got me READ access.
                  Then, adding:
                  The Section: 'Special permissions' got me WRITE and DELETE access.



                  My system info:
                  - Laptop: Kubuntu 16.04 (client)
                  - File server: Windows Vista (hosting shares)
                  - Domain controller: Windows Server 2003 (Active Directory, DNS, etc)







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 26 '17 at 17:34









                  guestguest

                  1




                  1






























                      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%2f393563%2fhow-to-change-permissions-on-mounted-windows-share%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

                      Is there a lightweight tool to crop images quickly?Cropping Images using Command Line Tools OnlyHow to crop...

                      Unit packagekit.service is masked Announcing the arrival of Valued Associate #679: Cesar...

                      List of shipwrecks in 1808...