zoukankan      html  css  js  c++  java
  • ubuntu12.04下一个samba、tftp、nfs构造

    1.samba setting
      1>apt-get install samba
        apt-get install smbfs
      2>mkdir /home/linux/sharefile
        chmod 777 /home/linux/sharefile
      3>vim /etc/samba/smb.conf
        add as follows:
    [share]
    path=/home/linux/sharefile
    public  = yes
    writable= yes
    read    = yes
      4>/etc/init.d/samba restart
      
    2.tftp setting
    1>check if tftp installed:
     dpkg -s tftp-hpa
    2>apt-get install tftp-hpa
     apt-get install tftpd-hpa
    3>sudo vim /etc/default/tftpd-hpa
     change as follows:
      TFTP_USERNAME="tftp"
      TFTP_DIRECTORY="/home/linux/tftpfile"
      TFTP_ADDRESS="0.0.0.0:69"
      TFTP_OPTIONS="-c -s -l"
    4>sudo service tftpd-hpa restart
    5>test:
     tftp 127.0.0.1
    tftp>get file
    tftp>put file
    tftp>q


    3.nfs setting
    1>apt-get install nfs-kernel-server
    2>vim /etc/exports
     add as follows:
       /home/linux/nfsfile  *(rw,sync,no_root_squash,no_subtree_check)
    3>/etc/init.d/nfs-kernel-server restart
    4>test:
    mkdir /mnt/nfs
    monut -t nfs 127.0.0.1:/home/linux/nfsfile /mnt/nfs

    版权声明:本文博主原创文章,博客,未经同意不得转载。

  • 相关阅读:
    css的网页布局案例
    position定位及实际应用
    float浮动以及案例演示
    第二十三节 margin合并实例
    第二十二节 margin合并
    第二十一节 margin技巧
    第二十节 盒子练习
    第十九节 盒子真实尺寸
    第十八节 盒子案例
    第十七节 盒子模型
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/4791005.html
Copyright © 2011-2022 走看看