Mount Error 13 - Permission denied 8 (zenworks)

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












When i try to mount my share folder from windows 7 machine from network, this error occur me, any ideas how to solve them? My actual auto-running code below:



mkdir -p /mnt/zmg
mount -t cifs //10.20.30.1/zmg /mnt/zmg -o username=Provisorio/Administrator,password=zen,noserverino






share|improve this question






















  • I take it that Provisorio is the work group name and not an actual domain?
    – Raman Sailopal
    Nov 28 '17 at 15:38










  • Did you try sudo?
    – justinnoor.io
    Nov 28 '17 at 16:42










  • provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
    – firewallcj
    Nov 28 '17 at 22:53














up vote
1
down vote

favorite












When i try to mount my share folder from windows 7 machine from network, this error occur me, any ideas how to solve them? My actual auto-running code below:



mkdir -p /mnt/zmg
mount -t cifs //10.20.30.1/zmg /mnt/zmg -o username=Provisorio/Administrator,password=zen,noserverino






share|improve this question






















  • I take it that Provisorio is the work group name and not an actual domain?
    – Raman Sailopal
    Nov 28 '17 at 15:38










  • Did you try sudo?
    – justinnoor.io
    Nov 28 '17 at 16:42










  • provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
    – firewallcj
    Nov 28 '17 at 22:53












up vote
1
down vote

favorite









up vote
1
down vote

favorite











When i try to mount my share folder from windows 7 machine from network, this error occur me, any ideas how to solve them? My actual auto-running code below:



mkdir -p /mnt/zmg
mount -t cifs //10.20.30.1/zmg /mnt/zmg -o username=Provisorio/Administrator,password=zen,noserverino






share|improve this question














When i try to mount my share folder from windows 7 machine from network, this error occur me, any ideas how to solve them? My actual auto-running code below:



mkdir -p /mnt/zmg
mount -t cifs //10.20.30.1/zmg /mnt/zmg -o username=Provisorio/Administrator,password=zen,noserverino








share|improve this question













share|improve this question




share|improve this question








edited Nov 29 '17 at 11:16

























asked Nov 28 '17 at 15:12









firewallcj

169




169











  • I take it that Provisorio is the work group name and not an actual domain?
    – Raman Sailopal
    Nov 28 '17 at 15:38










  • Did you try sudo?
    – justinnoor.io
    Nov 28 '17 at 16:42










  • provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
    – firewallcj
    Nov 28 '17 at 22:53
















  • I take it that Provisorio is the work group name and not an actual domain?
    – Raman Sailopal
    Nov 28 '17 at 15:38










  • Did you try sudo?
    – justinnoor.io
    Nov 28 '17 at 16:42










  • provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
    – firewallcj
    Nov 28 '17 at 22:53















I take it that Provisorio is the work group name and not an actual domain?
– Raman Sailopal
Nov 28 '17 at 15:38




I take it that Provisorio is the work group name and not an actual domain?
– Raman Sailopal
Nov 28 '17 at 15:38












Did you try sudo?
– justinnoor.io
Nov 28 '17 at 16:42




Did you try sudo?
– justinnoor.io
Nov 28 '17 at 16:42












provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
– firewallcj
Nov 28 '17 at 22:53




provisorio is computer name, administrator is the user. I dont use a domain, instead of that i let workgroup name has a default (WORKGROUP)
– firewallcj
Nov 28 '17 at 22:53










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










you should probably specify the -o information prior to the address info i.e.
mount -t cifs -o username=<USER>,password=<PASS> //<share-address>/<share-name> /mnt/mount-point



As for why it is err-ing out, this could be due to your username, it seems like you are specifying the domain with the user, which is how you mount a share on Windows but not the same on unix, it should be just the username, if you want to specify the domain, add it to the end of the command like so `username=user,password=pass,domain=example.com



So in your case try using:
mount -t cifs -o username=Administrator,password=zen,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg



another reason the error 13 is appearing is due to folder permissions, so make sure you have the correct permissions on the wondows folder. for testing i'd say open the permissions up first to eliminate it as a possible cause!



To make this a permanent solution i.e. making it persistant after reboots add this line to the end of the /etc/fstab file ( you will need sudo permissions to edit this file! )
//10.20.30.1/zmg /mnt/zmg cifs username=Administrator,password=zen,domain=Provisorio,noserverino 0 0






share|improve this answer






















  • Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
    – firewallcj
    Nov 28 '17 at 22:51










  • @firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
    – jamalm
    Nov 29 '17 at 10:16











  • @firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
    – jamalm
    Nov 29 '17 at 10:19






  • 1




    i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
    – firewallcj
    Nov 29 '17 at 10:42










  • i.imgur.com/zY4vMcJ.png
    – firewallcj
    Nov 29 '17 at 10:48










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',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
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%2f407519%2fmount-error-13-permission-denied-8-zenworks%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










you should probably specify the -o information prior to the address info i.e.
mount -t cifs -o username=<USER>,password=<PASS> //<share-address>/<share-name> /mnt/mount-point



As for why it is err-ing out, this could be due to your username, it seems like you are specifying the domain with the user, which is how you mount a share on Windows but not the same on unix, it should be just the username, if you want to specify the domain, add it to the end of the command like so `username=user,password=pass,domain=example.com



So in your case try using:
mount -t cifs -o username=Administrator,password=zen,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg



another reason the error 13 is appearing is due to folder permissions, so make sure you have the correct permissions on the wondows folder. for testing i'd say open the permissions up first to eliminate it as a possible cause!



To make this a permanent solution i.e. making it persistant after reboots add this line to the end of the /etc/fstab file ( you will need sudo permissions to edit this file! )
//10.20.30.1/zmg /mnt/zmg cifs username=Administrator,password=zen,domain=Provisorio,noserverino 0 0






share|improve this answer






















  • Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
    – firewallcj
    Nov 28 '17 at 22:51










  • @firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
    – jamalm
    Nov 29 '17 at 10:16











  • @firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
    – jamalm
    Nov 29 '17 at 10:19






  • 1




    i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
    – firewallcj
    Nov 29 '17 at 10:42










  • i.imgur.com/zY4vMcJ.png
    – firewallcj
    Nov 29 '17 at 10:48














up vote
1
down vote



accepted










you should probably specify the -o information prior to the address info i.e.
mount -t cifs -o username=<USER>,password=<PASS> //<share-address>/<share-name> /mnt/mount-point



As for why it is err-ing out, this could be due to your username, it seems like you are specifying the domain with the user, which is how you mount a share on Windows but not the same on unix, it should be just the username, if you want to specify the domain, add it to the end of the command like so `username=user,password=pass,domain=example.com



So in your case try using:
mount -t cifs -o username=Administrator,password=zen,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg



another reason the error 13 is appearing is due to folder permissions, so make sure you have the correct permissions on the wondows folder. for testing i'd say open the permissions up first to eliminate it as a possible cause!



To make this a permanent solution i.e. making it persistant after reboots add this line to the end of the /etc/fstab file ( you will need sudo permissions to edit this file! )
//10.20.30.1/zmg /mnt/zmg cifs username=Administrator,password=zen,domain=Provisorio,noserverino 0 0






share|improve this answer






















  • Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
    – firewallcj
    Nov 28 '17 at 22:51










  • @firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
    – jamalm
    Nov 29 '17 at 10:16











  • @firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
    – jamalm
    Nov 29 '17 at 10:19






  • 1




    i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
    – firewallcj
    Nov 29 '17 at 10:42










  • i.imgur.com/zY4vMcJ.png
    – firewallcj
    Nov 29 '17 at 10:48












up vote
1
down vote



accepted







up vote
1
down vote



accepted






you should probably specify the -o information prior to the address info i.e.
mount -t cifs -o username=<USER>,password=<PASS> //<share-address>/<share-name> /mnt/mount-point



As for why it is err-ing out, this could be due to your username, it seems like you are specifying the domain with the user, which is how you mount a share on Windows but not the same on unix, it should be just the username, if you want to specify the domain, add it to the end of the command like so `username=user,password=pass,domain=example.com



So in your case try using:
mount -t cifs -o username=Administrator,password=zen,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg



another reason the error 13 is appearing is due to folder permissions, so make sure you have the correct permissions on the wondows folder. for testing i'd say open the permissions up first to eliminate it as a possible cause!



To make this a permanent solution i.e. making it persistant after reboots add this line to the end of the /etc/fstab file ( you will need sudo permissions to edit this file! )
//10.20.30.1/zmg /mnt/zmg cifs username=Administrator,password=zen,domain=Provisorio,noserverino 0 0






share|improve this answer














you should probably specify the -o information prior to the address info i.e.
mount -t cifs -o username=<USER>,password=<PASS> //<share-address>/<share-name> /mnt/mount-point



As for why it is err-ing out, this could be due to your username, it seems like you are specifying the domain with the user, which is how you mount a share on Windows but not the same on unix, it should be just the username, if you want to specify the domain, add it to the end of the command like so `username=user,password=pass,domain=example.com



So in your case try using:
mount -t cifs -o username=Administrator,password=zen,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg



another reason the error 13 is appearing is due to folder permissions, so make sure you have the correct permissions on the wondows folder. for testing i'd say open the permissions up first to eliminate it as a possible cause!



To make this a permanent solution i.e. making it persistant after reboots add this line to the end of the /etc/fstab file ( you will need sudo permissions to edit this file! )
//10.20.30.1/zmg /mnt/zmg cifs username=Administrator,password=zen,domain=Provisorio,noserverino 0 0







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 30 '17 at 9:12

























answered Nov 28 '17 at 15:36









jamalm

5911




5911











  • Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
    – firewallcj
    Nov 28 '17 at 22:51










  • @firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
    – jamalm
    Nov 29 '17 at 10:16











  • @firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
    – jamalm
    Nov 29 '17 at 10:19






  • 1




    i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
    – firewallcj
    Nov 29 '17 at 10:42










  • i.imgur.com/zY4vMcJ.png
    – firewallcj
    Nov 29 '17 at 10:48
















  • Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
    – firewallcj
    Nov 28 '17 at 22:51










  • @firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
    – jamalm
    Nov 29 '17 at 10:16











  • @firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
    – jamalm
    Nov 29 '17 at 10:19






  • 1




    i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
    – firewallcj
    Nov 29 '17 at 10:42










  • i.imgur.com/zY4vMcJ.png
    – firewallcj
    Nov 29 '17 at 10:48















Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
– firewallcj
Nov 28 '17 at 22:51




Where can i get that fstab file? Im just take files from zenworks imaging cd and put on tftpd32 program on desktop which is a private network. I dont have "etc" folder too, can i create it manually?
– firewallcj
Nov 28 '17 at 22:51












@firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
– jamalm
Nov 29 '17 at 10:16





@firewallcj All UNIX based systems will have an /etc folder under the /(root) directory, this is the equivalent of window's C: folder, if you do not have access to this folder it may be because you are not an administrator? In this case it might just be best not to mess with the fstab file and you should just mount it and move your files. fstab would be useful if you need to access this mounted directory over an extended period of time, it seems like you just need to mount it once to take the image files you need no?
– jamalm
Nov 29 '17 at 10:16













@firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
– jamalm
Nov 29 '17 at 10:19




@firewallcj And no you should not create an /etc folder, for many reasons! and it would be pointless :) hope i helped, do let me know if you need more help and let me know if the mount worked
– jamalm
Nov 29 '17 at 10:19




1




1




i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
– firewallcj
Nov 29 '17 at 10:42




i follow your suggest and know i can mount successfuly, but give me (error 16, resource busy, and error 8), besides that i can access my network directory. how can i put printscreen here to show how my server is setup?
– firewallcj
Nov 29 '17 at 10:42












i.imgur.com/zY4vMcJ.png
– firewallcj
Nov 29 '17 at 10:48




i.imgur.com/zY4vMcJ.png
– firewallcj
Nov 29 '17 at 10:48

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407519%2fmount-error-13-permission-denied-8-zenworks%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay