刚装好的centos7优化及安装软件
设置xshell,名称自编。主机为10.0.0.200,用户验证身份root,123456,终端类型改为linux,进行保存连接
∨
命令curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
∨
yum makecache
∨
yum install -y wget
∨
yum install net-tools vim tree htop iftop \
iotop lrzsz sl unzip telnet nmap nc psmisc \
dos2unix bash-completion nethogs glances -y
安装 yum -y install epel-release
查看 yum repolist (安装yum升级版)
∨
关闭虚拟机的防火墙
[root@centos75-model ~]# systemctl stop firewalld #停止
[root@centos75-model ~]# systemctl disable firewalld #关闭开机自启动,注:disable没有d
[root@centos75-model ~]# systemctl status firewalld #检查
[root@centos75-model ~]# setenforce 0
[root@centos75-model ~]# vim /etc/selinux/config
SELINUX=enforcing改成SELINUX=disabled
2.3关闭SELinux
[root@centos75-model ~]# setenforce 0
[root@centos75-model ~]# vim /etc/selinux/config
SELINUX=enforcing改成SELINUX=disabled
不打开文件的两种修改方式
# 方式一
sed -ri 's#(^SELINUX=).*#\1disabled#g' /etc/selinux/config
# 方式二
sed -i '/^SELINUX=/c SELINUX=disabled' /etc/selinux/config
∨
systemctl status firewalld
∨
sed -ri 's#(^SELINUX=).*#\1disabled#g' /etc/selinux/config
∨
echo '* - nofile 65535' >> /etc/security/limits.conf
∨
显卡优化
1,vim /etc/bashrc-------用vim编辑/etc/bashrc文件
2,:set nu ---------显示行号
3,按小键盘向下箭头按键,找到第41行
4,把光标移动到“【”左边,按i进入编辑模式,按#键
5,按ESC键,退出编辑模式,然后按“o(哦)”,到下一行进入编辑模式。
6,粘贴[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\[\e[34;1m\]\u@\[\e[0m\]\[\e[32;1m\]\H\[\e[0m\] \[\e[31;1m\]\w\[\e[0m\]]\\$ "
(粘贴的东西,以[开头,以”结尾,万万别粘贴错了)
7,按esc退出编辑模式,而后按:wq,保存退出
再按 su 变色成功