当前位置:首页 > 尘凡 > 正文内容

为CentOS&Ubuntu升级最新版本Golang

满纸空言3年前 (2021-12-24)尘凡20220

CentOS 7

官方连接

$ rpm --import https://mirror.go-repo.io/centos/RPM-GPG-KEY-GO-REPO
$ curl -s https://mirror.go-repo.io/centos/go-repo.repo | tee /etc/yum.repos.d/go-repo.repo
$ yum install golang

CentOS 6

如果是CentOS6,访问mirror.go-repo.io会由于CA证书不信任而拒绝,故需要先更新系统的CA证书,然后使用epel的仓库,可以直接下载最新的golang

$ yum install ca-certificates
$ yum install epel-release

# 修改/etc/yum.repos.d/epel.repo,去掉baseurl=的注释,将mirrorlist注释
$ yum clean all && yum update
$ yum install go

Ubuntu 18.04

官方连接

$ sudo add-apt-repository ppa:longsleep/golang-backports
$ sudo apt-get update
$ sudo apt-get install golang-go

如果 ppa.launchpad.net 比较卡的化,

可以修改域名为:https://launchpad.proxy.ustclug.org

文件位置/etc/apt/sources.list.d/longsleep-ubuntu-golang-backports-bionic.list

 

转自:http://www.ir0.cn/upgrade-golang.html

扫描二维码推送至手机访问。

版权声明:本文由满纸空言发布,如需转载请注明出处。

本文链接:https://mzky.cc/post/76.html

标签: golang
分享给朋友:

“为CentOS&Ubuntu升级最新版本Golang” 的相关文章

njmon参数4年前 (2021-04-21)
keepalived+lvs配置3年前 (2021-05-12)
go语言优秀的框架3年前 (2021-07-19)
磁盘扩容3年前 (2021-08-27)
linux ip命令详解3年前 (2021-08-30)

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。