Nvidia 카드가 있는 머신:호스트 이름을 사용하는 우분투에서 마운트 명령 관련 문제

Nvidia 카드가 있는 머신:호스트 이름을 사용하는 우분투에서 마운트 명령 관련 문제

OS: Ubuntu14.04 64비트 Ubuntu 14.04 64비트를 실행하는 Nvidia 카드가 있는 컴퓨터에서 이상한 문제가 발생합니다. mount 명령은 IPAddress를 사용할 때 작동하지만 호스트 이름을 사용할 때는 실패합니다.

작동하지 않는 명령 :

sudo -S mount -t cifs //share.test.com/LAB/Testing/Path1/Path2/Requisite/ -o username=blabla,password=blabla /mnt/src_shar_lnx

마운트 중 오류:

wrong fs type, bad option, bad superblock on //share.test.com/LAB/Testing/Path1/Path2/Requisite/ , missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program) In some cases useful info is found in syslog - try dmesg | tail or so

위 명령은 Nvidia 카드가 없는 다른 컴퓨터에서도 원활하게 작동합니다.

작업 명령:

sudo -S mount -t cifs //192.168.200.1/LAB/Testing/Path1/Path2/Requisite/ -o username=blabla,password=blabla /mnt/src_shar_lnx

답변1

그는 오류 메시지에 다음과 같이 언급합니다.

코드 페이지 또는 도우미 프로그램 누락 또는 기타 오류(여러 파일 시스템(예: nfs, cifs)의 경우 /sbin/mount. 도우미 프로그램이 필요할 수 있음)

이는 CIFS를 마운트하려는 경우와 관련이 있습니다. /sbin/mount.cifs에는 cifs-utils라는 패키지가 필요합니다.

패키지를 설치하십시오.

sudo apt-get install cifs-utils 

답변2

해결되었습니다. cifs-utils를 설치하면 문제가 해결되었습니다.

관련 정보