사용하지 마십시오 smbfs
, 새로운 프로토콜의 이름은 cifs
패키지의 그 부분은 cifs-tools
당신이 아직 작성하지 않은 경우 (설치합니다.
대신이 줄을 fstab
//server/share /mnt/mountname cifs username=server_user,password=user_password,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
어디에
server = your server that you are trying to access
share = mapped share on that server
/mnt/mountname = any folder that you created with sudo /mnt/<folder_name>
username = the name of the user on that server that can access the mount
password = the password for that user
그 후에 테스트 할 수 있습니다. sudo mount -a
결함이 없으면 안전하게 재부팅하여 공유 된 마운트를 찾을 수 있습니다 /mnt/<folder_name>
.
의 username
및 password
매개 변수 대신 신임 정보 파일을 사용하려면 fstab
사용자 이름과 비밀번호가 fstab에 명시 적으로 표시되지 않도록 2 행으로 파일을 작성할 수 있습니다.
sudo nano /etc/cifspwd
이 줄을 파일에 추가하십시오
username=<username on server>
password=<password for that username>
ctrl + x 키를 누르고 y
파일을 저장 하라는 메시지가 표시되면를 누르십시오 .
로 확보
sudo chmod 600 /etc/cifspwd
이전 줄 대신이 줄을 사용하십시오
//server/share /mnt/mountname cifs credentials=/etc/cifspwd,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
그 후에는 재부팅해도 안전하며 마운트가 완료되고 세부 정보가 보호됩니다.
cat ~/.smbpasswd
.