CentOS 6.3은 Samba 드라이브에 연결할 수 없습니다

CentOS 6.3은 Samba 드라이브에 연결할 수 없습니다
#smbclient //ballzdeep/torrents
Server not using user level security and no password supplied
tree connect failed: NT_STATUS_BAD_NETWORK_NAME

이는 내 드라이브에 사용자 이름과 비밀번호가 필요하다는 뜻인가요? Windows와 Ubuntu는 GUI를 통해 연결하지만 CentOS 6.3에서는 그렇게 할 수 없습니다.

답변1

일반적으로 일종의 자격 증명 파일을 생성하고 cifs/samba 공유를 마운트할 때 이를 사용해야 합니다. fstab을 사용한 예는 다음과 같습니다.

# insecure and common usage
//share/dir /mnt/myshare cifs username=user,password=pass

# more secure usage
Create a credentials file in /etc/ that has 0600 permissions for root.
Call it fileshare

//share/dir /mt/myshare cifs credentials=/etc/fileshare

cat /etc/fileshare
username=yourusername
password=youpass

원하는 경우 수동으로 설치할 수 있습니다.

smbmount //share/dir /mnt/myshare -o credentials=/etc/fileshare

관련 정보