для монтирования локальных NAS-share's используется "скрипт"
Код: Выделить всё
...
sudo mount -t cifs //nas/${P} ${MNT}_${P} -o username=${USER},password=${PASS}
...
на slackware 15.0 - монтируется без ошибок, доступа на запись нет
выхлоп смонтированных дисков
Код: Выделить всё
mount | grep nas
### sl15.0
//nas/hd0 on /mnt/nas_smb_hd0 type cifs (rw,relatime,vers=3.1.1,cache=strict,username=sun,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.0.253,file_mode=0755,dir_mode=0755,soft,nounix,serverino,mapposix,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1)
//nas/hd1 on /mnt/nas_smb_hd1 type cifs (rw,relatime,vers=3.1.1,cache=strict,username=sun,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.0.253,file_mode=0755,dir_mode=0755,soft,nounix,serverino,mapposix,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1)
//nas/hd2 on /mnt/nas_smb_hd2 type cifs (rw,relatime,vers=3.1.1,cache=strict,username=sun,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.0.253,file_mode=0755,dir_mode=0755,soft,nounix,serverino,mapposix,rsize=4194304,wsize=4194304,bsize=1048576,echo_interval=60,actimeo=1)
### sl14.2
//nas/hd0 on /mnt/nas_smb_hd0 type cifs (rw)
//nas/hd1 on /mnt/nas_smb_hd1 type cifs (rw)
//nas/hd2 on /mnt/nas_smb_hd2 type cifs (rw)
Код: Выделить всё
-o noperm
Код: Выделить всё
uid=$(id -u),gid=$(id -g)
сенкю