windows wsl2 unbuntu grafana 二次开发环境搭建

一、windows10 安装wsl2

https://docs.microsoft.com/en-us/windows/wsl/install-win10(微软官网自行查看)

二、wsl ubunt切换root账号

  1. cd C:\Users\你的用户名\AppData\Local\Microsoft\WindowsApps。
  2. .\ubuntu1804.exe config --default-user root。

三、grafana的国内仓库

https://gitee.com/mirrors/grafana

四、vscode访问虚拟机文件

\\wsl$

五、前端安装

yarn install --pure-lockfile

六、ubuntu golang 下载教程

  1. lsb_release -a
  2. sudo apt-get update
  3. sudo apt-get upgrade
  4. sudo apt-get install golang-go
  5. wget https://dl.google.com/go/go1.16.linux-amd64.tar.gz
  6. sudo tar -xvf go1.16.linux-amd64.tar.gz
  7. sudo mv go /usr/local
  8. sudo nano ~/.bashrc

把下面配置放到最下面

#Go Global variables

export GOROOT=/usr/local/go export GOPATH=$HOME/go export PATH=$GOPATH/bin:$GOROOT/bin:$PATH

注: go版本1.16

go默认镜像

https://proxy.golang.org,direct

go国内镜像

go env -w GOPROXY=https://goproxy.cn,direct

七、后台启动

1、go run build.go setup

2、go run build.go build

3、make run

你可能感兴趣的:(前端,javascript,react.js,golang)