共计 7694 个字符,预计需要花费 20 分钟才能阅读完成。
提示:该实验平台是在 RedHat Linux 6 下进行的
配置成功的前提有三个:
(1):在 Windows 下能 ping 的通 linux
(2):关闭 Linux 防火墙 执行指令:/etc/init.d/iptables stop
(3):使 SElinux 处于宽容模式 执行指令:setenforce permissive
一、配置 tftp 服务器步骤
(1):挂载磁盘,安装 tptp-server 软件包
mount /dev/cdrom /mnt/ …………………………………………………….. 挂载磁盘文件系统
cd /mnt/Packages/ ……………………………………………………. 进入磁盘目录
find ./ -name tftp*
find: 路径必须在表达式之前: tftp-server-0.49-7.el6.i686.rpm
用法: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path…] [expression]
[root@localhost Packages]# rpm -ivh tftp-server-0.49-7.el6.i686.rpm ……………………………………………………………….. 安装 tpft-server 软件包
warning: tftp-server-0.49-7.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
error: Failed dependencies: …………………………………………………….. 安装失败,需要首先安装 xinetd 开头的软件包
xinetd is needed by tftp-server-0.49-7.el6.i686
[root@localhost Packages]# rpm -ivh /mnt/Packages/xinetd …………………………………………….tab 键自动补齐
error: open of /mnt/Packages/xinetd failed: 没有那个文件或目录
[root@localhost Packages]# rpm -ivh /mnt/Packages/xinetd-2.3.14-34.el6.i686.rpm ……………………………………….. 安装依赖文件
warning: /mnt/Packages/xinetd-2.3.14-34.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing… ########################################### [100%]
1:xinetd ########################################### [100%]
[root@localhost Packages]# rpm -ivh tftp-server-0.49-7.el6.i686.rpm ……………………………………………………………….. 安装 tpft-server 软件包
warning: tftp-server-0.49-7.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing… ########################################### [100%]
1:tftp-server ########################################### [100%] ………………………… 安装成功
[root@localhost Packages]#
(2):配置 tftp 服务器:执行指令:vim /etc/xinetd.d/tftp
[root@localhost Packages]# vim /etc/xinetd.d/tftp
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /home ……………………………………….. 将服务器的访问目录设为 /home
disable = no ……………………………………………. 使能 tftp 服务器
per_source = 11
cps = 100 2
flags = IPv4
}
————————————– 分割线 ————————————–
相关阅读:
Ubuntu 下 tftp 服务搭建 http://www.linuxidc.com/Linux/2012-08/67933.htm
TFTP 服务器配置 http://www.linuxidc.com/Linux/2012-07/64785.htm
Ubuntu Linux 配置 TFTP 下载服务器 http://www.linuxidc.com/Linux/2010-12/30394.htm
Ubuntu 11.10 配置 tftp Server http://www.linuxidc.com/Linux/2012-05/60808.htm
Ubuntu 12.04 搭建 TFTP 服务 http://www.linuxidc.com/Linux/2014-04/100144.htm
Ubuntu 12.04 搭建 tftp 服务器的安装、设置、调试 http://www.linuxidc.com/Linux/2014-04/100114.htm
————————————– 分割线 ————————————–
(3)重启 tftp 服务 /etc/init.d/xinetd restart
(4)测试 tftp 设置是否成功:方法:用 ftfp 客户端测试程序,来从 linux 下的 tftp 服务器下下载文件
更多详情见请继续阅读下一页的精彩内容:http://www.linuxidc.com/Linux/2014-05/101646p2.htm
二:配置 nfs 服务器的步骤:
1. 配置 NFS 服务器 vim /etc/exports(该文件系统默认为空的)
在其中添加 /tmp 192.168.1.*(rw,sync,no_root_squash)
/tmp: 共享的目录
*: 允许访问共享目录的主机 IP
(rw,sync,no_root_squash): 访问权限
2. 启动 NFS 服务器
/etc/init.d/nfs restart
[root@localhost home]# /etc/init.d/nfs restart
关闭 NFS 守护进程:[失败]
关闭 NFS mountd:[失败]
关闭 NFS quotas:[失败]
启动 NFS 服务:[确定]
关掉 NFS 配额:[确定]
启动 NFS mountd:[确定]
正在启动 RPC idmapd:[确定]
正在启动 RPC idmapd:[确定]
启动 NFS 守护进程:[确定]
[root@localhost home]#
Ubuntu 12.04 安装 NFS server http://www.linuxidc.com/Linux/2012-09/70728.htm
NFS 服务器安装配置实现 Ubuntu 12.04 与 ARM 文件共享 http://www.linuxidc.com/Linux/2012-10/73159.htm
Ubuntu 搭建 nfs 服务器 http://www.linuxidc.com/Linux/2012-10/71930.htm
文件服务器 NFS 配置详解 http://www.linuxidc.com/Linux/2013-06/86542.htm
Ubuntu 下搭建 NFS 网络文件系统服务器 http://www.linuxidc.com/Linux/2013-07/87367.htm
Heartbeat_ldirector+LB+NFS 实现 HA 及 LB、文件共享 http://www.linuxidc.com/Linux/2013-06/85292.htm
CentOS 5.5 配置 NFS 服务器教程 http://www.linuxidc.com/Linux/2013-03/81737.htm
Ubuntu 12.10 下 NFS 的安装使用 http://www.linuxidc.com/Linux/2013-03/80478.htm
提示:该实验平台是在 RedHat Linux 6 下进行的
配置成功的前提有三个:
(1):在 Windows 下能 ping 的通 linux
(2):关闭 Linux 防火墙 执行指令:/etc/init.d/iptables stop
(3):使 SElinux 处于宽容模式 执行指令:setenforce permissive
一、配置 tftp 服务器步骤
(1):挂载磁盘,安装 tptp-server 软件包
mount /dev/cdrom /mnt/ …………………………………………………….. 挂载磁盘文件系统
cd /mnt/Packages/ ……………………………………………………. 进入磁盘目录
find ./ -name tftp*
find: 路径必须在表达式之前: tftp-server-0.49-7.el6.i686.rpm
用法: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path…] [expression]
[root@localhost Packages]# rpm -ivh tftp-server-0.49-7.el6.i686.rpm ……………………………………………………………….. 安装 tpft-server 软件包
warning: tftp-server-0.49-7.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
error: Failed dependencies: …………………………………………………….. 安装失败,需要首先安装 xinetd 开头的软件包
xinetd is needed by tftp-server-0.49-7.el6.i686
[root@localhost Packages]# rpm -ivh /mnt/Packages/xinetd …………………………………………….tab 键自动补齐
error: open of /mnt/Packages/xinetd failed: 没有那个文件或目录
[root@localhost Packages]# rpm -ivh /mnt/Packages/xinetd-2.3.14-34.el6.i686.rpm ……………………………………….. 安装依赖文件
warning: /mnt/Packages/xinetd-2.3.14-34.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing… ########################################### [100%]
1:xinetd ########################################### [100%]
[root@localhost Packages]# rpm -ivh tftp-server-0.49-7.el6.i686.rpm ……………………………………………………………….. 安装 tpft-server 软件包
warning: tftp-server-0.49-7.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing… ########################################### [100%]
1:tftp-server ########################################### [100%] ………………………… 安装成功
[root@localhost Packages]#
(2):配置 tftp 服务器:执行指令:vim /etc/xinetd.d/tftp
[root@localhost Packages]# vim /etc/xinetd.d/tftp
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /home ……………………………………….. 将服务器的访问目录设为 /home
disable = no ……………………………………………. 使能 tftp 服务器
per_source = 11
cps = 100 2
flags = IPv4
}
————————————– 分割线 ————————————–
相关阅读:
Ubuntu 下 tftp 服务搭建 http://www.linuxidc.com/Linux/2012-08/67933.htm
TFTP 服务器配置 http://www.linuxidc.com/Linux/2012-07/64785.htm
Ubuntu Linux 配置 TFTP 下载服务器 http://www.linuxidc.com/Linux/2010-12/30394.htm
Ubuntu 11.10 配置 tftp Server http://www.linuxidc.com/Linux/2012-05/60808.htm
Ubuntu 12.04 搭建 TFTP 服务 http://www.linuxidc.com/Linux/2014-04/100144.htm
Ubuntu 12.04 搭建 tftp 服务器的安装、设置、调试 http://www.linuxidc.com/Linux/2014-04/100114.htm
————————————– 分割线 ————————————–
(3)重启 tftp 服务 /etc/init.d/xinetd restart
(4)测试 tftp 设置是否成功:方法:用 ftfp 客户端测试程序,来从 linux 下的 tftp 服务器下下载文件
更多详情见请继续阅读下一页的精彩内容:http://www.linuxidc.com/Linux/2014-05/101646p2.htm