当前位置: 代码迷 >> 综合 >> ubuntu配置(nfs/tftp/samb等)完整步骤
  详细解决方案

ubuntu配置(nfs/tftp/samb等)完整步骤

热度:63   发布时间:2023-10-26 20:50:29.0

ubuntu下载地址:
http://mirrors.aliyun.com/ubuntu-releases/

配置ubuntu前需要更新
sudo su
apt-get install update
apt-get install upgrade
如果无法更新请更新源(/etc/apt/souce.list)

ssh:
apt-get install openssh-client
apt-get install openssh-sftp-server
apt-get install openssh-server

nfs:
apt install nfs-common
apt-get install nfs-kernel-server
mkdir /nfsroot
chmod -R 0777 /nfsroot
vi /etc/exports
/nfsroot 192.168.*(rw,sync,no_subtree_check) //末尾增加
/etc/init.d/nfs-kernel-server restart //重启nfs服务
mount -t nfs 192.168.1.4:/nfsroot ./test //测试
umount ./test //卸载

tftp:
apt-get install tftp-hpa tftpd-hpa
mkdir /tftpboot
chmod -R 0777 /tftpboot
vi /etc/default/tftpd-hpa
//改为如下
TFTP_USERNAME=“tftp”
TFTP_DIRECTORY=“/tftpboot”
TFTP_ADDRESS=“:69”
TFTP_OPTIONS=“-c -l -s”
//重启tftp
service tftpd-hpa restart
sudo /etc/init.d/xinetd reload
sudo /etc/init.d/xinetd restart

samb:
apt-get install samba samba-common
vim /etc/samba/smb.conf
mkdir /opt
chmod -R 0777 /opt
vi /etc/samba/smb.conf
//添加
[share]
browseable = yes
path = /opt
public = yes
available = yes
writable = yes

/etc/init.d/smbd restart //重启samb
注意:
1.如果访问共享文件夹报错“你不能访问此共享文件夹,因为你组织的安全策略”
运行>gpedit.msc>计算机配置>管理模板>网络>Lanman工作站>启用不安全的来宾登录,双击选择“已启用”
2.如果出现Depends: openssh-client (= 1:6.6p1-2ubuntu2.13),使用apt-get install openssh-client = 1:6.6p1-2ubuntu2.13安装指定版本依赖库即可。
3.共享文件夹需要安装vmware-tools, 如果执行安装脚本时出现Do you still want to proceed with this installation?请输入yes。
4.如果出现无法安装vmare tools可以用命令行安装,安装后如果没有共享目录可以执行命令看看vmhgfs-fuse .host:/ /mnt/hgfs -o nonempty -o allow_other。