Linux 常用命令
查看ip :ip address
查看主机名:hostname
修改主机名:hostnamectl set-hostname centos7
设置使用代理
yum代理设置
编辑文件为:/etc/yum.conf
在里面添加这一行:proxy=IP:PORT
这里的IP 为你要设置的IP ,PORT 是你要设置的端口
wget代理设置
编辑文件为:/etc/wgetrc
添加下面两行:
http_proxy = IP:PORT
ftp_proxy = IP:PORT
系统环境代理设置
编辑文件为/etc/profile,如果只想给自己的账户设置,则编辑~/.bashrc即可
添加三行:
#add proxy for network
export http_proxy=“http://child-prc.intel.com:913”
export https_proxy=“http://child-prc.intel.com:913”
export ftp_proxy=$http_proxy
然后source /etc/profile 或者source ~/.bashrc即可
修改yum源为阿里云
1 备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
2 下载repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3 清理缓存
yum makecache