美文网首页
ubuntu虚拟机设置NFS文件共享

ubuntu虚拟机设置NFS文件共享

作者: 坤kln | 来源:发表于2019-05-29 12:00 被阅读0次

    参考多篇博客,然后自己试验,顺便写一下自己测试的过程。

    1. 设置虚拟机里的ubuntu网络连接为桥接,是为了能让外部设备访问到虚拟的ubuntu image

    2. 设置虚拟机里的ubuntu为固定IP,“编辑连接”,IPv4设置,方法改为手动,添加一个固定IP地址,填写DNS,否则否则无法解析域名,无法登陆外部网站,这里似乎要重启,重启后才能登陆外部网站

    image image


    3. 安装nfs

    sudo apt-get install portmap
    

    我使用的是ubuntu14,会提示“选取 rpcbind 而非 portmap”,然后会安装或者检查更新rpcbind,使用rpcbind即可

    sudo apt-get install nfs-kernel-server
    

    4. 配置NFS路径

    sudo gedit /etc/exports
    

    必须使用sudo获取root权限否则无权限修改文件,文件末尾添加:

    /home/你共享的路径 *(rw,sync,no_root_squash)
    

    5. 启动NFS

    sudo /etc/init.d/portmap start
    sudo /etc/init.d/nfs-kernel-server start
    

    由于没有portmap,所以第一句没必要执行,可以尝试sudo /etc/init.d/rpcbind start或者/etc/init.d/rpcbind restart或者/etc/init.d/rpcbind force-reload,可能都是被拒绝执行,不过发现似乎没啥影响

    6. 在arm板或者另一个linux系统中挂载虚拟机里共享的文件夹

    我使用的arm需要使用如下命令挂载,/mnt/kk这个文件夹要自己创建

    mount -o vers=4 192.168.1.65:/home/你的共享路径 /mnt/kk
    

    其他使用

    mount -t nfs -o nolock 192.168.1.65:/home/你的共享路径 /mnt/kk
    

    如果出现错误:

    mount: /mnt/kk: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program.

    执行如下命令安装nfs-common

    sudo apt-get install nfs-common
    

    7. 取消挂载

    umount /mnt/kk
    

    相关文章

      网友评论

          本文标题:ubuntu虚拟机设置NFS文件共享

          本文链接:https://www.haomeiwen.com/subject/kgwetctx.html