1

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
  • 527

4 Answers4

2

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

ansong
  • 211
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.

JohnB
  • 21
0

Another possible cause for the mount error(12): Cannot allocate memory problem is that the windows share permissions are not set up properly. Not only do you need to have the appropriate permissions set up on the directory you are sharing, but the account you are using to access the share needs read permissions under Sharing->Permissions.

JohnB
  • 21
0

If you're exporting from Windows 7 , there are two (different) registry keys involved (link still good).

http://alan.lamielle.net/2009/09/03/windows-7-nonpaged-pool-srv-error-2017

user38983
  • 477