红联Linux门户
Linux帮助

Ubuntu 12.04上享用新版本Linux的功能

发布时间:2016-12-15 14:52:14来源:blog.csdn.net/lusing作者:Jtag特工
我司有一批Ubuntu 12.04的服务器暂时没有升级计划,但是像编译Android N代码等需求要求Linux的版本更新。
如何在不升级Ubuntu 12.04的情况下实现升级Linux版本的需求呢?我们有两大利器可以使用:Docker和虚拟机。
 
Docker大法
Docker安装
升级内核
Docker需要64位的Linux支持,幸好,这条是满足的。
Docker需要kernel 3.10以上版本的支持。
首先我们查看一下当前的kernel版本号:
uname -r
我的是3.2.0-60-generic,升级吧:
sudo apt-get update
sudo apt-get install linux-image-generic-lts-trusty
sudo reboot
重启之后再看,kernel已经升级到3.13.0-105-generic,终于符合要求了。
 
升级apt源
首先使用https传输和ca认证:
sudo apt-get install apt-transport-https ca-certificates
然后添加GPG密钥:
sudo apt-key adv \
--keyserver hkp://ha.pool.sks-keyservers.net:80 \
--recv-keys 58118E89F3A912897C070ADBF76221572C52609D
接着将”deb https://apt.dockerproject.org/repo ubuntu-precise main”这一行,添加到/etc/apt/sources.list文件的最后一行。
最后,更新索引:
sudo apt-get update
 
安装docker
经过前面一系列准备工作,终于可以安装docker了:
sudo apt-get install docker-engine
 
启动docker
安装成功后,docker服务应该已经启动了。如果没有启动,就运行下面的命令:
sudo service docker start
大功告成了,测试一下:
sudo docker run hello-world
以上详情,如有不清楚的,可以参看:https://docs.docker.com/engine/installation/linux/ubuntulinux/
不出意外的话,run hello-world是连不上的,比如说这样的错误:
docker: An error occurred trying to connect: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create: read unix @->/var/run/docker.sock: read: connection reset by peer.
原因你懂的,所以我们需要国内的镜像。
 
Docker镜像
国内有不少镜像可以使用,比如我们可以使用阿里云的。阿里云会为每个用户生成一个专用的账户,可以在这里查到:https://cr.console.aliyun.com/?spm=5176.100239.blogcont29941.12.x4Yf82#/accelerator
通过下面的命令设置就好了:
echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=你的地址\"" | sudo tee -a /etc/default/docker
sudo service docker restart
设置好了之后,再运行sudo docker run hello-world,就看到下面的输出:
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c04b14da8d14: Pull complete 
Digest: sha256:0256e8a36e2070f7bf2d0b0763dbabdd67798512411de4cdcf9431a1feb60fd9
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker Hub account:
https://hub.docker.com
For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/
 
Ubuntu
于是我们就开干吧:
先来个Ubuntu 16.04暖暖场:
sudo docker pull ubuntu:16.04
sudo docker run -it ubuntu:16.04
命令行就变成了ubuntu 16.04系统的提示符,我们apt update一下看看:
root@769f87c152a9:/# apt update
Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
不错,apt能用,说明至少已经不是apt-get的时代了。xenial也替代了precise。
Ubuntu的tag可以参看:https://hub.docker.com/_/ubuntu/
 
CentOS
再来个CentOS,目前最新的版本是CentOS 7.
sudo docker run -it centos:7
网址在:https://hub.docker.com/_/centos/
 
OpenSUSE
OpenSUSE的爱好者请用这个:
sudo docker run -it opensuse:leap /bin/bash
然后就可以感受一下zypper:
bash-4.3# zypper update
Retrieving repository 'NON-OSS' metadata ---------------[\]Retrieving repository 'NON-OSS' metadata .......................[done]
Building repository 'NON-OSS' cache .......................[done]
目前的OpenSUSE是Leap 42.2版本。
OpenSUSE版本列表:https://hub.docker.com/_/opensuse/
 
Fedora
Fedora已经支持到25了。
sudo docker run -it fedora:25 /bin/bash
网址:https://hub.docker.com/_/fedora/
 
Docker下挂载主机目录
ubuntu 16.04在docker中起来了,但是,它还访问不了主机上的代码,比如Android代码。所以我们需要做路径的映射:
sudo docker run -it -v /disk08/xulun/Android:/usr/Android ubuntu:16.04
-v参数,前面是主机路径,冒号后面是容器中的挂载点。
 
设置docker image默认目录
这还没完,因为docker默认会将image存放在/var/lib/docker下面。正常情况下,/所挂载的点的硬盘分区一般都不会太大,如果镜像放多了,空间要不够用。
所以我们还需要将docker的工作目录更换一下,我们还是修改配置文件,在Ubuntu 12.04下,这个配置文件在/etc/default/docker中。
我们添加这么一行:
DOCKER_OPTS="$DOCKER_OPTS --graph=新的docker目录"
然后重启docker服务就好了:
sudo service docker restart
 
Virtual Box大法
在Ubuntu 12.04上,通过apt-get install已经可以安装virtualbox了。不过是比较老的版本,要装最新的版本还是需要小小折腾一下,不过比起docker来确实已经轻松很多了。
安装Virtual box
首先还是先更新软件源,修改/etc/apt/sources.list:
deb http://download.virtualbox.org/virtualbox/debian precise contrib
然后还是更新key:
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
最后,更新列表并安装
sudo apt-get update
sudo apt-get install virtualbox-5.1
VirtualBox都是有图像界面的,通过下载官方的iso安装操作系统就可以了。Ubuntu, Debian, OpenSUSE, CentOS等都很友好,只有Gentoo和Archlinux值得讲一讲,我们后面再说。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26927.html