- live cd 与 alt cd 区别
https://ubuntuforums.org/showthread.php?t=2390785
禁止开机主机名重置
sudo touch /etc/cloud/cloud-init.disabled
- reinstall config files
apt-get -o DPkg::Options::="--force-confmiss" --reinstall install bind9
OR
dpkg --force-all --purge bind9 # remove all
apt-get install bind9
- nodejs LTS
sudo apt-get install python-software-properties
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
- golang
export GOVERSION=1.8.1
export GOROOT=/usr/local/go$GOVERSION
test -e go${GOVERSION}.linux-amd64.tar.gz || wget https://storage.googleapis.com/golang/go${GOVERSION}.linux-amd64.tar.gz
rm -rf /usr/local/go
tar -C /usr/local -xzf go${GOVERSION}.linux-amd64.tar.gz
mv /usr/local/go /usr/local/go$GOVERSION
update-alternatives --install /usr/local/go go /usr/local/go$GOVERSION 181
- jdk 1.8 8u131
JDK8_VERSION=8u192
url="http://download.oracle.com/otn-pub/java/jdk/8u192-b12/750e1c8617c5452694857ad95c3ee230/jdk-8u192-linux-x64.tar.gz"
wget -c --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http://www.oracle.com/; oraclelicense=accept-securebackup-cookie" $url
url="http://download.oracle.com/otn-pub/java/jdk/8u192-b12/750e1c8617c5452694857ad95c3ee230/server-jre-8u192-linux-x64.tar.gz"
wget -c --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http://www.oracle.com/; oraclelicense=accept-securebackup-cookie" $url
test -d /usr/java || mkdir -p /usr/java
tar zxfv jdk-8u192-linux-x64.tar.gz -C /usr/java
update-alternatives --install /usr/java/latest jdk /usr/java/jdk1.8.0_192 8