Ubuntu 14.04 : mount.cifs, mount.nfs를 어떻게 사용합니까? 더 이상 저장소에 있지 않습니까?


14

우분투 12 LTS에서는 항상 mount.cifsmount.nfs를 사용 했습니다.

이제 Ubuntu 14.04 리포지토리에 없으므로 mount cifs 및 mount nfs를 어떻게 사용하거나 14에 설치합니까?

감사

즉)

Ubuntu 12.04는 항상 다음 작업을 수행했습니다.

 root@ub12box# mount -t cifs -o user=administrator '\\192.168.0.1\Data' /tmp/myServer ; df ;
 Password: ***************
 Filesystem                1K-blocks      Used Available Use% Mounted
 on /dev/sdb2                 144636 85800  26058836  8% /
 \\192.168.0.1\Data 8059772 652288 407484  6% /tmp/myServer

그러나 Ubuntu 14.04 시스템에서는 동일한 명령이 작동하지 않습니다.

root@ub14box# mount -t cifs -o user=administrator '\\192.168.0.1\Data' /tmp/myServer ; df ;
mount: block device \\192.168.0.1\Data is write-protected, mounting read-only 
mount: cannot mount block device \\192.168.0.1\Data read-only

Filesystem                1K-blocks      Used Available Use% Mounted
on /dev/sdb2                 126636 950900  99958936  2% /

root@ub14box# dmesg|tail
[ 2023.664186] Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
[ 2023.664197] CIFS VFS: Send error in SessSetup = -13
[ 2023.667124] CIFS VFS: cifs_mount failed w/return code = -13
[ 2023.676417] Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
[ 2023.676424] CIFS VFS: Send error in SessSetup = -13
[ 2023.676499] CIFS VFS: cifs_mount failed w/return code = -13

14.04.4 LTS에서 저에게 효과적이었습니다.
Chris K

답변:


19

mount.cifs명령에 의해 제공되는 cifs-utils그리고 mount.nfsnfs-common.

일반적으로 특정 파일을 찾고 어떤 패키지를 제공하는지 모르는 경우 Ubuntu 저장소 또는에서 검색 할 수 있습니다 synaptic. 또는을 사용할 수 있습니다 apt-file.

설치되어 있지 않으면로 설치 sudo apt-get install apt-file한 다음로 데이터베이스를 업데이트하십시오 apt-file update. 일단 완료하면 패키지 내용을 쉽게 검색 할 수 있습니다.

$ apt-file search mount.cifs mount.nfs
cifs-utils: /sbin/mount.cifs
cifs-utils: /usr/share/man/man8/mount.cifs.8.gz
$ apt-file search mount.nfs
manpages-fr-extra: /usr/share/man/fr/man8/mount.nfs.8.gz
manpages-fr-extra: /usr/share/man/fr/man8/umount.nfs.8.gz
nfs-common: /sbin/mount.nfs
nfs-common: /sbin/mount.nfs4
nfs-common: /sbin/umount.nfs
nfs-common: /sbin/umount.nfs4
nfs-common: /usr/share/man/man8/mount.nfs.8.gz
nfs-common: /usr/share/man/man8/umount.nfs.8.gz

1
정말 고맙습니다! 이것은 매우 도움이되었습니다! 대단히 감사합니다 !!!
밀기울

질문 하나 더 이 패키지를 설치 한 후 내 컴퓨터에 rpcbind 에 대한 포트가 열려 있음을 알았습니다. rpc.statd 있었습니다. 어떻게 든이 포트를 닫을 수 없도록 비활성화 할 수 있습니까?
밀기울

1
@ 브랜 나는 당신이 할 수 있다고 확신하지만 내 머리 꼭대기에서 어떻게 떨어져 있는지 모르겠습니다. 새로운 질문으로 게시 할 수 있습니다.
terdon

/etc/init.d/rpcbind 및 / sbin / rpcbind <-를 찾았습니다. 방금 이름을 바꾸고 재부팅 한 후 서버에 rpcbind 기능이 없습니다. 정말 고마워!
밀기울
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.