linux相关环境配置

  • 环境说明
1
2
3
4
5
6
7
8
9
10
11
12
[root@localhost Python-3.6.6]# cat /etc/redhat-release 
Red Hat Enterprise Linux Server release 7.4 (Maipo)
[root@localhost Python-3.6.6]# uname -a
Linux localhost.localdomain 3.10.0-693.el7.x86_64 #1 SMP Thu Jul 6 19:56:57 EDT 2017 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost Python-3.6.6]# getenforce
Disabled
[root@localhost Python-3.6.6]# systemctl status firewalld.service
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
[root@localhost Python-3.6.6]#
  • 配置yum源
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
cd /etc/yum.repos.d/
vim 163.repo
[163]
name=163
baseurl=http://mirrors.163.com/centos/7/os/x86_64/
gpgcheck=0
enabled=1
vim google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
  • 安装桌面环境
1
yum groupinstall -y  "Server with GUI"
  • 配置vim
1
2
3
4
5
mkdir -p ~/.vim
unzip bundle.zip -d ~/.vim
mv vimrc ~/.vimrc

#本配置使用网上资源,可以根据需要自行更改配置