本文只作为记录吧。
有些东西不记一下,真的很容易忘记,下面说一下步骤吧。
- 打开子系统,这个就不多说了吧。
- 按照以下命令开始执行安装
1、先设置源
cd /etc/apt/
sudo cp sources.list sources.list.bak && sudo vim sources.list
将源都设置为中科的源
deb http://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb http://mirrors.ustc.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
deb http://mirrors.ustc.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb http://mirrors.ustc.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse
deb http://mirrors.ustc.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse
deb-src http://mirrors.ustc.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
2、安装和更新程序
sudo apt update
sudo apt upgrade
3、修改pip镜像源
mkdir ~/.pip && vi ~/.pip/pip.conf
将源更新为如下
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
4、因为宝塔是使用Python开发的,所以,先安装一些Python软件
sudo apt-get install python-dateutil python-docutils python-feedparser python-gdata python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi
5、开始安装宝塔
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh
6、后面的事情,在这里不多说了,下面将将安装Golang,先从官方下载,或者直接使用如下命令
cd /www/server && wget -O golang.tar.gz https://studygolang.com/dl/golang/go1.11.linux-amd64.tar.gz
下载好之后,解压出来即可
tar -xzvf golang.tar.gz
7、配置GO的相关文件
vim /etc/profile
在最下面添加下面内容,如果profile不可写,请使用sudo
export GOROOT=/www/server/go
export GOBIN=$GOROOT/bin
export GOPKG=$GOROOT/pkg/tool/linux_amd64
export GOARCH=amd64
export GOOS=linux
export GOPATH=/www/wwwroot/Golang
export PATH=$PATH:$GOBIN:$GOPKG:$GOPATH/bin
8、执行和测试
source /etc/profile
然后再输入下面命令就可以看到go版本了
go version
9、最后,创建一下golang的目录,以后golang文件都放那里就可以了
mkdir /www/wwwroot/Golang
好了,9个步骤搞完。用时1小时。