工具:VMware,CRT;


关闭防火墙 关闭防火墙并设置开机开不启动 查看当前状态 [root@localhost ~]# systemctl status firewalld.service #查看firewalld状态 [root@localhost ~]# systemctl stop firewalld #关闭 [root@localhost ~]# systemctl start firewalld #开启 [root@localhost ~]# systemctl disable firewalld #开机自动关闭 //RHLE7 [root@localhost ~]# chkconfig --list|grep network #查看开机是否启动 //RHLE6 [root@localhost ~]# systemctl enable firewalld #开机自动启动


临时和永久关闭Selinux 临时关闭 [root@localhost ~]# getenforce Enforcing [root@localhost~]# setenforce 0 setenforce: SELinux is disabled 永久关闭 [root@localhost ~]# vim /etc/selinux/config 把:SELINUX=enforcing 改成:SELINUX=disabled [root@localhost ~]# reboot 挂载光盘镜像 配置本地yum源,并清空原yum缓存,然后生成新的缓存列表安装完成 yum的一切配置信息都储存在一个叫yum.repos.d的配置文件中,通常位于/etc/yum.repos.d目录下。 安装两个FTP服务 具体命令:yum repolist; yum install ftp 创建一个用户登录FTP服务器配置无密码登录并可以创建重命名及删除命令