ubuntu搭建vscode的go环境 && 编译调试runc 全过程
删除旧版本go
yum remove go
apt-get remove go
rm -r /usr/local/go
更新go
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go
配置go环境
//版本1.13+
go env -w GOPATH=$HOME/go
//否则
export GOPATH=$HOME/go
github 配置国内加速
git config --global url."https://hub.fastgit.org".insteadOf https://github.com
配置go代理
export GOPROXY=https://goproxy.io,direct
export GOPRIVATE=git.mycompany.com,github.com/my/private
// go 1.13 及以上
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct
// go 1.12及以下
export GO111MODULE=on
export GOPROXY=https://goproxy.io
下载安装vscode
安装插件:除了go需要,其他大家随意
go
chinese
rainbow
……
使用install all 安装其他插件
runc
//安装libseccomp
sudo apt-get install libseccomp-dev
//create a 'github.com/opencontainers' in your GOPATH/src
mkdir -p $GOPATH/go/src/github.com/opencontainers
cd $GOPATH/go/src/github.com/opencontainers
//git clone
git clone https://github.com/opencontainers/runc
cd runc
//安装开发组件
sudo apt-get install build-essential
//安装criu
sudo add-apt-repository ppa:criu/ppa
sudo apt-get update
sudo apt install criu
make
sudo make install
vscode 调试 runc
添加调试参数
这里添加参数
成功!
如果编译出来发现和运行的二进制程序不一样
修改makefile中的二进制输出位置参考