记录新安装虚拟机后的一些必要操作

安装centos7 后的一些操作,简单的记录一下,以备不时之需。

一、新安装好的centos需要设置一下网卡:

1、vi /etc/sysconfig/network-scripts/ifcfg-ens33  
# 最后的文件名根据实际情况决定,可以先使用ip add命令查看一下网络设置,其中ens开头的就是你要修改的文件名,我的是ens33
2、将ONBOOT参数修改yes
3、wq保存退出
4、systemctl restart network 重启网络

二、配置yum源为国内源

1、cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
2、vi /etc/yum.repos.d/CentOS-Base.repo 
3、在 mirrorlist= 开头行前面加 # 注释掉;并将 baseurl= 开头行取消注释(如果被注释的话),把该行内的域名(例如mirror.centos.org)替换为 mirrors.tuna.tsinghua.edu.cn

以下是yum部分国内源:参考网址:https://www.cnblogs.com/moniter/p/yum.html

阿里巴巴开源镜像站
https://opsx.alibaba.com/mirror
http://mirrors.aliyun.com/centos/
网易开源镜像站
http://mirrors.163.com/
Centos社区镜像站
http://mirror.centos.org/centos/
sohu开源镜像站
http://mirrors.sohu.com/help/
中科大开源镜像站(中国官方镜像站)
http://centos.ustc.edu.cn/
上海交通大学开源软件镜像站
http://ftp.sjtu.edu.cn/
北京理工大学 开源软件镜像站
http://mirror.bit.edu.cn/web/
北京交通大学自由与开源软件镜像站
https://mirror.bjtu.edu.cn/
兰州大学开源社区镜像站
https://mirror.lzu.edu.cn/
清华大学开源软件镜像站
https://mirrors.tuna.tsinghua.edu.cn/
江苏开放大学开源软件镜像站
http://mirrors.jstvu.edu.cn/
大连理工大学开源镜像站
http://mirror.dlut.edu.cn/
淡江大学伺服器(台湾)
http://ftp.tku.edu.tw/
國立暨南國際大學檔案伺服器(台湾)
http://ftp.ncnu.edu.tw/
Nginx-yum源
http://nginx.org/packages/
mysql-yum源
https://repo.mysql.com/yum
红帽镜像:
https://developers.redhat.com/products/
Centos 镜像
https://www.centos.org/download/
Ubuntu镜像
https://www.ubuntu.com/download/desktop
Deepin镜像
https://www.deepin.org/mirrors/packages/
fedora镜像
https://getfedora.org/en/server/download/
Windows镜像
https://msdn.itellyou.cn/

三、配置pip命令

1、yum -y install epel-release               
2、yum -y install python-pip                
3、pip --version  查看pip版本
4、pip install --upgrade pip 更新pip
5、配置pip源为国内源:
    ①临时配置pip源:在pip指令后面加上-i参数指定源,–trusted-host是指设置为受信源,否则在安全性较高的连接下是连接不上的。
     pip install --upgrade pip  -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn
    ②永久配置pip源:修改用户根目录下 ~/.pip/pip.conf 文件添加可信源,如果文件不存在,可直接创建。
写入此配置
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

 以下是pip部分国内源:

阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

四、Centos与主机通过Xshell互传文件

yum install -y lrzsz
sz filename  # centos -->  主机
rz   # 主机 --> centos

 

你可能感兴趣的:(常用操作,Linux)