Centos 开发软件安装

1.chrome浏览器

1.1 配置yum源

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

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

1.2 写入以内容

[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

保存退出

1.3 安装google chrome浏览器

yum -y install google-chrome-stable

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

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

1.4 运行chrome

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

whereis google-chrome-stable
google-chrome-stable: /usr/bin/google-chrome-stable
ln -s usr/bin/google-chrome-stable /bin/chrome

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


2.nginx

你可能感兴趣的:(Centos 开发软件安装)