This is a guide on how to create a new directory in the "Users" folder on a Network Storage shared volume and give the desired user Read/Write access to it.
A typical volume on the Network Storage has the directories "Data and "Users" in them. The Data directory is shared and can be accessed by the users who have been granted access to it. The users folder is where individual users can save data in their own folder ie Users\uitxxxx. The creation of these folders and their access permissions can be managed by those who have Full Control access.
Before a user can be granted access to the Users directory on a share, they will need to be granted access to the whole share. There are three levels of access:-
- Full Control
- Read/Write access (also known as Modify)
- Read Only
If the user doesn't yet have access to the share, then please log a request with the IT Service Desk, giving the users name and the level of access they need.
Windows Shares
A new directory will need creating within the "Users" folder of the share using Windows Explorer. To do this:
- Right-click in the Users folder and select New and then Folder.

- Give it the desired name ie uitabc.
- Right-click the new folder and select Properties.

- In the Properties window, select the Security tab.

- Click on the Edit button.
- Click on the Add button in the Permissions window.
- You can now enter the username of the user in the box titled Enter the object names to select. Then press OK.

- If you don't know the username, click on the Advanced button.

- Type in the name of the user in the Name field in the Advanced windows that appears. Then click Find Now.
- Select the user from the list of search results that appear at the bottom of the window and then click OK.
- That window will now disappear. In the Permissions window, select the username you have just added and tick the box in the Allow column next to Modify. Then click OK.

- Click OK on the Properties window and the user should now have access to their own folder within the Users folder on the share.
Linux Shares
A new directory will need creating within the "Users" directory using the mkdir command and an Access Control List (ACL) setting for it to give access. For example, for username uitabc:
- From a Terminal screen, type cd /uolstore/research/b/b0xxx/Users.
- Type mkdir uitabc.
- Type nfs4_editfacl /uolstore/research/b/b0xxx/Users.
- The ACL will now open up in a vim editor. A line will need adding for the User account. Press Shift and G together to open up a new line at the bottom of the file.
- Add the new line, for example A:df:uitabc@ds.leeds.ac.uk:rwadxtTnNcC.
- Press Esc, the type :wq. This will save the file and quit.
- Back at the command prompt, change to the newly created directory for the user, for example cd /uolstore/research/b/b0xxx/Users/uitabc.
- Type nfs4_editfacl /uolstore/research/b/b0xxx/Users/uitabc.
- Press Shift + G together to go to the bottom of the file. Add the line A:df:uitabc@ds.leeds.ac.uk:rwadxtTnNcC.
- Press Esc, the type :wq. This will save the file and quit.
- The user should now have access.