Ubuntu 17.04与16.04版本变化较大,容易导致升级失败。
下面把一些过程中的折腾记录下来,备忘:
升级准备
sudo apt update && sudo apt dist-upgrade
长期支持版本默认设置为仅升级到LTS版本。 要获知有一个较新的非LTS Ubuntu版本可用,您必须使用软件更新程序工具手动设置“选择加入”:
手动升级
sudo do-release-upgrade
然后,重启。就一直挂在启动界面了,再也起不来了。
然后,做了个启动U盘,使用UltraISO做的,但是用于安装时中途出错。
把U盘全部分区删除,格式化一遍成NTFS。再重新做启动U盘。
启动安装过程顺利,最后 Install grub /dev/dm 0出错,重启失败。
再次安装,选英文版安装(网上有人说英文版没问题),选中lvm(原来磁盘用了lvm,不知道有没有关系),成功!!!
进去装docker、synaptic、gparted等。
安装docker CE
添加Docker’s 官方的 GPG key:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
检查下看
sudo apt-key fingerprint 0EBFCD88
添加软件源
sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
开始安装
sudo apt-get updatesudo apt-get install docker-ce
完整参考:
https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository
原文链接:https://www.f2er.com/ubuntu/351164.html