1. Устанавливаем cifs-utils
Код: Выделить всё
apt-get install cifs-utils nfs-common
2. Создаем папку, в которую будем монтировать
Код: Выделить всё
mkdir /mnt/share-public
Код: Выделить всё
chmod 777 -R -v /mnt/share-public
3. Открываем файл fstab
Код: Выделить всё
nano /etc/fstab
4. Добавляем строку в самый конец
Код: Выделить всё
//192.168.1.4/Public /mnt/share-public cifs _netdev,noauto,users,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
5. Монтируем папку
Код: Выделить всё
mount /mnt/share-public