Skip to main content
  1. Tutorials/

Creating and Managing Shares on Unraid

Difficulty Beginner
Time ~15 min
Stack
Unraid SMB Storage

While a traditional RAID might present one giant volume, Unraid uses Shares to act as top-level directories that can span across multiple physical disks. This abstraction allows you to keep your media, backups, and app data organized while benefiting from the combined capacity of your drives.

Executive Summary
#

In this guide, we will create our first network shares, configure access permissions, and map these shares to your local computer so they appear as local hard drives on Windows, macOS, and Linux (Pop!_OS).

Prerequisites
#

ComponentRequirement
Unraid ServerA running server with a started and protected Array
Client MachineA PC, Mac, or Linux machine on the same local network
User AccountA non-root user created in the Users tab

Assumptions: This guide assumes your array is already started and protected, as covered in the Installing and Configuring Unraid guide. We will focus on SMB (Server Message Block) as the primary protocol for Windows, macOS, and Linux compatibility.

Implementation
#

Step 1: Create Your First Share
#

Shares are the folders that the rest of your network will see.

  1. Navigate to the Shares tab in the Unraid Web UI.

Unraid Shares Tab Empty
The Shares tab before any shares have been created. The Add Share button is your starting point.

  1. Click Add Share.
  2. Share Name: Give it a name (e.g., Media or Backups).

Unraid Add Share Form
The new share creation form. Fill in the Share name and an optional comment to describe what the share is for.

Note: Share names are case-sensitive and will appear exactly like this on your network. Avoid spaces if you plan to use command-line tools later.

  1. Allocation Method: Leave as High-water. This ensures data is spread evenly across your disks to prevent any single drive from filling up too quickly.

Unraid Allocation Method Dropdown
The Allocation Method dropdown showing the three available options. High-water is the recommended default for most setups.

MethodHow It WorksBest For
High-waterFills one disk to a threshold, then moves to the nextMost setups. Keeps drives balanced without constant switching
Fill-upFills one disk completely before moving to the nextKeeping related files on the same physical disk
Most-freeAlways writes to whichever disk has the most free spaceSetups where drives are frequently added or removed

For most home lab builds, High-water is the right choice and requires no further tuning.

  1. Click Add Share to save.

Unraid Shares Complete
The Shares tab after creating the share. You can see the share name, SMB status, storage backing, and available space at a glance.

Step 2: Setting Share Security
#

By default, new shares are “Public,” meaning anyone on your network can see and edit the files. For this guide we will leave the share as Public to keep things simple, but be aware that this means any device connected to your home network can read and write to it without a password.

Note: If you are storing sensitive data, consider setting the share to Secure or Private after completing this guide. The security options are explained in the table below.

  1. Scroll down to SMB Security Settings.

Unraid Share Settings
The full share settings page showing both the storage configuration and the SMB Security Settings section below.

  1. Export: Set to Yes. This makes the share visible to the network.
  2. Security: Choose based on your needs:

Unraid SMB Security Settings
The SMB Security Settings with Export set to Yes and Security set to Public. Note the Windows warning shown below the Security field.

OptionWho Can Access
PublicEveryone has read/write access
SecureEveryone can read, only specific users can write or delete
PrivateOnly authorized users can see or access the contents
  1. Click Apply. If you chose Secure or Private, a list of users will appear at the bottom where you can toggle Read/Write or Read Only permissions.

Step 3: Mapping the Share to Your Client
#

To make the share feel like a local drive, you need to “map” it to your operating system.

On Pop!_OS (and most Linux distributions):

  1. Open the Files app (Nautilus).
  2. Press Ctrl + L to open the location bar.
  3. Enter smb://YOUR_UNRAID_IP/YourShareName and press Enter.
  4. Enter your Unraid username and password when prompted.

To mount the share permanently so it survives a reboot, install cifs-utils, which is the package that allows Linux to speak SMB:

sudo apt install cifs-utils

Next, create the local folder that the share will appear in. This is called a mount point:

sudo mkdir -p /mnt/YourShareName

Then add the following line to /etc/fstab. This file tells Linux what to mount automatically at boot. Open it with:

sudo nano /etc/fstab

Add this line at the bottom, replacing the placeholders with your values:

//YOUR_UNRAID_IP/YourShareName  /mnt/YourShareName  cifs  username=YOUR_USER,password=YOUR_PASSWORD,uid=1000,gid=1000  0  0

Note: uid=1000,gid=1000 tells Linux which user owns the mounted files. On most single-user Pop!_OS installs your user ID is 1000 by default. You can confirm yours by running id in the terminal.

Save and exit (Ctrl + X, then Y, then Enter), then test the entry without rebooting:

sudo mount -a

If no errors appear, the share is mounted and will reconnect automatically on every boot.

On macOS:

  1. Open Finder.
  2. Press Cmd + K.
  3. Enter smb://YOUR_UNRAID_IP/YourShareName.

On Windows:

  1. Open File Explorer.
  2. Right-click This PC and select Map network drive.
  3. Enter \\YOUR_UNRAID_IP\YourShareName.

Lab Notes & Troubleshooting
#

“Access Denied” on Windows. Windows often gets confused if you try to log into the same server with two different user accounts. If you change a share from Public to Private, you may need to clear your Windows Credentials. Search for Credential Manager in the Start menu and remove any entries related to your Unraid IP.

Duplicate Folders across disks. If you see a folder on a disk that is not showing up in your Share, check the Split Level settings. For beginners, leaving Split Level as Automatically split any directory is the safest way to ensure Unraid handles the folder structure correctly.

Summary
#

You now have a functional NAS with organized, accessible shares. Your data is protected by the parity array and accessible from any device on your network. This foundation allows you to start centralizing your data before moving into advanced topics like cache drives and storage pools.

Next Step: Installing and Managing Apps in Unraid


Disclaimer: Content on this site is provided as-is with no guarantees of accuracy, completeness, or fitness for any particular purpose. Always test in a safe, non-production environment before applying anything documented here to systems you rely on. I am not responsible for data loss, damage, or security issues resulting from following these guides. Software and services change over time and steps that worked when this was written may not work in the future.