ใน Ubuntu 12 LTS ฉันมักจะใช้mount.cifsและmount.nfs
ตอนนี้พวกเขาไม่ได้อยู่ในที่เก็บ Ubuntu 14.04 ดังนั้นคุณจะใช้ mount cifs และ mount nfs หรือติดตั้งใน 14 ได้อย่างไร
ขอบคุณ
IE)
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