Network shares do not mount

6,106

Solution 1

Are you mounting windows shares? If so, this could be your problem:

http://linux.derkeiler.com/Newsgroups/comp.os.linux.networking/2006-10/msg00629.html

Solution 2

Since it's always nice to have the text (since the link may become invalid), here's the solution the link in the accepted answer points to:

The Windows Fix, A.K.A.

The Solution!

Check the Event Log on the Windows machine that fails to allow it's share to be mounted under System. Look for a red X, and the word Error. The Source is Srv. The error will be:

The server's configuration parameter "irpstacksize" is too small for the server to use a local device. Please increase the value of this parameter.

If you have this error on the Windows machine that fails to have it's share mounted, then do the following...

This key in the system registry must be modifed or created:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanServer \Parameters\IRPStackSize

If the key is there, increase it a bit to say 15 or 18. If the key does not exist, as in my case, create a new DWORD Valute. Name it IRPStackSize. Double click on it to edit the value, put a check on the Decimal radio button for the Base so that you can see the parameter value as a decimal value and not a hexidecimal value. Give the new key a value of 15 and reboot. If that is not enough, raise it a litte to let's say 18 and then reboot again. The problem is solved. Go mount your samba shares.

Share:
6,106

Related videos on Youtube

Alex
Author by

Alex

I like to burn things.

Updated on September 17, 2022

Comments

  • Alex
    Alex over 1 year

    My network shares were mounting fine yesterday.. suddenly they are not. They were mounting fine for the last two weeks or however long since I added them.

    When I run sudo mount -a I get the following error:

    topsy@monolyth:~$ sudo mount -a
    
    mount error(12): Cannot allocate memory
    Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
    mount error(12): Cannot allocate memory
    Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
    mount error(12): Cannot allocate memory
    Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
    mount error(12): Cannot allocate memory
    Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
    topsy@monolyth:~$ 
    

    I followed this guide when setting them up: http://ubuntuforums.org/showthread.php?t=288534

    So I tried removing them by doing the reverse, and then rebooting, then adding them again and rebooting.

    Problem persists.

  • Alex
    Alex about 14 years
    Indeed, it was.
  • dma_k
    dma_k over 12 years
    Unfortunately the link is gone. Do you remember which ones? I suppose, these are something mentioned here: 241931348f64b1d1.wordpress.com/2010/07/14/…
  • Martin Murphy
    Martin Murphy over 12 years
    Could also indicate that your drive is out of space that you are attempting to mount.
  • Calmarius
    Calmarius about 11 years
    Is it possible to work this around on the Linux side? I have no access to the Windows box... Connecting from Windows is fine.