drwxr-xr-x 23 root root 4096 Jun 1 17:28 / drwxr-xr-x 208 root root 12288 May 26 19:39 /home drwx------ 25 myaccount Domain Users 3072 Jun 5 14:47 /home/myaccount/ drwxr-xr-x 4 myaccount Domain Users 1024 Jun 6 17:03 /home/myaccount/setups/ drwxr-xr-x 3 michael.obrien Domain Users 1024 Jun 6 17:04 /home/michael.obrien/setups/OpenCV/ drwxr-xr-x 12 michael.obrien Domain Users 1024 Jun 6 17:04 /home/michael.obrien/setups/OpenCV/opencv-2.4.13/ drwxr-xr-x 15 michael.obrien Domain Users 2048 Jun 6 17:28 /home/michael.obrien/setups/OpenCV/opencv-2.4.13/build/
Is there a way to set things up so that I can streamline the install across all the vm's and ensure permissions are set correctly on each vm? ________________________________________ From: [email protected] <[email protected]> Sent: 06 June 2016 17:01 To: B00083603 Michael O Brien Cc: [email protected] Subject: Re: [CMake] Make install permissions advice for ubuntu 14.04 with cmake 2.8 On 2016-06-06 16:39, B00083603 Michael O Brien wrote: > Hi Roger, > > When I run sudo -s I get bash: /home/myaccount/ : Permission denied > but I get a root prompt on the terminal. I get a permission denied > when I try to cd into anything deeper than /home/myaccount/ > > Yes the /home/ is an NFS mount as its common across all the vm's I'm > assigned to but there isn't an etc/exports file > In /proc/mount the mount details don't mention root_squash just that > its nfs rw relatime vers3 The root squashing is in the exports on the server side. This maps uid 0 to nobody, which is why the access is denied. One solution: make all the files readable by other and the directories are readable and executable by other. However, since this is generally the default it's not clear why this is happening. You didn't show us the permissions as I asked, so it's not possible to do more than speculate. What does this show (with any typos fixed)? ls -ld / /home /home/michael.obrien /home/michael.obrien/setups /home/michael.obrien/setups/OpenCV /home/michael.obrien/setups/OpenCV/opencv-2.4.12 /home/michael.obrien/setups/OpenCV/opencv-2.4.12/build I'll hazard a guess that your homedir is 0700 or 0750; if so it'll need to be 0755 (so that any user can access it, including nobody); likewise for any other directories which you want root to read. Regards, Roger ITB Email Disclaimer This is a confidential communication and is intended only for the addressee indicated in the message (or duly authorised to be responsible for the delivery of the message to such person). You are specifically prohibited from copying this message or delivering the same, or any part thereof, to any other person, whomsoever or howsoever, unless you receive written authorisation from us to do. If you are anyone other than the intended addressee, or person duly authorised and responsible for the delivery of this message to the intended addressee, you should destroy this message and notify us immediately. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake
