码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu下NFS,TFTP服务搭建

时间:2016-09-25 20:33:25      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

环境:Ubuntu

一. 搭建NFS服务器

  (1)安装:

      sudo apt-get install nfs-kernel-server    #安装NFS服务器端

      sudo apt-get install nfs-common     #安装NFS客户端

  (2)添加NFS共享目录

      1)创建共享文件夹,如/nfsroot:

        mkdir /nfsroot

        sudo chmod -R 777 /nfsroot

        sudo chmod -R nobody /nfsroot

        技术分享

      2)添加共享路径:sudo vi /etc/exports

       在该文件最后添加一行,/nfsroot是共享目录

         /nfsroot  *(rw,sync,no_root_squash)  

        技术分享

  (3)启动NFS服务

        技术分享

 

  (4)测试NFS服务器

      重启NFS服务器

     1)查看NFS服务器ip:192.168.1.104

        技术分享

     2)在测试机上挂载NFS服务器的共享目录

        技术分享

 

二.搭建tftp服务器

   (1)安装: sudo apt-get install tftpd-hpa tftp-hta

        技术分享

   (2)更改配置文件: vi /etc/defualt/tftp-hta 

        技术分享

   (3)创建tftp根目录

        技术分享

 

   (4)启动tftp服务: sudo service tftpd-hpa start

        技术分享

   (5)测试tftp服务

     重启tftp服务器

      1)在tftp服务器上创建测试文件: echo "Hello" > /tftpshare/hello.txt

        技术分享

      2)测试机连接

        技术分享

 

Ubuntu下NFS,TFTP服务搭建

标签:

原文地址:http://www.cnblogs.com/ssooking/p/5906539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!