CentOS-Python環境部署
阿新 • • 發佈:2017-11-06
環境部署 tracking href rest ttr 提示 gin not epo
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環境部署