赞
踩
一、下载镜像
下载地址:
https://www.chinauos.com/resource/download-server
下载版本要与系统镜像版本一致:
二、上传服务器并挂载
1、上传服务器
2、挂载并搭建yum源
(1)新建挂载目录
mkdir -p /mnt/uos-20
(2)挂载
mount /root/uniontechos-server-20-1050u2a-arm64.iso /mnt/uso-20/
(3)查看是否挂载成功。
进入到/mnt/uso-20
ls -l
目录下有上述文件说明挂载成功。
(4)配置yum源
cd /etc/yum.repos.d
并编辑(没有.repo)新建即可。
vim zhuo.repo
i esc
:wq
(5)清空仓库
yum clean all
(6)更新仓库
yum update --allowerasing
(7)清理yum 源缓存。
yum makecache
三、安装nfs
1、查找nfs , yum search nfs
yum -y install 安装上述软件
2、查看是否安装nfs 或rpc
netstat -ntlp(未发现)
3、安装
进入:
cd /mnt/uso-20/BaseOS/Packages
yum search nfs 可以看到有 nfs-utils
安装:yum install -y nfs-utils
查看是否安装成功:
rpm -qa nfs-utils
查看是否安装rpc.
rpm -qa rpcbind
四、启动nfs
netstat -ntlp
2、启动rpcbind(一般都是自启动的,忽略)
查看启动状态
systemctl status rpcbind
3、启动nfs
(1)查看是否启动:
systemctl status nfs-server
(2)启动
systemctl status nfs-server
4、添加nfs开机自启动。
五、服务器端配置
mkdir /data/teasbase/
2、指定要共享的目录及权限
修改/etc/exports文件
vim /etc/exports
/data/teasbase ip1/24(rw,sync,insecure,no_subtree_check,no_root_squash)
/data/teasbase ip2/24(rw,sync,insecure,no_subtree_check,no_root_squash)
rw,(读写)
sync,(同步写入文件到内存和硬盘中)
insecure,
no_subtree_check,
no_root_squash
3、查看服务器共享的目录
exports -v
4、配置完后重启nfs
systemctl restart nfs
systemctl status nfs
六、客户端挂载
1、查看服务器共享
showmount -e nfs-server ip
2、挂载
mount -t nfs 服务ip:/opt/share/ /mnt/
将服务器端的/opt/share 下的所有文件,映射到客户端下mnt目录下。
3、查看是否挂载成功
Lsblk或查看mnt目录下是否有nfs服务端的目录。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。