CentOS7環境下安裝Chrome

2022-02-15 23:28:24 字數 769 閱讀 9240

/etc/yum.repos.d/目錄下新建檔案google-chrome.repo,向其中新增如下內容:

[google-chrome]

name=google-chrome

baseurl=

enabled=1

gpgcheck=1

gpgkey=

清一下yum cache

yum clean all

yum makecache

yum -y install google-chrome-stable
注:google官方源在國內可能無法正常訪問,導致安裝失敗或安裝後無法正常更新,可以嘗試新增--nogpgcheck引數再安裝。

centos7環境下安裝MySQL

安裝mysql官方的yum repository wget i cyum y install mysql57 community release el7 10.noarch.rpm安裝mysql服務 yum y install mysql community server啟動mysql服務 syst...

Centos7環境下安裝gitlab

1.安裝依賴 yum install curl openssh server openssh clients postfix cronie y 2.開啟postfix systemctl start postfix 3.設定postfix開機自啟動 systemctl enable postfix....

Centos7環境下安裝curl

curl是利用url語法在命令列方式下工作的開源檔案傳輸工具。它被廣泛應用在unix 多種linux發行版中,並且有dos和win32 win64下的移植版本。官網文件 wget2.解壓到當前目錄 tar zxf curl 7.54.0.tar.gz3.進入解壓後的目錄內 cd curl 7.54....