码迷,mamicode.com
首页 > 编程语言 > 详细

CentOS-Python环境部署

时间:2017-11-05 23:40:13      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:python   logs   rom   pos   processor   copy   www   提示   部署   

Cannot find a valid baseurl for repo: base/7/x86_6

连不上网啊,大爷!找资料在网上看到 hopkings 的解决方案:

技术分享
方法一、

  1、打开 vi /etc/sysconfig/network-scripts/ifcfg-eth0(每个机子都可能不一样,但格式会是“ifcfg-eth数字”),把ONBOOT=no,改为ONBOOT=yes

  2、重启网络:service network restart

方法二、

  1、打开 vi /etc/resolv.conf,增加 nameserver 8.8.8.8

  2、重启网络: service network restart

Centos7安装chrome浏览器

 

1. 配置yum源

在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo

cd /ect/yum.repos.d/
vim google-chrome.repo

 

写入如下内容:

[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

 

安装google chrome浏览器:

 yum -y install google-chrome-stable

 

Google官方源可能在中国无法使用,导致安装失败或者在国内无法更新,可以添加以下参数来安装:

yum -y install google-chrome-stable --nogpgcheck

 

运行chrome 
找到chrome路径,并做个软连接,方便使用:

which google-chrome-stable
ln -s xxx /bin/chrome

使用root用户启动chrome示例时会提示添加参数–no-sandbox flag

chrome --no-sandbox flag

CentOS-Python环境部署

标签:python   logs   rom   pos   processor   copy   www   提示   部署   

原文地址:http://www.cnblogs.com/mitsui/p/7789087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!