记一下在centos7上安装chrome-gnome-shell
chrome-gnome-shell是主机与浏览器之间的连接器
在yum源里是没有,需要从github上clone或者下载安装
下载地址:
https://gitlab.gnome.org/GNOME/chrome-gnome-shell (opens new window)
下载后依次执行命令:
cd chrome-gnome-shell
sudo yum install -y cmake
sudo yum install -y jq
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_EXTENSION=OFF ../
sudo make install