http://en.gentoo-wiki.com/wiki/Mounting_a_remote_Shared_Folder
In order to mount a remote filesystem, you must configure your kernel accordingly.
Linux Kernel Configuration: CIFS File system support |
File Systems ---> [*] Network File Systems ---> <*> CIFS support (advanced network filesystem, SMBFS successor) [*] CIFS Statistics [*] CIFS Extended attributes |
make clean && make bzImage && make modules && make modules_install && make install
cp arch/x86_64/boot/bzImage /boot/kernel-2.6.32-gentoo-r7
reboot
更详细参考:http://jiajun.iteye.com/blog/538820
After that, you have to emerge the package mount-cifs.
Refer to the official kernel configuration article to compile and install your fresh kernel.
Use the following terminal command to mount a remote folder, replacing IP_OR_NAME with the IP or the computer name, SharedFolderName with the the Shared folder name and /mnt/sharedfolder with the local folder you want to link with.
Make a target directory:
Mount the remote share:
If you need credentials to access the remote folder, use the following :
You can also specify if the share is read/write (rw), read only (ro) or write only (wo) with the -o parameter. Here is a complete working example :