发表于: 2016-10-13 21:42:11
0 917
2016年10月10日
今天学到的东西
1 安装好CentOS的系统之后需要将网卡启动,才能实现网络功能。其中centos6的命令为:ifup eth0 centos7的命令为:ifup enoxxxx
错误提示:Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6&arch=i386&repo=os error was
14: PYCURL ERROR 6 - "Couldn't resolve host 'mirrorlist.centos.org'"
Error: Cannot find a valid baseurl for repo: base
这个是在安装东西的时候,报的错误,原因是没有连接网络的错误提示,解决方法:1查看ip地址是否存在(网卡是否启动),用到的命令为:ifconfig 。
切换终端
Ctrl+Alt+F2 或Ctrl+Alt+2(当当前的终端(比如在虚拟机下面)死掉之后,更换终端来用的)
Ctrl+u 删除所有已经输入的字符(在键入密码的时候删除掉所有的输入)
Centos7查看ip可以使用的命令:ip addr 或ip a
systemct1 restart NetworkManager.service
重启网卡
dhclient (获取动态ip地址)
目录也是文件,同一目录下的文件不可以与目录同名
查找哪个源包含这个命令
[root@localhost linux-3.18.26]# yum provides */lsb_release
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
redhat-lsb-core-4.0-7.el6.centos.x86_64 : LSB base libraries support for CentOS
Repo : ustack_custom_products
Matched from:
Filename : /usr/bin/lsb_release
再经行安装
[root@localhost linux-3.18.26]#yum install redhat-lsb-core-4.0-7.el6.centos.x86_64
CentOS更改yum源与更新系统
[1] 首先备份/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
[2] 进入yum源配置文件所在文件夹
[root@localhost yum.repos.d]# cd /etc/yum.repos.d/
[3] 下载163的yum源配置文件,放入/etc/yum.repos.d/(操作前请做好相应备份)
[root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
[4] 运行yum makecache生成缓存
[root@localhost yum.repos.d]# yum makecache
[5] 更新系统
[root@localhost yum.repos.d]# yum -y update
评论