基于 ARM 挂载 NFS ubuntu
Mount NFS on ARM based ubuntu
我有一个 Synology NAS 并且我创建了一个 NFS 共享。我用的是官方教程https://www.synology.com/de-de/knowledgebase/DSM/tutorial/File_Sharing/How_to_access_files_on_Synology_NAS_within_the_local_network_NFS
但是现在我无法在基于 ARM 的 ubuntu 上挂载 NFS 共享。
root@lubuntu:~# mount 192.168.1.100:/volume1/Mediacenter /mnt/Mediacenter
mount.nfs: No such device
我尝试了 https://wiki.archlinux.org/index.php/NFS/Troubleshooting#Client-side_issues
中的以下内容
lsmod | grep nfs
输出为空
root@lubuntu:~# modprobe nfs
modprobe: ERROR: ../libkmod/libkmod.c:556 kmod_search_moddep() could not open moddep file '/lib/modules/3.10.0/modules.dep.bin'
有人可以帮我吗?
我以前遇到过类似的问题,我找到的解决方案是在启动时实际挂载共享。这是在 Ubuntu 上的 fstab 中完成的。但是,最好的方法是安装 'cifs'(通用 Internet 文件系统),这样您就可以挂载 Samba 共享和其他网络文件系统。
您可以使用 apt-get 安装 CIFS
sudo apt-get install cifs-utils
安装后,您必须编辑“/etc/fstab”并将此行添加到文件底部:
//ip_of_share/share_name /mount/location cifs defaults 0 0
这将允许安装共享。如果您需要登录共享,那么您可以这样做:
//ip_of_share/share_name /mount_location cifs credentials=/location,defaults 0 0
如果您需要登录共享,则必须添加凭据文件。您可以通过使用 nano 或您喜欢的编辑器创建一个新文件来做到这一点:
sudo nano /location/of/credentials
创建后,必须添加用户名和密码节点:
username=username_of_share_user
password=password_of_share_user
为了使您的文件凭据文件尽可能安全,您可以使用 chmod 关闭文件访问权限以使其只读:
sudo chmod 400 /location/of/credentials
如果您希望共享挂载在特定的用户和组下,您可以使用:
//ip_of_share/share_name /mount_location cifs credentials=/location,uid=user_id,gid=group_id,defaults 0 0
最后,您可以重新启动,或者执行以下操作:
sudo mount /mount/location
希望对您有所帮助。
我有一个 Synology NAS 并且我创建了一个 NFS 共享。我用的是官方教程https://www.synology.com/de-de/knowledgebase/DSM/tutorial/File_Sharing/How_to_access_files_on_Synology_NAS_within_the_local_network_NFS
但是现在我无法在基于 ARM 的 ubuntu 上挂载 NFS 共享。
root@lubuntu:~# mount 192.168.1.100:/volume1/Mediacenter /mnt/Mediacenter
mount.nfs: No such device
我尝试了 https://wiki.archlinux.org/index.php/NFS/Troubleshooting#Client-side_issues
中的以下内容lsmod | grep nfs
输出为空
root@lubuntu:~# modprobe nfs
modprobe: ERROR: ../libkmod/libkmod.c:556 kmod_search_moddep() could not open moddep file '/lib/modules/3.10.0/modules.dep.bin'
有人可以帮我吗?
我以前遇到过类似的问题,我找到的解决方案是在启动时实际挂载共享。这是在 Ubuntu 上的 fstab 中完成的。但是,最好的方法是安装 'cifs'(通用 Internet 文件系统),这样您就可以挂载 Samba 共享和其他网络文件系统。
您可以使用 apt-get 安装 CIFS
sudo apt-get install cifs-utils
安装后,您必须编辑“/etc/fstab”并将此行添加到文件底部:
//ip_of_share/share_name /mount/location cifs defaults 0 0
这将允许安装共享。如果您需要登录共享,那么您可以这样做:
//ip_of_share/share_name /mount_location cifs credentials=/location,defaults 0 0
如果您需要登录共享,则必须添加凭据文件。您可以通过使用 nano 或您喜欢的编辑器创建一个新文件来做到这一点:
sudo nano /location/of/credentials
创建后,必须添加用户名和密码节点:
username=username_of_share_user
password=password_of_share_user
为了使您的文件凭据文件尽可能安全,您可以使用 chmod 关闭文件访问权限以使其只读:
sudo chmod 400 /location/of/credentials
如果您希望共享挂载在特定的用户和组下,您可以使用:
//ip_of_share/share_name /mount_location cifs credentials=/location,uid=user_id,gid=group_id,defaults 0 0
最后,您可以重新启动,或者执行以下操作:
sudo mount /mount/location
希望对您有所帮助。