smbfs

Hi

I tried to mount a network share (smbfs) but it complains about the lack of kernel support. To solve this, do i need to recompile the kernel, and if so, is there a guide that i can follow?

here is a sample output:

# mount -t smbfs //box5711/disk3 smb/
Password: 
ERROR: smbfs filesystem not supported by the kernel
Please refer to the smbmnt(8) manual page
smbmnt failed: 255

Kernel = Linux 2.6.22-ARCH

relay1

smbfs is compiled as module, so in order to use it type as root:

modprobe smbfs

and try again

replay2

Have you tried "cifs" instead of "smbfs"?cifs is a replacement for smbfs, it'll work fine with windows computers. Use that instead. It's also quite a bit quicker.

原文地址:https://www.cnblogs.com/linuxbo/p/4290748.html