centos安装chrome并查看版本
时间: 2023-12-10 15:04:58 浏览: 168
chrome for centos installation
您可以按照以下步骤在CentOS中安装Chrome并查看其版本:
1. 打开终端并使用root用户或拥有sudo权限的用户登录。
2. 安装Chrome浏览器:
```
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
yum localinstall google-chrome-stable_current_x86_64.rpm
```
3. 安装完成后,运行以下命令查看Chrome浏览器版本:
```
google-chrome --version
```
这将输出Chrome浏览器的版本号。
如果您遇到了问题,请尝试使用以下命令打开Chrome浏览器:
```
google-chrome --no-sandbox
```
注意:在CentOS 7中,需要使用Chrome浏览器的版本为74或更低版本。如果您使用的是CentOS 8,则可以使用最新版本的Chrome浏览器。
阅读全文