Ubuntu 14.04: Come usi mount.cifs, mount.nfs, non sono più nei repository?


14

In Ubuntu 12 LTS, ho sempre usato mount.cifs e mount.nfs

Ora non sono nel repository Ubuntu 14.04, quindi come si usa mount cifs e mount nfs o li si installa in 14?

Grazie

ie)

Ubuntu 12.04 ha sempre funzionato con:

 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

Ma non funziona nello stesso comando macchina 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

Ha funzionato per me il 14.04.4 LTS.
Chris K,

Risposte:


19

Il mount.cifscomando è fornito da cifs-utilse mount.nfsda nfs-common.

In generale, quando cerchi un determinato file e non sai quale pacchetto lo fornisce, puoi cercare nei repository di Ubuntu o in synaptic. In alternativa, puoi usare apt-file.

Se non è installato, installarlo con sudo apt-get install apt-filee quindi aggiornare il suo database con apt-file update. Una volta fatto, puoi facilmente cercare i contenuti del pacchetto:

$ 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
Grazie mille! Questo è stato MOLTO AIUTO! Lo apprezzo molto!!!
Bran

Un'altra domanda. Dopo aver installato questi pacchetti ho notato che la mia macchina ora ha le porte aperte per rpcbind e rpc.statd . Posso disabilitarli per chiudere queste porte in qualche modo?
Bran

1
@Bran Sono sicuro che puoi, ma non so come mi venga in mente. Potresti postarlo come una nuova domanda.
terdon,

Trovato: /etc/init.d/rpcbind e / sbin / rpcbind <- Ho appena rinominato questi e riavviato, e ora il server non ha alcuna capacità rpcbind. Grazie mille!
Bran
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.