automount SMB in Tahoe 26 no longer working

MacBook Pro M1, MacBook mini M1 Tahoe 26.


I have mapped 6 shares from my NAS (Public, Photo, backups etc). This has been working for almost 10 years in all MacOs versions. Just open finder, and the shares appeared by auto-mounting.


In Tahoe, it no longer works, I need to manually remount on each restart. ( by open the network devices, drag each share to the finder favorites bar).

Adding the shares to the Settings, General, Loginitems does work, but this opens 6 folders on startup that I have to close, as I do not need all shares on the desktop.

What has happened? Has Apple forgotten that (business) users have auto mounts on network servers?


How to get this annoyance fixed?


MacBook Pro 13″

Posted on Sep 19, 2025 1:02 AM

Reply
Question marked as Top-ranking reply

Posted on Sep 24, 2025 11:08 AM

I think I've found a pretty good workaround for this issue. The key seems to be to prevent MacOS from using the usual /Volumes mount point.


  • Remove any favourites for the network drives that may exist in the Finder side bar from previous attempts. Make sure none of them are mounted (reboot if necessary).


  • Using the terminal (or Finder itself I guess), make a new mount directory in your home directory (I made mine a hidden directory using a dot):
  mkdir /Users/Stuart/.mnt


  • Make further directories beneath it to serve as mount points for your shares:
  mkdir /Users/Stuart/.mnt/Stuart


  • In the terminal, edit the /etc/auto_master file (I'm using vim to do it):
  sudo vim /etc/auto_master

... and add the following line at the end of the file:

  /-          auto_smb


  • Then create/edit the /etc/auto_smb file:
  sudo vim /etc/auto_smb

Add your shares in here, one on each line, to have them mount at the mount points you created for them earlier. For example:

  /Users/Stuart/.mnt/Stuart       -fstype=smbfs,soft,noowners,nosuid,rw   ://<user>:<password>@<server host or IP>/<share>


  • After editing, run the following to mount the shares:
  sudo automount -vc


  • Then, in Finder use the Go menu and: Go > Go to Folder...

Type the path of the directory you created earlier, for example:

  /Users/Stuart/.mnt


  • Press Enter to go to that directory and you should see one or more other directories in there which, if all has gone well, will be your mounted network drives. Click on them and Finder should show you their contents as normal.


  • Make sure the path bar is visible in your Finder (View > Show Path Bar) and then drag the little icon for your share from the bottom of the Finder window into the Finder side bar under Favourites to create a 'favourite' for your network drive. You can then use Finder to access your share via this as before.


  • I've tried rebooting the Mac and then clicking on the favourites after reboot and they automount instantly and flawlessly, just like they used to do before Tahoe.


I hope this helps someone until Apple fix this problem.


29 replies
Question marked as Top-ranking reply

Sep 24, 2025 11:08 AM in response to EAZ1964

I think I've found a pretty good workaround for this issue. The key seems to be to prevent MacOS from using the usual /Volumes mount point.


  • Remove any favourites for the network drives that may exist in the Finder side bar from previous attempts. Make sure none of them are mounted (reboot if necessary).


  • Using the terminal (or Finder itself I guess), make a new mount directory in your home directory (I made mine a hidden directory using a dot):
  mkdir /Users/Stuart/.mnt


  • Make further directories beneath it to serve as mount points for your shares:
  mkdir /Users/Stuart/.mnt/Stuart


  • In the terminal, edit the /etc/auto_master file (I'm using vim to do it):
  sudo vim /etc/auto_master

... and add the following line at the end of the file:

  /-          auto_smb


  • Then create/edit the /etc/auto_smb file:
  sudo vim /etc/auto_smb

Add your shares in here, one on each line, to have them mount at the mount points you created for them earlier. For example:

  /Users/Stuart/.mnt/Stuart       -fstype=smbfs,soft,noowners,nosuid,rw   ://<user>:<password>@<server host or IP>/<share>


  • After editing, run the following to mount the shares:
  sudo automount -vc


  • Then, in Finder use the Go menu and: Go > Go to Folder...

Type the path of the directory you created earlier, for example:

  /Users/Stuart/.mnt


  • Press Enter to go to that directory and you should see one or more other directories in there which, if all has gone well, will be your mounted network drives. Click on them and Finder should show you their contents as normal.


  • Make sure the path bar is visible in your Finder (View > Show Path Bar) and then drag the little icon for your share from the bottom of the Finder window into the Finder side bar under Favourites to create a 'favourite' for your network drive. You can then use Finder to access your share via this as before.


  • I've tried rebooting the Mac and then clicking on the favourites after reboot and they automount instantly and flawlessly, just like they used to do before Tahoe.


I hope this helps someone until Apple fix this problem.


Oct 30, 2025 3:25 AM in response to EAZ1964

I have automounts via SMB (as this is the fastest option) working very well from a Synology NAS.


Here's the main point: Change in the file /etc/autofs.conf the

AUTOMOUNT_TIMEOUT=3600000

This is 1000 hours. Reboot to take effect.


The rest of the config is similar to what other people have posted. In my case like this:


auto_master: add to the end

/Volumes/Media     auto_exec


then you create an root owned, wheel executable script

ls -al /etc/auto_exec

-rwxr-xr-x 1 root wheel 2005 27 Okt. 13:04 auto_exec


with this content:


#!/bin/bash
# By www.stefan-ried.de 11/2016 .. 10/2025
# Open Source
#
# Name or IP of your NAS


server="Media"  # replace with the local name of your NAS server


# List of share you want to mount


shares="GemeinsameDateien photo homes Stef web"    # add the Name of shared folder you like to automount


# NAS use name
user="<your NAS user>"
# NAS PW
userpw="<your NAS password>"
# local logfile
logfile="/dev/null"   # replace /dev/null with a log file of your choice
#
# automountd calls this without an argument to show the folders
# or with a specific folder name as argument to retrieve the mount parameter for it
#
# Make sure this file is in /etc and executable (chmod +a), call it auto_exec
# Add to /etc/auto_master for example this line, you might need to do this after a MacOS upgrade again
# /Volumes/Media        auto_exec
#
# automount will then execute this file when the folder is accessed
# Reload the changes to your auto_master and auto_exec with automount -vc
# use tail -f <you log file> to see whats going on, when you ls into /Volume/..
#
# If you like to have the automounts permanently Change in the file /etc/autofs.conf the
# AUTOMOUNT_TIMEOUT=3600000
#

# In the right network?
# replace the 10.0.0.0 with your networkspace where your NAS is.
#
if ifconfig | grep "10.0.0." > /dev/null; then
    echo "In home network" >> $logfile
else
    echo "Outside home network - not mounting anything" >> $logfile
    exit
fi
#
# Server reachable?
#
if ping -c 1 -Q -W 100 $server &> /dev/null; then
  echo "Server Online"  >> $logfile
else
  echo "Server Offline"   >> $logfile
  exit
fi
if [ $# = 0 ]; then # List keys
        echo `date` "Showing Folders/Keys" $1   >> $logfile
        for mountpoint in $shares; do
                echo -e "$mountpoint"   >> $logfile
                echo -e "$mountpoint"
        done
else
        echo `date` "Requesting Mountpoint" $1  >> $logfile
        for mountpoint in $shares; do
                if [ $1 = $mountpoint ]; then
                        echo -e "smb://$user:$userpw@Media/$mountpoint"
                        echo -e "smb://$user:$userpw@Media/$mountpoint"  >> $logfile
# uncomment this, if you want AFP, but SMB is the fastest with Synology
#                       echo -e "afp://$user:$userpw@Media/$mountpoint"
# uncomment this, if you want NFS 
#                       echo -e "-fstype=nfs,resvport,vers=4.1 $server:/volume4/$mountpoint"
                fi
        done
fi




The approach ignores the automatically scanned server mounts under /Network in the finder and creates an new one under /Volumens/<servername>, just drop this as a favorite into finder. Open tabs remain (SMB) mounted for ever.


In detail, the script provides to the automounter the folder and corresponding mount commands dynamically.

If you call it form the terminal, you see folders. If you add one folder name as arguments, you see individual mount points. This is how unix automounter works since 25+ years :)

When this works, you can reload the automounter with the command: automount -vc


One little add-on: My Macbook should only tell anything to the automounter if it is in the home network (10.0.0.x in my case) and can ping the NAS. This trick avoids any hanging of the finder if you are in public networks on the road.

The script is on my Mac for nearly 10 years and still works on Tahoe.

The AUTOMOUNT_TIMEOUT=3600000 works best with SMB.


No paid tool is needed.

Have fun.

Sep 23, 2025 1:13 PM in response to alexanderfromhalle

Tried a bit more and now, I have the Alias working.

Strangely enough I have to do the following:

  1. Create an alias from a network folder ( a desktop icon for the share appears).
  2. Create an alias from this alias icon on the desktop, now it shows a ? in the icon.
  3. Double click this ? alias, It will tell you that the original is not found but offers a restore option.
  4. Click the restore, go back to the NAS and find the folder that you need. Click, and drag the icon onto the favorites.

That restored alias from an alias works, and reconnects after restart.


Not sure why this works, but thanks to @alexandervanhalle for showing the right track to a workaround.

Nov 25, 2025 6:38 AM in response to EAZ1964

I'm surprised by the amount of people who were successful with this. When I implemented this, it worked, however after a while, typically on a wake up, but also sometimes during usage, the macOS will change the permissions on the directory to be accessible to root only and make it inaccessible. The only way to remedy this is to unmount, and then auto mount remounts it automatically (and successfully).


Even the Automounter app has similar issues, in that it cannot access the original folder, so it creates a new one by appending `-1` to the original folder name.. This works if you are using the Finder to access your share, but not if you are relying on a stable location.


It's as if there is a disconnect somewhere and autmount isn't triggered, so it doesn't change the permissions on the share to make it accessible..

Sep 19, 2025 8:28 AM in response to EAZ1964

EAZ1964 wrote:

MacBook Pro M1, MacBook mini M1 Tahoe 26.

I have mapped 6 shares from my NAS (Public, Photo, backups etc). This has been working for almost 10 years in all MacOs versions. Just open finder, and the shares appeared by auto-mounting.

In Tahoe, it no longer works, I need to manually remount on each restart. ( by open the network devices, drag each share to the finder favorites bar).
Adding the shares to the Settings, General, Loginitems does work, but this opens 6 folders on startup that I have to close, as I do not need all shares on the desktop.
What has happened? Has Apple forgotten that (business) users have auto mounts on network servers?

How to get this annoyance fixed?


To be proactive you can file a bug report / submit your Apple Feedback here: Product Feedback - Apple



Call Customer Support (800) MY–APPLE (800–692–7753)

or on line https://getsupport.apple.com/

or call AppleCare Support at 1-800-APLCARE (800-275-2273)

Outside the USA—Contact Apple for support and service by phone

See a list of Apple phone numbers around the world.

Contact Apple Support - Apple Support



automount SMB in Tahoe 26 no longer working

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.