cifs - Windows 서버에 여러 공유 폴더 마운트

cifs - Windows 서버에 여러 공유 폴더 마운트

winserv여러 공유 폴더 등이 있는 Windows 서버가 share1있고 각 공유 폴더를 개별적으로 지정하는 대신 서버 주소를 지정하여 터미널에 모두 마운트하고 share2싶습니다 .cifs

그래픽 파일 탐색기를 사용하여 dolphin네트워크의 모든 공유 폴더를 성공적으로 검색, 로그인 및 나열하거나 다음 winserver을 사용하여 터미널에서 각 공유 폴더를 개별적으로 마운트할 수 있습니다.

mount.cifs -o user=winuser //winserv/share1 /mnt/share1
<password prompt>
#trailing slash after share does not affect the mount:
mount.cifs -o user=winuser //winserv/share2/ /mnt/share2
<password prompt>

winserv모든 공유 폴더를 직접 마운트하고 나열 할 수는 없습니다 . 즉, 이것은 실패했습니다.

mount.cifs -o user=winuser //winserv /mnt/allshares
#I also tried a trailing slash, but to no effect
mount.cifs -o user=winuser //winserv/ /mnt/allshares

결과 오류 메시지는 다음과 같습니다.

Retrying with upper case share name
mount error(6): No such device or address
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

그렇다면 이전처럼 한 번에 모두 설치하려면 어떻게 해야 합니까 dolphin?

관련 정보