记一次Ubuntu 14 升级 16的过程和理解(1)do-release-upgrade

升级前:

root@ubuntu:/var/cache/apt/archives# uname -a
Linux ubuntu 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

 升级之后:

root@ubuntu:~# uname -a
Linux ubuntu 4.4.0-176-generic #206-Ubuntu SMP Fri Feb 28 05:02:04 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Reconnecting in 30 seconds. Press any key to exit local shell.
..............................

Connecting to xxxxxxxxxxx:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

Welcome to Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-176-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

  System information as of Wed Mar 18 21:06:43 HKT 2020

  System load:  0.35              Processes:           125
  Usage of /:   2.4% of 90.43GB   Users logged in:     0
  Memory usage: 1%                IP address for eth0: xxxxxxxxxxx
  Swap usage:   0%

  Graph this data and manage this system at:
    https://landscape.canonical.com/


Last login: Wed Mar 18 19:28:24 2020 from xxxxxxxx

当然要说一件事情就是do-release-upgrade文件竟然是python写的,我是更新了之后查找的这个脚本文件,当然是与Ubuntu 14上大同小异的啦:甩脚本如下:

root@ubuntu:~# cat /usr/bin/do-release-upgrade
#!/usr/bin/python3

from __future__ import print_function

import warnings
warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning)

from DistUpgrade.DistUpgradeVersion import VERSION
from DistUpgrade.DistUpgradeGettext import gettext as _

from UpdateManager.Core.MetaRelease import MetaReleaseCore
from optparse import OptionParser
import locale
import gettext

import apt
import os
import sys
import time
from UpdateManager.Core.utils import init_proxy

RELEASE_AVAILABLE=0
NO_RELEASE_AVAILABLE=1


def get_fetcher(frontend, new_dist, datadir):
    if frontend == "DistUpgradeViewGtk3":
        from DistUpgrade.DistUpgradeFetcher import DistUpgradeFetcherGtk
        from DistUpgrade.GtkProgress import GtkAcquireProgress
        progress = GtkAcquireProgress(
            None,
            datadir,
            _("Downloading the release upgrade tool"))
        return DistUpgradeFetcherGtk(new_dist=new_dist,
                                     progress=progress,
                                     parent=None,
                                     datadir=datadir)
    elif frontend == "DistUpgradeViewKDE":
        print("kde")
        from DistUpgrade.DistUpgradeFetcherKDE import DistUpgradeFetcherKDE
        from DistUpgrade.DistUpgradeFetcherKDE import KDEAcquireProgressAdapter
        progress = KDEAcquireProgressAdapter(
            parent=None,
            datadir=datadir,
            label=_("Downloading the release upgrade tool"))
        return DistUpgradeFetcherKDE(new_dist=new_dist,
                                     progress=progress,
                                     parent=None,
                                     datadir=datadir)
    else:
        from DistUpgrade.DistUpgradeFetcherCore import DistUpgradeFetcherCore
        import apt
        progress = apt.progress.text.AcquireProgress()
        return DistUpgradeFetcherCore(new_dist, progress)


if __name__ == "__main__":

  #FIXME: Workaround a bug in optparser which doesn't handle unicode/str
  #       correctly, see http://bugs.python.org/issue4391
  #       Should be resolved by Python3
  gettext.bindtextdomain("ubuntu-release-upgrader", "/usr/share/locale")
  gettext.textdomain("ubuntu-release-upgrader")
  translation = gettext.translation("ubuntu-release-upgrader", fallback=True)

  try:
    locale.setlocale(locale.LC_ALL, "")
  except:
    pass

  init_proxy()

  # when run as "check-new-release" we go into "check only" mode
  check_only = sys.argv[0].endswith("check-new-release")

  parser = OptionParser()
  parser.add_option ("-V", "--version", action="store_true",
                     dest="show_version", default=False,
                     help=_("Show version and exit"))
  parser.add_option ("-d", "--devel-release", action="store_true",
                     dest="devel_release", default=False,
                     help=_("If using the latest supported release, "
                            "upgrade to the development release"))
  parser.add_option ("--data-dir", "",
                     default="/usr/share/ubuntu-release-upgrader/",
                     help=_("Directory that contains the data files"))
  parser.add_option ("-p", "--proposed", action="store_true",
                     dest="proposed_release", default=False,
                     help=_("Try upgrading to the latest release using "
                            "the upgrader from $distro-proposed"))
  parser.add_option ("-m", "--mode", default="server",
                     dest="mode", 
                     help=_("Run in a special upgrade mode.\n"
                            "Currently 'desktop' for regular upgrades of "
                            "a desktop system and 'server' for server "
                            "systems are supported."))
  parser.add_option ("-f", "--frontend", default="DistUpgradeViewText",
                     dest="frontend", 
                     help=_("Run the specified frontend"))
  parser.add_option ("-s","--sandbox", action="store_true", default=False,
                     help=_("Test upgrade with a sandbox aufs overlay"))
  parser.add_option ("-c", "--check-dist-upgrade-only", action="store_true",
                     default=check_only,
                     help=_("Check only if a new distribution release is "
                            "available and report the result via the "
                            "exit code"))
  parser.add_option ("-q", "--quiet", default=False, action="store_true",
                     dest="quiet")

  (options, args) = parser.parse_args()


  if options.show_version:
    print("%s: version %s" % (os.path.basename(sys.argv[0]), VERSION))
    sys.exit(0)

  if options.devel_release and options.proposed_release:
    print(_("The options --devel-release and --proposed are"))
    print(_("mutually exclusive. Please use only one of them."))
    sys.exit(1)

  if not options.quiet:
    print(_("Checking for a new Ubuntu release"))

  m = MetaReleaseCore(useDevelopmentRelease=options.devel_release,
                      useProposed=options.proposed_release)
  # this will timeout eventually
  m.downloaded.wait()

  # make sure to inform the user if his distro is no longer supported
  # this will make it appear in motd (that calls do-release-upgrade in
  #  check-new-release mode)
  if m.no_longer_supported is not None:
    url = "http://www.ubuntu.com/releaseendoflife"
    print(_("Your Ubuntu release is not supported anymore."))
    print(_("For upgrade information, please visit:\n"
            "%(url)s\n") % { 'url' : url })

  # now inform about a new release
  if m.new_dist is None:
    if not options.quiet:
      if options.devel_release:
        print(_("Upgrades to the development release are only "))
        print(_("available from the latest supported release."))
      else:
        print(_("No new release found."))
    sys.exit(NO_RELEASE_AVAILABLE)

  if m.new_dist.upgrade_broken:
    if not options.quiet:
      print(_("Release upgrade not possible right now"))
      print(_("The release upgrade can not be performed currently, "
              "please try again later. The server reported: '%s'") % m.new_dist.upgrade_broken)
    sys.exit(NO_RELEASE_AVAILABLE)

  # we have a new dist
  if options.check_dist_upgrade_only:
    print(_("New release '%s' available.") % m.new_dist.version)
    print(_("Run 'do-release-upgrade' to upgrade to it."))
    sys.exit(RELEASE_AVAILABLE)

  cache = apt.Cache()
  cache.open()
  install_count = 0
  upgradable = [pkg for pkg in cache if pkg.is_upgradable]
  for pkg in upgradable:
    if 'Phased-Update-Percentage' in pkg.candidate.record:
      # P-U-P does not exist if it is fully phased
      continue
    else:
      install_count += 1
      # one upgradeable package is enough to stop the dist-upgrade
      break
  if install_count > 0:
    if not options.quiet:
      print(_("Please install all available updates "
              "for your release before upgrading."))
    sys.exit(1)
  if os.path.exists('/var/run/reboot-required.pkgs'):
    reboot = False
    with open('/var/run/reboot-required.pkgs', 'rb') as f:
        for line in f:
            # In certain cases, we need to reboot the system before proceeding
            # with the dist upgrade after the kernel is upgraded as otherwise
            # building of some dkms modules can fail.
            if (line == b'libc6\n' or line == b'linux-base\n' or
                    line.startswith(b'linux-image-')):
                reboot = True
                break
    if reboot:
      if not options.quiet:
        print(_("You have not rebooted after updating a package which "
                "requires a reboot. Please reboot before upgrading."))
      sys.exit(1)

  fetcher = get_fetcher(options.frontend, m.new_dist, options.data_dir)
  fetcher.run_options += ["--mode=%s" % options.mode,
                          "--frontend=%s" % options.frontend,
                          ]
  if options.sandbox:
    fetcher.run_options.append("--sandbox")
  if options.devel_release:
    fetcher.run_options.append("--devel-release")
  fetcher.run()

以下是文件down下来之后解压执行的后续日志文件:

Processing triggers for systemd (229-4ubuntu21.27) ...
Processing triggers for install-info (6.1.0.dfsg.1-5) ...
Setting up libc-bin (2.23-0ubuntu11) ...
Installing new version of config file /etc/bindresvport.blacklist ...
Setting up locales (2.23-0ubuntu11) ...
Installing new version of config file /etc/locale.alias ...
Generating locales (this might take a while)...
  en_HK.UTF-8... done
  en_US.UTF-8... done
Generation complete.
Setting up libcap-ng0:amd64 (0.7.7-1) ...
Setting up libdbus-1-3:amd64 (1.10.6-1ubuntu3.5) ...
Ignoring telinit u request, systemd is not running
Setting up dbus (1.10.6-1ubuntu3.5) ...
Installing new version of config file /etc/init/dbus.conf ...
A reboot is required to replace the running dbus-daemon.
Please reboot the system when convenient.
Removing obsolete conffile /etc/dbus-1/session.conf ...
Removing obsolete conffile /etc/dbus-1/system.conf ...
Setting up libnih1:amd64 (1.0.3-4.3ubuntu1) ...
Ignoring telinit u request, systemd is not running
Setting up libnih-dbus1:amd64 (1.0.3-4.3ubuntu1) ...
Ignoring telinit u request, systemd is not running
Setting up libcgmanager0:amd64 (0.39-2ubuntu5) ...
Setting up initramfs-tools-bin (0.122ubuntu8.16) ...
Setting up libklibc (2.0.4-8ubuntu1.16.04.4) ...
Setting up klibc-utils (2.0.4-8ubuntu1.16.04.4) ...
Setting up busybox-initramfs (1:1.22.0-15ubuntu1.4) ...

Progress: [ 70%]
Setting up cpio (2.11+dfsg-5ubuntu1.1) ...
Setting up kmod (22-1ubuntu5.2) ...
Installing new version of config file /etc/init.d/kmod ...
Installing new version of config file /etc/modprobe.d/blacklist-framebuffer.conf ...
Installing new version of config file /etc/modprobe.d/blacklist.conf ...
Setting up module-init-tools (22-1ubuntu5.2) ...
Setting up libprocps4:amd64 (2:3.3.10-4ubuntu2.4) ...
Setting up initscripts (2.88dsf-59.3ubuntu2) ...
Installing new version of config file /etc/init.d/halt ...
Installing new version of config file /etc/init.d/killprocs ...
Installing new version of config file /etc/init.d/rc.local ...
Installing new version of config file /etc/init.d/reboot ...
Installing new version of config file /etc/init.d/sendsigs ...
Installing new version of config file /etc/init.d/single ...
Installing new version of config file /etc/init.d/umountfs ...
Installing new version of config file /etc/init.d/umountnfs.sh ...
Installing new version of config file /etc/init.d/umountroot ...
Installing new version of config file /etc/default/rcS ...
Setting up procps (2:3.3.10-4ubuntu2.4) ...
Installing new version of config file /etc/init/procps.conf ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Setting up udev (229-4ubuntu21.27) ...
Installing new version of config file /etc/init.d/udev ...
Installing new version of config file /etc/init/udevmonitor.conf ...
Installing new version of config file /etc/modprobe.d/fbdev-blacklist.conf ...
Installing new version of config file /etc/udev/udev.conf ...
Adding group `input' (GID 117) ...
Done.
udev stop/waiting
udev start/running, process 5099
update-initramfs: deferring update (trigger activated)
Removing obsolete conffile /etc/init/udev-finish.conf ...
Removing obsolete conffile /etc/init/udev-fallback-graphics.conf ...
Removing obsolete conffile /etc/udev/rules.d/README ...
Setting up initramfs-tools-core (0.122ubuntu8.16) ...
Installing new version of config file /etc/initramfs-tools/initramfs.conf ...
Setting up linux-base (4.5ubuntu1~16.04.1) ...
Setting up liblocale-gettext-perl (1.07-1build1) ...
Setting up keyboard-configuration (1.108ubuntu15.5) ...
Installing new version of config file /etc/init.d/console-setup ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-initramfs: deferring update (trigger activated)
Setting up xkb-data (2.16-1ubuntu1) ...
Setting up libxtables11:amd64 (1.6.0-2ubuntu3) ...
Setting up libnfnetlink0:amd64 (1.0.1-3) ...
Setting up iptables (1.6.0-2ubuntu3) ...
Setting up ucf (3.0036) ...
Setting up mime-support (3.59ubuntu1) ...
Installing new version of config file /etc/mime.types ...
Setting up libmpdec2:amd64 (2.4.2-1) ...
Setting up libsqlite3-0:amd64 (3.11.0-1ubuntu1.4) ...
Setting up libpython3.5-stdlib:amd64 (3.5.2-2ubuntu0~16.04.9) ...
Setting up python3.5 (3.5.2-2ubuntu0~16.04.9) ...
Setting up libpython3-stdlib:amd64 (3.5.1-3) ...
Setting up ureadahead (0.100.0-19.1) ...
Setting up perl-modules-5.22 (5.22.1-9ubuntu0.6) ...
Setting up libgdbm3:amd64 (1.8.3-13.1) ...
Setting up libperl5.22:amd64 (5.22.1-9ubuntu0.6) ...
Setting up perl (5.22.1-9ubuntu0.6) ...
Setting up bash-completion (1:2.1-4.2ubuntu1.1) ...
Setting up initramfs-tools (0.122ubuntu8.16) ...
Installing new version of config file /etc/kernel/postinst.d/initramfs-tools ...
Installing new version of config file /etc/kernel/postrm.d/initramfs-tools ...
update-initramfs: deferring update (trigger activated)
Setting up libjson-c2:amd64 (0.11-4ubuntu2) ...
Ignoring telinit u request, systemd is not running
Setting up makedev (2.3.1-93ubuntu2~ubuntu16.04.1) ...
Setting up libdrm-common (2.4.91-2~16.04.1) ...
Setting up libdrm2:amd64 (2.4.91-2~16.04.1) ...
Setting up libpng12-0:amd64 (1.2.54-1ubuntu1.1) ...
Setting up libplymouth4:amd64 (0.9.2-3ubuntu13.5) ...
Setting up plymouth (0.9.2-3ubuntu13.5) ...
update-initramfs: deferring update (trigger activated)
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Setting up mountall (2.54ubuntu1) ...
Installing new version of config file /etc/init/mounted-proc.conf ...
Setting up libmnl0:amd64 (1.0.3-5) ...
Setting up iproute2 (4.3.0-1ubuntu3.16.04.5) ...
Installing new version of config file /etc/iproute2/rt_dsfield ...
Installing new version of config file /etc/iproute2/rt_protos ...
Setting up ifupdown (0.8.10ubuntu1.4) ...
Installing new version of config file /etc/init.d/networking ...
Installing new version of config file /etc/init/network-interface.conf ...
Re-enabling /etc/init.d/networking...
Setting up upstart (1.13.2-0ubuntu21.1) ...
Installing new version of config file /etc/X11/Xsession.d/99upstart ...
Installing new version of config file /etc/cron.daily/upstart ...
Installing new version of config file /etc/upstart-xsessions ...
Ignoring telinit u request, systemd is not running
Setting up cron (3.0pl1-128ubuntu2) ...
Installing new version of config file /etc/pam.d/cron ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-rc.d: warning: stop runlevel arguments (1) do not match cron Default-Stop values (none)
cron start/running, process 7649
Setting up liblog-message-perl (0.8-1) ...
Setting up liblog-message-simple-perl (0.10-2) ...
Setting up libterm-ui-perl (0.46-1) ...
Setting up libapparmor-perl (2.10.95-0ubuntu2.11) ...
Setting up libtext-charwidth-perl (0.04-7build5) ...
Setting up libsub-name-perl (0.14-1build1) ...
Setting up libtext-soundex-perl (3.4-1build3) ...
Setting up libtext-iconv-perl (1.7-5build4) ...
Setting up distro-info-data (0.28ubuntu0.13) ...
Setting up cgmanager (0.39-2ubuntu5) ...
cgmanager start/running, process 7696
cgproxy stop/pre-start, process 7735
Setting up libffi6:amd64 (3.2.1-4) ...
Setting up libglib2.0-0:amd64 (2.48.2-0ubuntu4.4) ...
No schema files found: doing nothing.
Setting up systemd-shim (9-1bzr4ubuntu1) ...
Removing obsolete conffile /etc/dbus-1/system.d/org.freedesktop.systemd-shim.conf ...
Setting up libpam-systemd:amd64 (229-4ubuntu21.27) ...
Removing obsolete conffile /etc/init/systemd-logind.conf ...
Setting up netbase (5.3) ...
Installing new version of config file /etc/services ...
Setting up dmsetup (2:1.02.110-1ubuntu10) ...
update-initramfs: deferring update (trigger activated)
Setting up libfreetype6:amd64 (2.6.1-0.1ubuntu2.4) ...

Progress: [ 75%]
Setting up libasprintf0v5:amd64 (0.19.7-2ubuntu3.1) ...
Setting up gettext-base (0.19.7-2ubuntu3.1) ...
Setting up grub-common (2.02~beta2-36ubuntu3.23) ...
Installing new version of config file /etc/grub.d/05_debian_theme ...
Installing new version of config file /etc/grub.d/10_linux ...
Installing new version of config file /etc/grub.d/20_linux_xen ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Setting up grub-pc-bin (2.02~beta2-36ubuntu3.23) ...
Setting up grub2-common (2.02~beta2-36ubuntu3.23) ...
Setting up libnewt0.52:amd64 (0.52.18-1ubuntu2) ...
Setting up libpopt0:amd64 (1.16-10) ...
Setting up whiptail (0.52.18-1ubuntu2) ...
Setting up friendly-recovery (0.2.31ubuntu2.1) ...
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-176-generic
Found linux image: /boot/vmlinuz-3.13.0-24-generic
Found initrd image: /boot/initrd.img-3.13.0-24-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
Setting up bzip2 (1.0.6-8ubuntu0.2) ...
Setting up libgirepository-1.0-1:amd64 (1.46.0-3ubuntu1) ...
Setting up gir1.2-glib-2.0:amd64 (1.46.0-3ubuntu1) ...
Setting up libapt-inst2.0:amd64 (1.2.32) ...
Setting up libpython2.7-stdlib:amd64 (2.7.12-1ubuntu0~16.04.9) ...
Setting up python2.7 (2.7.12-1ubuntu0~16.04.9) ...
Setting up libpython-stdlib:amd64 (2.7.12-1~16.04) ...
Setting up python (2.7.12-1~16.04) ...
Setting up python-apt-common (1.1.0~beta1ubuntu0.16.04.8) ...
Setting up libnettle6:amd64 (3.2-1ubuntu0.16.04.1) ...
Setting up libhogweed4:amd64 (3.2-1ubuntu0.16.04.1) ...
Setting up libidn11:amd64 (1.32-3ubuntu1.2) ...
Setting up libp11-kit0:amd64 (0.23.2-5~ubuntu16.04.1) ...
Setting up libtasn1-6:amd64 (4.7-3ubuntu0.16.04.3) ...
Setting up libgnutls30:amd64 (3.4.10-4ubuntu1.7) ...
Setting up libkrb5support0:amd64 (1.13.2+dfsg-5ubuntu2.1) ...
Setting up libk5crypto3:amd64 (1.13.2+dfsg-5ubuntu2.1) ...
Setting up libkeyutils1:amd64 (1.5.9-8ubuntu1) ...
Setting up libkrb5-3:amd64 (1.13.2+dfsg-5ubuntu2.1) ...
Setting up libgssapi-krb5-2:amd64 (1.13.2+dfsg-5ubuntu2.1) ...
Setting up libroken18-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libasn1-8-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libhcrypto4-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libheimbase1-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libwind0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libhx509-5-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libkrb5-26-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libheimntlm0-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libgssapi3-heimdal:amd64 (1.7~git20150920+dfsg-4ubuntu1.16.04.1) ...
Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-14ubuntu0.2) ...
Setting up libsasl2-2:amd64 (2.1.26.dfsg1-14ubuntu0.2) ...
Setting up libldap-2.4-2:amd64 (2.4.42+dfsg-2ubuntu3.7) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d-1ubuntu0.1) ...
Setting up libcurl3-gnutls:amd64 (7.47.0-1ubuntu2.14) ...
Setting up libdbus-glib-1-2:amd64 (0.106-1) ...
Setting up apt-utils (1.2.32) ...
Setting up python-six (1.10.0-3) ...
Setting up python-urllib3 (1.13.1-2ubuntu0.16.04.3) ...
Setting up libpython2.7:amd64 (2.7.12-1ubuntu0~16.04.9) ...
Setting up libpam-cap:amd64 (1:2.24-12) ...
Setting up bsdmainutils (9.0.6ubuntu3) ...
Setting up libxapian22v5:amd64 (1.2.22-2) ...
Setting up python-xapian (1.2.22-2build1) ...
Setting up libestr0 (0.1.10-1) ...
Setting up iso-codes (3.65-1) ...
Setting up libaccountsservice0:amd64 (0.6.40-2ubuntu11.3) ...
Setting up libpolkit-gobject-1-0:amd64 (0.105-14.1ubuntu0.5) ...
Setting up accountsservice (0.6.40-2ubuntu11.3) ...
Setting up libx11-data (2:1.6.3-1ubuntu2.1) ...
Setting up libxdmcp6:amd64 (1:1.1.2-1.1) ...

Progress: [ 80%]
Setting up libxcb1:amd64 (1.11.1-1ubuntu1) ...
Setting up libx11-6:amd64 (2:1.6.3-1ubuntu2.1) ...
Setting up libxext6:amd64 (2:1.3.3-1) ...
Setting up groff-base (1.22.3-7) ...
Installing new version of config file /etc/groff/man.local ...
Installing new version of config file /etc/groff/mdoc.local ...
Setting up libpipeline1:amd64 (1.4.1-2) ...
Setting up man-db (2.7.5-1) ...
Installing new version of config file /etc/cron.daily/man-db ...
Installing new version of config file /etc/manpath.config ...
Building database of manual pages ...
Setting up ntfs-3g (1:2015.3.14AR.1-1ubuntu0.3) ...
Setting up popularity-contest (1.64ubuntu2) ...
Installing new version of config file /etc/cron.daily/popularity-contest ...
Setting up uuid-runtime (2.27.1-6ubuntu3.10) ...
 * Stopping uuid generator uuidd
   ...done.
 * Starting uuid generator uuidd
   ...done.
Setting up libsigsegv2:amd64 (2.10-4) ...
Setting up gawk (1:4.1.3+dfsg-0.1) ...
Setting up libck-connector0:amd64 (0.4.6-5) ...
Setting up ntpdate (1:4.2.8p4+dfsg-3ubuntu5.10) ...
Installing new version of config file /etc/network/if-up.d/ntpdate ...
Setting up patch (2.7.5-1ubuntu0.16.04.2) ...
Setting up libtext-wrapi18n-perl (0.06-7.1) ...
Setting up debconf-i18n (1.5.58ubuntu2) ...
Setting up eject (2.1.5+deb1+cvs20081104-13.1ubuntu0.16.04.1) ...
Setting up libmagic1:amd64 (1:5.25-2ubuntu1.3) ...
Setting up file (1:5.25-2ubuntu1.3) ...
Setting up libgnutls-openssl27:amd64 (3.4.10-4ubuntu1.7) ...
Setting up iputils-ping (3:20121221-5ubuntu2) ...
Setcap is not installed, falling back to setuid
Setting up resolvconf (1.78ubuntu7) ...
Installing new version of config file /etc/dhcp/dhclient-enter-hooks.d/resolvconf ...
Installing new version of config file /etc/init.d/resolvconf ...
Installing new version of config file /etc/network/if-down.d/resolvconf ...
Installing new version of config file /etc/network/if-up.d/000resolvconf ...
Installing new version of config file /etc/ppp/ip-down.d/000resolvconf ...
Installing new version of config file /etc/ppp/ip-up.d/000resolvconf ...
Installing new version of config file /etc/resolvconf/interface-order ...
Installing new version of config file /etc/resolvconf/update.d/libc ...
Setting up libisc-export160 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up libdns-export162 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up isc-dhcp-client (4.3.3-5ubuntu12.10) ...
Installing new version of config file /etc/apparmor.d/sbin.dhclient ...
Installing new version of config file /etc/dhcp/dhclient-exit-hooks.d/rfc3442-classless-routes ...
Installing new version of config file /etc/dhcp/dhclient.conf ...
Setting up isc-dhcp-common (4.3.3-5ubuntu12.10) ...
Setting up less (481-2.1ubuntu0.2) ...
Setting up libbsd0:amd64 (0.8.2-1ubuntu0.1) ...
Setting up libfribidi0:amd64 (0.19.7-1) ...
Setting up logrotate (3.8.7-2ubuntu2.16.04.2) ...
Setting up net-tools (1.60-26ubuntu1) ...
Setting up rsyslog (8.16.0-1ubuntu3.1) ...
Installing new version of config file /etc/apparmor.d/usr.sbin.rsyslogd ...
Installing new version of config file /etc/init.d/rsyslog ...
Installing new version of config file /etc/logcheck/ignore.d.server/rsyslog ...
Installing new version of config file /etc/logrotate.d/rsyslog ...
Installing new version of config file /etc/rsyslog.conf ...
The user `syslog' is already a member of `adm'.
Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
rsyslog stop/waiting
rsyslog start/running, process 18219
Setting up sudo (1.8.16-0ubuntu1.9) ...
Installing new version of config file /etc/pam.d/sudo ...
Removing obsolete conffile /etc/init.d/sudo ...
Setting up ubuntu-advantage-tools (10ubuntu0.16.04.1) ...
Setting up vim-common (2:7.4.1689-3ubuntu1.3) ...
Setting up vim-runtime (2:7.4.1689-3ubuntu1.3) ...
Setting up libpython3.5:amd64 (3.5.2-2ubuntu0~16.04.9) ...
Setting up vim (2:7.4.1689-3ubuntu1.3) ...
Setting up vim-tiny (2:7.4.1689-3ubuntu1.3) ...
Setting up apt-transport-https (1.2.32) ...
Setting up geoip-database (20160408-1) ...
Setting up libgeoip1:amd64 (1.6.9-1) ...
Setting up libicu55:amd64 (55.1-7ubuntu0.5) ...
Setting up libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.7) ...
Setting up libisc160:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up libdns162:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up libisccc140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up libisccfg140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up libbind9-140:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up liblwres141:amd64 (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up bind9-host (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up busybox-static (1:1.22.0-15ubuntu1.4) ...
Setting up openssl (1.0.2g-1ubuntu4.15) ...
Setting up ca-certificates (20170717~16.04.2) ...
Setting up command-not-found-data (0.3ubuntu16.04.2) ...
Setting up dmidecode (3.0-2ubuntu0.2) ...
Setting up dnsutils (1:9.10.3.dfsg.P4-8ubuntu1.15) ...
Setting up dosfstools (3.0.28-2ubuntu0.1) ...
Setting up ed (1.10-2) ...
Setting up ftp (0.17-33) ...

Progress: [ 85%]
update-alternatives: updating alternative /usr/bin/netkit-ftp because link group ftp has changed slave links
Setting up hdparm (9.48+ds-1ubuntu0.1) ...
Setting up info (6.1.0.dfsg.1-5) ...
Setting up iputils-tracepath (3:20121221-5ubuntu2) ...
Setcap worked! traceroute6 is not suid!
Setting up libnuma1:amd64 (2.0.11-1ubuntu1.1) ...
Setting up irqbalance (1.1.0-2ubuntu1) ...
Installing new version of config file /etc/init.d/irqbalance ...
Installing new version of config file /etc/init/irqbalance.conf ...
irqbalance start/running, process 22344
Setting up krb5-locales (1.13.2+dfsg-5ubuntu2.1) ...
Setting up libedit2:amd64 (3.1-20150325-1ubuntu2) ...
Setting up libelf1:amd64 (0.165-3ubuntu1.2) ...
Setting up libglib2.0-data (2.48.2-0ubuntu4.4) ...
Setting up libparted2:amd64 (3.2-15ubuntu0.1) ...
Setting up libpcap0.8:amd64 (1.7.4-2ubuntu0.1) ...
Setting up libpci3:amd64 (1:3.3.1-1.1ubuntu1.3) ...
Setting up pciutils (1:3.3.1-1.1ubuntu1.3) ...
Setting up libsasl2-modules:amd64 (2.1.26.dfsg1-14ubuntu0.2) ...
Setting up libusb-1.0-0:amd64 (2:1.0.20-1) ...
Setting up libxmuu1:amd64 (2:1.1.2-2) ...
Setting up lshw (02.17-1.1ubuntu3.6) ...
Setting up lsof (4.89+dfsg-0.1) ...
Setting up ltrace (0.7.3-5.1ubuntu4) ...
Setting up manpages (4.04-2) ...
Setting up mlocate (0.26-1ubuntu2) ...
Installing new version of config file /etc/updatedb.conf ...
Setting up mtr-tiny (0.86-1ubuntu0.1) ...
Setting up nano (2.5.3-2ubuntu2) ...
Installing new version of config file /etc/nanorc ...
Setting up openssh-client (1:7.2p2-4ubuntu2.8) ...
Installing new version of config file /etc/ssh/moduli ...
Installing new version of config file /etc/ssh/ssh_config ...
Setting up openssh-sftp-server (1:7.2p2-4ubuntu2.8) ...
Setting up openssh-server (1:7.2p2-4ubuntu2.8) ...
Installing new version of config file /etc/network/if-up.d/openssh-server ...
Installing new version of config file /etc/pam.d/sshd ...
ssh stop/waiting
ssh start/running, process 22450
Setting up parted (3.2-15ubuntu0.1) ...
Setting up powermgmt-base (1.31+nmu1) ...
Setting up psmisc (22.21-2.1ubuntu0.1) ...
Setting up rsync (3.1.1-3ubuntu1.3) ...
Installing new version of config file /etc/init.d/rsync ...
insserv: warning: current stop runlevel(s) (0 1 6) of script `rsync' overrides LSB defaults (empty).
Setting up shared-mime-info (1.5-2ubuntu0.2) ...
Setting up strace (4.11-1ubuntu3) ...
Setting up tcpdump (4.9.3-0ubuntu0.16.04.1) ...
Setting up telnet (0.17-40) ...
Setting up time (1.7-25.1) ...
Setting up usbutils (1:007-4) ...
Setting up wget (1.17.1-1ubuntu1.5) ...
Installing new version of config file /etc/wgetrc ...
Setting up xauth (1:1.0.9-1ubuntu2) ...
Setting up xdg-user-dirs (0.15-2ubuntu6.16.04.1) ...
Setting up acpid (1:2.0.26-1ubuntu2) ...
Installing new version of config file /etc/acpi/powerbtn.sh ...
Installing new version of config file /etc/init/acpid.conf ...
acpid start/running, process 22540
Setting up python-apt (1.1.0~beta1ubuntu0.16.04.8) ...
Setting up libxapian-1.3-5:amd64 (1.3.4-0ubuntu6) ...
Setting up aptitude-common (0.7.4-2ubuntu2) ...
Setting up at (3.1.18-2ubuntu1) ...
Installing new version of config file /etc/pam.d/atd ...
atd start/running, process 22586
Setting up bc (1.06.95-9build1) ...
Setting up biosdevname (0.4.1-0ubuntu9) ...
update-initramfs: deferring update (trigger activated)
Setting up libevent-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Setting up libutempter0:amd64 (1.1.6-3) ...
Setting up tmux (2.1-3build1) ...
Setting up screen (4.3.1-2build1) ...
insserv: warning: current start runlevel(s) (2 3 4 5) of script `screen-cleanup' overrides LSB defaults (S).
insserv: warning: current stop runlevel(s) (0 1 6) of script `screen-cleanup' overrides LSB defaults (empty).
Setting up libnl-3-200:amd64 (3.2.27-1ubuntu0.16.04.1) ...
Installing new version of config file /etc/libnl-3/pktloc ...
Setting up libnl-genl-3-200:amd64 (3.2.27-1ubuntu0.16.04.1) ...
Setting up wireless-regdb (2018.05.09-0ubuntu1~16.04.1) ...
Setting up iw (3.17-1) ...
Setting up crda (3.13-1) ...
Setting up curl (7.47.0-1ubuntu2.14) ...
Setting up ethtool (1:4.5-1) ...
Installing new version of config file /etc/network/if-up.d/ethtool ...
Setting up fonts-ubuntu-font-family-console (1:0.83-0ubuntu2) ...
Setting up gcc-4.8-base:amd64 (4.8.5-4ubuntu2) ...

Progress: [ 90%]
Setting up gcc-4.9-base:amd64 (4.9.3-13ubuntu2) ...
Setting up installation-report (2.60ubuntu1) ...
Setting up iucode-tool (1.5.1-1ubuntu0.1) ...
Setting up python-twisted-bin (16.0.0-1ubuntu0.2) ...
Setting up python-pkg-resources (20.7.0-1) ...
Setting up python-zope.interface (4.1.3-1build1) ...
Setting up python-cffi-backend (1.5.2-1ubuntu1) ...
Setting up python-enum34 (1.1.2-1) ...
Setting up python-idna (2.0-3) ...
Setting up python-ipaddress (1.0.16-1) ...
Setting up python-pyasn1 (0.1.9-1) ...
Setting up python-cryptography (1.2.3-1ubuntu0.2) ...
Setting up python-openssl (0.15.1-2ubuntu0.2) ...
Setting up python-attr (15.2.0-1) ...
Setting up python-pyasn1-modules (0.0.7-0.1) ...
Setting up python-service-identity (16.0.0-2) ...
Setting up python-twisted-core (16.0.0-1ubuntu0.2) ...
Setting up python-configobj (5.0.6-2) ...
Setting up python-gdbm (2.7.12-1~16.04) ...
Setting up libarchive-extract-perl (0.76-1) ...
Setting up libboost-iostreams1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ...
Setting up libcurl3:amd64 (7.47.0-1ubuntu2.14) ...
Setting up libgc1c2:amd64 (1:7.4.2-7.3ubuntu0.1) ...
Setting up libgck-1-0:amd64 (3.18.0-1ubuntu1) ...
Setting up libgcr-3-common (3.18.0-1ubuntu1) ...
Setting up libgcr-base-3-1:amd64 (3.18.0-1ubuntu1) ...
Setting up libjson0:amd64 (0.11-4ubuntu2) ...
Setting up libmodule-pluggable-perl (5.2-1) ...
Setting up libparams-classify-perl (0.013-5build1) ...
Setting up libmodule-runtime-perl (0.014-2) ...
Setting up libpcsclite1:amd64 (1.8.14-1ubuntu1.16.04.1) ...
Setting up libpod-latex-perl (0.61-2) ...
Setting up libpolkit-agent-1-0:amd64 (0.105-14.1ubuntu0.5) ...
Setting up libpolkit-backend-1-0:amd64 (0.105-14.1ubuntu0.5) ...
Setting up libreadline5:amd64 (5.2+dfsg-3build1) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up linux-firmware (1.157.22) ...
update-initramfs: Generating /boot/initrd.img-3.13.0-24-generic
E: amd64-microcode: unsupported kernel version!
Setting up linux-modules-4.4.0-176-generic (4.4.0-176.206) ...
Setting up linux-image-4.4.0-176-generic (4.4.0-176.206) ...
I: /vmlinuz.old is now a symlink to boot/vmlinuz-3.13.0-24-generic
I: /initrd.img.old is now a symlink to boot/initrd.img-3.13.0-24-generic
I: /vmlinuz is now a symlink to boot/vmlinuz-4.4.0-176-generic
I: /initrd.img is now a symlink to boot/initrd.img-4.4.0-176-generic
Setting up linux-modules-extra-4.4.0-176-generic (4.4.0-176.206) ...
Setting up intel-microcode (3.20191115.1ubuntu0.16.04.2) ...
update-initramfs: deferring update (trigger activated)
intel-microcode: microcode will be updated at next boot
Setting up amd64-microcode (3.20191021.1+really3.20180524.1~ubuntu0.16.04.2) ...
update-initramfs: deferring update (trigger activated)
amd64-microcode: microcode will be updated at next boot
Setting up linux-image-generic (4.4.0.176.184) ...
Setting up linux-headers-4.4.0-176 (4.4.0-176.206) ...
Setting up linux-headers-4.4.0-176-generic (4.4.0-176.206) ...
Setting up linux-headers-generic (4.4.0.176.184) ...
Setting up linux-generic (4.4.0.176.184) ...
Setting up memtest86+ (5.01-3ubuntu2) ...
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-176-generic
Found linux image: /boot/vmlinuz-3.13.0-24-generic
Found initrd image: /boot/initrd.img-3.13.0-24-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
Setting up ncurses-term (6.0+20160213-1ubuntu1) ...
Setting up os-prober (1.70ubuntu3.3) ...
Setting up policykit-1 (0.105-14.1ubuntu0.5) ...
Setting up ppp (2.4.7-1+2ubuntu1.16.04.2) ...
Installing new version of config file /etc/init.d/pppd-dns ...
Installing new version of config file /etc/ppp/options ...
Removing obsolete conffile /etc/bash_completion.d/pon ...
Setting up pppconfig (2.3.22) ...
Installing new version of config file /etc/init.d/dns-clean ...
Installing new version of config file /etc/ppp/ip-down.d/0dns-down ...
Installing new version of config file /etc/ppp/ip-up.d/0dns-up ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
insserv: warning: current start runlevel(s) (1 2 3 4 5) of script `dns-clean' overrides LSB defaults (S).
Setting up pppoeconf (1.21ubuntu1) ...
Setting up python-chardet (2.3.0-2) ...
Setting up python-debian (0.1.27ubuntu2) ...
Setting up python-ndg-httpsclient (0.4.0-3) ...
Setting up python-pam (0.4.2-13.2ubuntu2) ...
Setting up python-requests (2.9.1-3ubuntu0.1) ...

Progress: [ 95%]
Setting up python-serial (3.0.1-1) ...
Setting up rename (0.20-4) ...
update-alternatives: using /usr/bin/file-rename to provide /usr/bin/rename (rename) in auto mode
Setting up thermald (1.5-2ubuntu4) ...
thermald start/running, process 27706
Setting up update-motd (3.6-0ubuntu1) ...
Setting up w3m (0.5.3-26ubuntu0.2) ...
Installing new version of config file /etc/w3m/config ...
Setting up wpasupplicant (2.4-0ubuntu6.6) ...
Installing new version of config file /etc/wpa_supplicant/action_wpa.sh ...
Installing new version of config file /etc/wpa_supplicant/functions.sh ...
Setting up kbd (1.15.5-1ubuntu5) ...
Installing new version of config file /etc/kbd/config ...
Setting up console-setup-linux (1.108ubuntu15.5) ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-1.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-13.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-14.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-15.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-2.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-3.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-4.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-7.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-9.inc ...
Installing new version of config file /etc/console-setup/compose.VISCII.inc ...
Installing new version of config file /etc/console-setup/remap.inc ...
Setting up console-setup (1.108ubuntu15.5) ...
update-initramfs: deferring update (trigger activated)
Setting up python3 (3.5.1-3) ...
running python rtupdate hooks for python3.5...
running python post-rtupdate hooks for python3.5...
Setting up dh-python (2.20151103ubuntu1.2) ...
Setting up ufw (0.35-0ubuntu2) ...
Installing new version of config file /etc/logrotate.d/ufw ...
Installing new version of config file /etc/rsyslog.d/20-ufw.conf ...
Replacing config file /etc/ufw/before6.rules with new version
Setting up lsb-release (9.20160110ubuntu0.2) ...
Setting up plymouth-theme-ubuntu-text (0.9.2-3ubuntu13.5) ...
update-alternatives: warning: alternative /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth (part of link group text.plymouth) doesn't exist; removing from list of alternatives
update-alternatives: warning: /etc/alternatives/text.plymouth is dangling; it will be updated with best choice
update-alternatives: renaming text.plymouth link from /lib/plymouth/themes/text.plymouth to /usr/share/plymouth/themes/text.plymouth
update-alternatives: using /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth to provide /usr/share/plymouth/themes/text.plymouth (text.plymouth) in auto mode
update-initramfs: deferring update (trigger activated)
Setting up grub-pc (2.02~beta2-36ubuntu3.23) ...
Installing new version of config file /etc/kernel/postinst.d/zz-update-grub ...
Installing new version of config file /etc/kernel/postrm.d/zz-update-grub ...
Installing for i386-pc platform.
Installation finished. No error reported.
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-176-generic
Found linux image: /boot/vmlinuz-3.13.0-24-generic
Found initrd image: /boot/initrd.img-3.13.0-24-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
Setting up grub-gfxpayload-lists (0.7) ...
Setting up python3-gdbm:amd64 (3.5.1-1) ...
Setting up python3-gi (3.20.0-0ubuntu1) ...
Setting up python3-newt (0.52.18-1ubuntu2) ...
Setting up python3-apt (1.1.0~beta1ubuntu0.16.04.8) ...
Setting up python3-pycurl (7.43.0-1ubuntu1) ...
Setting up python3-dbus (1.2.0-3) ...
Setting up tasksel-data (3.34ubuntu3) ...
Setting up tasksel (3.34ubuntu3) ...
Setting up language-selector-common (0.165.4) ...
Installing new version of config file /etc/fonts/conf.avail/30-cjk-aliases.conf ...
Installing new version of config file /etc/fonts/conf.avail/69-language-selector-zh-cn.conf ...
Installing new version of config file /etc/fonts/conf.avail/69-language-selector-zh-hk.conf ...
Installing new version of config file /etc/fonts/conf.avail/69-language-selector-zh-mo.conf ...
Installing new version of config file /etc/fonts/conf.avail/69-language-selector-zh-sg.conf ...
Installing new version of config file /etc/fonts/conf.avail/69-language-selector-zh-tw.conf ...
Setting up python3-pkg-resources (20.7.0-1) ...
Setting up python3-chardet (2.3.0-2) ...
Setting up python3-six (1.10.0-3) ...
Setting up python3-debian (0.1.27ubuntu2) ...
Setting up python3-distupgrade (1:16.04.29) ...
Setting up python3-update-manager (1:16.04.17) ...
Setting up ubuntu-release-upgrader-core (1:16.04.29) ...
Installing new version of config file /etc/update-manager/meta-release ...
Setting up update-manager-core (1:16.04.17) ...
Setting up update-notifier-common (3.168.10) ...
Installing new version of config file /etc/apt/apt.conf.d/99update-notifier ...
Installing new version of config file /etc/update-motd.d/90-updates-available ...
Setting up ubuntu-minimal (1.361.4) ...
Setting up apparmor (2.10.95-0ubuntu2.11) ...
Installing new version of config file /etc/apparmor.d/abstractions/X ...
Installing new version of config file /etc/apparmor.d/abstractions/apache2-common ...
Installing new version of config file /etc/apparmor.d/abstractions/aspell ...
Installing new version of config file /etc/apparmor.d/abstractions/audio ...
Installing new version of config file /etc/apparmor.d/abstractions/base ...
Installing new version of config file /etc/apparmor.d/abstractions/dbus-session-strict ...
Installing new version of config file /etc/apparmor.d/abstractions/dconf ...
Installing new version of config file /etc/apparmor.d/abstractions/freedesktop.org ...
Installing new version of config file /etc/apparmor.d/abstractions/gnome ...
Installing new version of config file /etc/apparmor.d/abstractions/ibus ...
Installing new version of config file /etc/apparmor.d/abstractions/kde ...
Installing new version of config file /etc/apparmor.d/abstractions/mysql ...
Installing new version of config file /etc/apparmor.d/abstractions/nameservice ...
Installing new version of config file /etc/apparmor.d/abstractions/nvidia ...
Installing new version of config file /etc/apparmor.d/abstractions/perl ...
Installing new version of config file /etc/apparmor.d/abstractions/php5 ...
Installing new version of config file /etc/apparmor.d/abstractions/python ...
Installing new version of config file /etc/apparmor.d/abstractions/ruby ...
Installing new version of config file /etc/apparmor.d/abstractions/samba ...
Installing new version of config file /etc/apparmor.d/abstractions/ssl_certs ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-bittorrent-clients ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-browsers.d/java ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-browsers.d/plugins-common ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-email ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-helpers ...
Installing new version of config file /etc/apparmor.d/abstractions/ubuntu-unity7-base ...
Installing new version of config file /etc/apparmor.d/abstractions/user-mail ...
Installing new version of config file /etc/init.d/apparmor ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
diff: /var/lib/apparmor/profiles/.apparmor.md5sums: No such file or directory
Setting up python3-commandnotfound (0.3ubuntu16.04.2) ...
Setting up command-not-found (0.3ubuntu16.04.2) ...
Installing new version of config file /etc/zsh_command_not_found ...
Setting up ubuntu-standard (1.361.4) ...
Setting up python3-problem-report (2.20.1-0ubuntu2.22) ...
Setting up python3-apport (2.20.1-0ubuntu2.22) ...
Setting up apport (2.20.1-0ubuntu2.22) ...
Installing new version of config file /etc/apport/blacklist.d/apport ...
Installing new version of config file /etc/init.d/apport ...
Package configuration                                                                                                                                                             
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
  ┌────────────────────────────────────────────────────────────────────┤ Configuring unattended-upgrades ├─────────────────────────────────────────────────────────────────────┐  
  │ A new version (/etc/apt/apt.conf.d/50unattended-upgrades.ucftmp) of configuration file /etc/apt/apt.conf.d/50unattended-upgrades is available, but the version installed   │  
  │ currently has been locally modified.                                                                                                                                       │  
  │                                                                                                                                                                            │  
  │ What do you want to do about modified configuration file 50unattended-upgrades?                                                                                            │  
  │                                                                                                                                                                            │  
  │                                                            install the package maintainer's version                                                                        │  
  │                                                            keep the local version currently installed                                                                      │  
  │                                                            show the differences between the versions                                                                       │  
  │                                                            show a side-by-side difference between the versions                                                             │  
  │                                                            start a new shell to examine the situation                                                                      │  
  │                                                                                                                                                                            │  
  │                                                                                                                                                                            │  
  │                                                                                   <Ok>                                                                                     │  
  │                                                                                                                                                                            │  
  └────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
                                                                                                                                                                                  
Setting up ssh-import-id (5.5-0ubuntu1) ...                                                                                                                                       
Processing triggers for libc-bin (2.23-0ubuntu11) ...
Processing triggers for systemd (229-4ubuntu21.27) ...
Processing triggers for initramfs-tools (0.122ubuntu8.16) ...
update-initramfs: Generating /boot/initrd.img-3.13.0-24-generic
E: amd64-microcode: unsupported kernel version!
Processing triggers for ureadahead (0.100.0-19.1) ...
Processing triggers for resolvconf (1.78ubuntu7) ...
Processing triggers for ca-certificates (20170717~16.04.2) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Processing triggers for linux-image-4.4.0-176-generic (4.4.0-176.206) ...
/etc/kernel/postinst.d/initramfs-tools:
update-initramfs: Generating /boot/initrd.img-4.4.0-176-generic
/etc/kernel/postinst.d/zz-update-grub:
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-176-generic
Found initrd image: /boot/initrd.img-4.4.0-176-generic
Found linux image: /boot/vmlinuz-3.13.0-24-generic
Found initrd image: /boot/initrd.img-3.13.0-24-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done
Processing triggers for dbus (1.10.6-1ubuntu3.5) ...

Searching for obsolete software
Reading package lists... Done    
Building dependency tree          
Reading state information... Done
Building data structures... Done 
Building data structures... Done 

Remove obsolete packages? 


34 packages are going to be removed. 

 Continue [yN]  Details [d]y
Fetched 0 B in 0s (0 B/s)                                                                                                                                                        
(Reading database ... 91339 files and directories currently installed.)
Removing apt-xapian-index (0.47ubuntu8.4) ...
Removing index /var/lib/apt-xapian-index...
Removing aptitude-common (0.7.4-2ubuntu2) ...
Removing libapt-inst1.5:amd64 (1.0.1ubuntu2.24) ...
Removing libept1.4.12:amd64 (1.0.12) ...
Removing libapt-pkg4.12:amd64 (1.0.1ubuntu2.24) ...
Removing libbind9-90 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing libboost-iostreams1.54.0:amd64 (1.54.0-4ubuntu3.1) ...
Removing libboost-iostreams1.58.0:amd64 (1.58.0+dfsg-5ubuntu3.1) ...
Removing libparse-debianchangelog-perl (1.2.0-1ubuntu1) ...
Removing libclass-accessor-perl (0.34-1) ...
Removing libcwidget3 (0.5.16-3.5ubuntu1) ...
Removing libisccfg90 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing libdns100 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing librtmp0:amd64 (2.4+20121230.gitdf6c518-1ubuntu0.1) ...
Removing libgnutls26:amd64 (2.12.23-12ubuntu2.8) ...
Removing libgcrypt11:amd64 (1.5.3-2ubuntu4.6) ...
Removing libio-string-perl (1.08-3) ...
Removing libisccc90 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing libisc95 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing liblwres90 (1:9.9.5.dfsg-3ubuntu0.19) ...
Removing libparted0debian1:amd64 (2.3-19ubuntu1.14.04.1) ...
Removing libplymouth2:amd64 (0.8.8-0ubuntu17.2) ...
Removing libprocps3:amd64 (1:3.3.9-1ubuntu2.3) ...
Removing libsigc++-2.0-0c2a:amd64 (2.2.10-0.2ubuntu2) ...
Removing libsub-name-perl (0.14-1build1) ...
Removing libsystemd-daemon0:amd64 (204-5ubuntu20.31) ...
Removing libsystemd-login0:amd64 (204-5ubuntu20.31) ...
Removing python3-xapian1.3 (1.3.4-0ubuntu1) ...
Removing libxapian-1.3-5:amd64 (1.3.4-0ubuntu6) ...
Removing python-xapian (1.2.22-2build1) ...
Removing libxapian22v5:amd64 (1.2.22-2) ...
Removing libxtables10 (1.4.21-1ubuntu1) ...
Removing linux-headers-3.13.0-24-generic (3.13.0-24.47) ...
Removing linux-headers-3.13.0-24 (3.13.0-24.47) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for dbus (1.10.6-1ubuntu3.5) ...
Processing triggers for libc-bin (2.23-0ubuntu11) ...

System upgrade is complete.

Restart required 

To finish the upgrade, a restart is required. 
If you select 'y' the system will be restarted. 

Continue [yN] y
=== Command terminated normally (Wed Mar 18 21:05:05 2020) ===
Socket error Event: 32 Error: 10053.
Connection closing...Socket close.

Connection closed by foreign host.

Disconnected from remote host(172.18.46.50---up-tmp) at 21:06:11.

Type `help' to learn how to use Xshell prompt.
[D:\~]$ 
Reconnecting in 30 seconds. Press any key to exit local shell.
..............................

 升级中下载的所有文件如下:

root@ubuntu:/var/cache/apt/archives# ls
accountsservice_0.6.40-2ubuntu11.3_amd64.deb                               libpod-latex-perl_0.61-2_all.deb
acpid_1%3a2.0.26-1ubuntu2_amd64.deb                                        libpolkit-agent-1-0_0.105-14.1ubuntu0.5_amd64.deb
adduser_3.113+nmu3ubuntu4_all.deb                                          libpolkit-backend-1-0_0.105-14.1ubuntu0.5_amd64.deb
amd64-microcode_3.20191021.1+really3.20180524.1~ubuntu0.16.04.2_amd64.deb  libpolkit-gobject-1-0_0.105-14.1ubuntu0.5_amd64.deb
apparmor_2.10.95-0ubuntu2.11_amd64.deb                                     libpopt0_1.16-10_amd64.deb
apport_2.20.1-0ubuntu2.22_all.deb                                          libprocps4_2%3a3.3.10-4ubuntu2.4_amd64.deb
apt_1.2.32_amd64.deb                                                       libpython2.7_2.7.12-1ubuntu0~16.04.9_amd64.deb
aptitude-common_0.7.4-2ubuntu2_all.deb                                     libpython2.7-minimal_2.7.12-1ubuntu0~16.04.9_amd64.deb
apt-transport-https_1.2.32_amd64.deb                                       libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.9_amd64.deb
apt-utils_1.2.32_amd64.deb                                                 libpython3.5_3.5.2-2ubuntu0~16.04.9_amd64.deb
apt-xapian-index_0.47ubuntu8.4_all.deb                                     libpython3.5-minimal_3.5.2-2ubuntu0~16.04.9_amd64.deb
at_3.1.18-2ubuntu1_amd64.deb                                               libpython3.5-stdlib_3.5.2-2ubuntu0~16.04.9_amd64.deb
base-files_9.4ubuntu4.11_amd64.deb                                         libpython3-stdlib_3.5.1-3_amd64.deb
base-passwd_3.5.39_amd64.deb                                               libpython-stdlib_2.7.12-1~16.04_amd64.deb
bash_4.3-14ubuntu1.4_amd64.deb                                             libreadline5_5.2+dfsg-3build1_amd64.deb
bash-completion_1%3a2.1-4.2ubuntu1.1_all.deb                               libreadline6_6.3-8ubuntu2_amd64.deb
bc_1.06.95-9build1_amd64.deb                                               libroken18-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb
bind9-host_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                        librtmp1_2.4+20151223.gitfa8646d-1ubuntu0.1_amd64.deb
biosdevname_0.4.1-0ubuntu9_amd64.deb                                       libsasl2-2_2.1.26.dfsg1-14ubuntu0.2_amd64.deb
bsdmainutils_9.0.6ubuntu3_amd64.deb                                        libsasl2-modules_2.1.26.dfsg1-14ubuntu0.2_amd64.deb
bsdutils_1%3a2.27.1-6ubuntu3.10_amd64.deb                                  libsasl2-modules-db_2.1.26.dfsg1-14ubuntu0.2_amd64.deb
busybox-initramfs_1%3a1.22.0-15ubuntu1.4_amd64.deb                         libseccomp2_2.4.1-0ubuntu0.16.04.2_amd64.deb
busybox-static_1%3a1.22.0-15ubuntu1.4_amd64.deb                            libselinux1_2.4-3build2_amd64.deb
byobu_5.106-0ubuntu1_all.deb                                               libsemanage1_2.3-1build3_amd64.deb
bzip2_1.0.6-8ubuntu0.2_amd64.deb                                           libsemanage-common_2.3-1build3_all.deb
ca-certificates_20170717~16.04.2_all.deb                                   libsepol1_2.4-2_amd64.deb
cgmanager_0.39-2ubuntu5_amd64.deb                                          libsigsegv2_2.10-4_amd64.deb
command-not-found_0.3ubuntu16.04.2_all.deb                                 libslang2_2.3.0-2ubuntu1.1_amd64.deb
command-not-found-data_0.3ubuntu16.04.2_amd64.deb                          libsmartcols1_2.27.1-6ubuntu3.10_amd64.deb
console-setup_1.108ubuntu15.5_all.deb                                      libsqlite3-0_3.11.0-1ubuntu1.4_amd64.deb
console-setup-linux_1.108ubuntu15.5_all.deb                                libss2_1.42.13-1ubuntu1.2_amd64.deb
coreutils_8.25-2ubuntu3~16.04_amd64.deb                                    libssl1.0.0_1.0.2g-1ubuntu4.15_amd64.deb
cpio_2.11+dfsg-5ubuntu1.1_amd64.deb                                        libstdc++6_5.4.0-6ubuntu1~16.04.12_amd64.deb
crda_3.13-1_amd64.deb                                                      libsub-name-perl_0.14-1build1_amd64.deb
cron_3.0pl1-128ubuntu2_amd64.deb                                           libsystemd0_229-4ubuntu21.27_amd64.deb
curl_7.47.0-1ubuntu2.14_amd64.deb                                          libtasn1-6_4.7-3ubuntu0.16.04.3_amd64.deb
dash_0.5.8-2.1ubuntu2_amd64.deb                                            libterm-ui-perl_0.46-1_all.deb
dbus_1.10.6-1ubuntu3.5_amd64.deb                                           libtext-charwidth-perl_0.04-7build5_amd64.deb
debconf_1.5.58ubuntu2_all.deb                                              libtext-iconv-perl_1.7-5build4_amd64.deb
debconf-i18n_1.5.58ubuntu2_all.deb                                         libtext-soundex-perl_3.4-1build3_amd64.deb
debianutils_4.7_amd64.deb                                                  libtext-wrapi18n-perl_0.06-7.1_all.deb
dh-python_2.20151103ubuntu1.2_all.deb                                      libtimedate-perl_2.3000-2_all.deb
diffutils_1%3a3.3-3_amd64.deb                                              libtinfo5_6.0+20160213-1ubuntu1_amd64.deb
distro-info-data_0.28ubuntu0.13_all.deb                                    libudev1_229-4ubuntu21.27_amd64.deb
dmidecode_3.0-2ubuntu0.2_amd64.deb                                         libusb-0.1-4_2%3a0.1.12-28_amd64.deb
dmsetup_2%3a1.02.110-1ubuntu10_amd64.deb                                   libusb-1.0-0_2%3a1.0.20-1_amd64.deb
dnsutils_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                          libustr-1.0-1_1.0.4-5_amd64.deb
dosfstools_3.0.28-2ubuntu0.1_amd64.deb                                     libutempter0_1.1.6-3_amd64.deb
dpkg_1.18.4ubuntu1.6_amd64.deb                                             libuuid1_2.27.1-6ubuntu3.10_amd64.deb
e2fslibs_1.42.13-1ubuntu1.2_amd64.deb                                      libwind0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb
e2fsprogs_1.42.13-1ubuntu1.2_amd64.deb                                     libx11-6_2%3a1.6.3-1ubuntu2.1_amd64.deb
ed_1.10-2_amd64.deb                                                        libx11-data_2%3a1.6.3-1ubuntu2.1_all.deb
eject_2.1.5+deb1+cvs20081104-13.1ubuntu0.16.04.1_amd64.deb                 libxapian-1.3-5_1.3.4-0ubuntu6_amd64.deb
ethtool_1%3a4.5-1_amd64.deb                                                libxapian22v5_1.2.22-2_amd64.deb
file_1%3a5.25-2ubuntu1.3_amd64.deb                                         libxcb1_1.11.1-1ubuntu1_amd64.deb
findutils_4.6.0+git+20160126-2_amd64.deb                                   libxdmcp6_1%3a1.1.2-1.1_amd64.deb
fonts-ubuntu-font-family-console_1%3a0.83-0ubuntu2_all.deb                 libxext6_2%3a1.3.3-1_amd64.deb
friendly-recovery_0.2.31ubuntu2.1_all.deb                                  libxml2_2.9.3+dfsg1-1ubuntu0.7_amd64.deb
ftp_0.17-33_amd64.deb                                                      libxmuu1_2%3a1.1.2-2_amd64.deb
fuse_2.9.4-1ubuntu3.1_amd64.deb                                            libxtables11_1.6.0-2ubuntu3_amd64.deb
gawk_1%3a4.1.3+dfsg-0.1_amd64.deb                                          linux-base_4.5ubuntu1~16.04.1_all.deb
gcc-4.8-base_4.8.5-4ubuntu2_amd64.deb                                      linux-firmware_1.157.22_all.deb
gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb                                     linux-generic_4.4.0.176.184_amd64.deb
gcc-5-base_5.4.0-6ubuntu1~16.04.12_amd64.deb                               linux-headers-4.4.0-176_4.4.0-176.206_all.deb
gcc-6-base_6.0.1-0ubuntu1_amd64.deb                                        linux-headers-4.4.0-176-generic_4.4.0-176.206_amd64.deb
geoip-database_20160408-1_all.deb                                          linux-headers-generic_4.4.0.176.184_amd64.deb
gettext-base_0.19.7-2ubuntu3.1_amd64.deb                                   linux-image-4.4.0-176-generic_4.4.0-176.206_amd64.deb
gir1.2-glib-2.0_1.46.0-3ubuntu1_amd64.deb                                  linux-image-generic_4.4.0.176.184_amd64.deb
gnupg_1.4.20-1ubuntu3.3_amd64.deb                                          linux-modules-4.4.0-176-generic_4.4.0-176.206_amd64.deb
gpgv_1.4.20-1ubuntu3.3_amd64.deb                                           linux-modules-extra-4.4.0-176-generic_4.4.0-176.206_amd64.deb
grep_2.25-1~16.04.1_amd64.deb                                              locales_2.23-0ubuntu11_all.deb
groff-base_1.22.3-7_amd64.deb                                              lock
grub2-common_2.02~beta2-36ubuntu3.23_amd64.deb                             login_1%3a4.2-3.1ubuntu5.4_amd64.deb
grub-common_2.02~beta2-36ubuntu3.23_amd64.deb                              logrotate_3.8.7-2ubuntu2.16.04.2_amd64.deb
grub-gfxpayload-lists_0.7_amd64.deb                                        lsb-base_9.20160110ubuntu0.2_all.deb
grub-pc_2.02~beta2-36ubuntu3.23_amd64.deb                                  lsb-release_9.20160110ubuntu0.2_all.deb
grub-pc-bin_2.02~beta2-36ubuntu3.23_amd64.deb                              lshw_02.17-1.1ubuntu3.6_amd64.deb
gzip_1.6-4ubuntu1_amd64.deb                                                lsof_4.89+dfsg-0.1_amd64.deb
hdparm_9.48+ds-1ubuntu0.1_amd64.deb                                        ltrace_0.7.3-5.1ubuntu4_amd64.deb
hostname_3.16ubuntu2_amd64.deb                                             makedev_2.3.1-93ubuntu2~ubuntu16.04.1_all.deb
ifupdown_0.8.10ubuntu1.4_amd64.deb                                         man-db_2.7.5-1_amd64.deb
info_6.1.0.dfsg.1-5_amd64.deb                                              manpages_4.04-2_all.deb
init_1.29ubuntu4_amd64.deb                                                 memtest86+_5.01-3ubuntu2_amd64.deb
initramfs-tools_0.122ubuntu8.16_all.deb                                    mime-support_3.59ubuntu1_all.deb
initramfs-tools-bin_0.122ubuntu8.16_amd64.deb                              mlocate_0.26-1ubuntu2_amd64.deb
initramfs-tools-core_0.122ubuntu8.16_all.deb                               module-init-tools_22-1ubuntu5.2_all.deb
initscripts_2.88dsf-59.3ubuntu2_amd64.deb                                  mount_2.27.1-6ubuntu3.10_amd64.deb
init-system-helpers_1.29ubuntu4_all.deb                                    mountall_2.54ubuntu1_amd64.deb
insserv_1.14.0-5ubuntu3_amd64.deb                                          mtr-tiny_0.86-1ubuntu0.1_amd64.deb
installation-report_2.60ubuntu1_all.deb                                    multiarch-support_2.23-0ubuntu11_amd64.deb
install-info_6.1.0.dfsg.1-5_amd64.deb                                      nano_2.5.3-2ubuntu2_amd64.deb
intel-microcode_3.20191115.1ubuntu0.16.04.2_amd64.deb                      ncurses-base_6.0+20160213-1ubuntu1_all.deb
iproute2_4.3.0-1ubuntu3.16.04.5_amd64.deb                                  ncurses-bin_6.0+20160213-1ubuntu1_amd64.deb
iptables_1.6.0-2ubuntu3_amd64.deb                                          ncurses-term_6.0+20160213-1ubuntu1_all.deb
iputils-ping_3%3a20121221-5ubuntu2_amd64.deb                               netbase_5.3_all.deb
iputils-tracepath_3%3a20121221-5ubuntu2_amd64.deb                          net-tools_1.60-26ubuntu1_amd64.deb
irqbalance_1.1.0-2ubuntu1_amd64.deb                                        ntfs-3g_1%3a2015.3.14AR.1-1ubuntu0.3_amd64.deb
isc-dhcp-client_4.3.3-5ubuntu12.10_amd64.deb                               ntpdate_1%3a4.2.8p4+dfsg-3ubuntu5.10_amd64.deb
isc-dhcp-common_4.3.3-5ubuntu12.10_amd64.deb                               openssh-client_1%3a7.2p2-4ubuntu2.8_amd64.deb
iso-codes_3.65-1_all.deb                                                   openssh-server_1%3a7.2p2-4ubuntu2.8_amd64.deb
iucode-tool_1.5.1-1ubuntu0.1_amd64.deb                                     openssh-sftp-server_1%3a7.2p2-4ubuntu2.8_amd64.deb
iw_3.17-1_amd64.deb                                                        openssl_1.0.2g-1ubuntu4.15_amd64.deb
kbd_1.15.5-1ubuntu5_amd64.deb                                              os-prober_1.70ubuntu3.3_amd64.deb
keyboard-configuration_1.108ubuntu15.5_all.deb                             parted_3.2-15ubuntu0.1_amd64.deb
klibc-utils_2.0.4-8ubuntu1.16.04.4_amd64.deb                               partial
kmod_22-1ubuntu5.2_amd64.deb                                               passwd_1%3a4.2-3.1ubuntu5.4_amd64.deb
krb5-locales_1.13.2+dfsg-5ubuntu2.1_all.deb                                pastebinit_1.5-1_all.deb
landscape-common_16.03-0ubuntu2.16.04.7_amd64.deb                          patch_2.7.5-1ubuntu0.16.04.2_amd64.deb
language-selector-common_0.165.4_all.deb                                   pciutils_1%3a3.3.1-1.1ubuntu1.3_amd64.deb
less_481-2.1ubuntu0.2_amd64.deb                                            perl_5.22.1-9ubuntu0.6_amd64.deb
libaccountsservice0_0.6.40-2ubuntu11.3_amd64.deb                           perl-base_5.22.1-9ubuntu0.6_amd64.deb
libacl1_2.2.52-3_amd64.deb                                                 perl-modules-5.22_5.22.1-9ubuntu0.6_all.deb
libapparmor1_2.10.95-0ubuntu2.11_amd64.deb                                 plymouth_0.9.2-3ubuntu13.5_amd64.deb
libapparmor-perl_2.10.95-0ubuntu2.11_amd64.deb                             plymouth-theme-ubuntu-text_0.9.2-3ubuntu13.5_amd64.deb
libapt-inst2.0_1.2.32_amd64.deb                                            policykit-1_0.105-14.1ubuntu0.5_amd64.deb
libapt-pkg5.0_1.2.32_amd64.deb                                             popularity-contest_1.64ubuntu2_all.deb
libarchive-extract-perl_0.76-1_all.deb                                     powermgmt-base_1.31+nmu1_all.deb
libasn1-8-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb          ppp_2.4.7-1+2ubuntu1.16.04.2_amd64.deb
libasprintf0v5_0.19.7-2ubuntu3.1_amd64.deb                                 pppconfig_2.3.22_all.deb
libattr1_1%3a2.4.47-2_amd64.deb                                            pppoeconf_1.21ubuntu1_all.deb
libaudit1_1%3a2.4.5-1ubuntu2.1_amd64.deb                                   procps_2%3a3.3.10-4ubuntu2.4_amd64.deb
libaudit-common_1%3a2.4.5-1ubuntu2.1_all.deb                               psmisc_22.21-2.1ubuntu0.1_amd64.deb
libbind9-140_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                      python_2.7.12-1~16.04_amd64.deb
libblkid1_2.27.1-6ubuntu3.10_amd64.deb                                     python2.7_2.7.12-1ubuntu0~16.04.9_amd64.deb
libboost-iostreams1.58.0_1.58.0+dfsg-5ubuntu3.1_amd64.deb                  python2.7-minimal_2.7.12-1ubuntu0~16.04.9_amd64.deb
libbsd0_0.8.2-1ubuntu0.1_amd64.deb                                         python3_3.5.1-3_amd64.deb
libbz2-1.0_1.0.6-8ubuntu0.2_amd64.deb                                      python3.5_3.5.2-2ubuntu0~16.04.9_amd64.deb
libc6_2.23-0ubuntu11_amd64.deb                                             python3.5-minimal_3.5.2-2ubuntu0~16.04.9_amd64.deb
libcap2_1%3a2.24-12_amd64.deb                                              python3-apport_2.20.1-0ubuntu2.22_all.deb
libcap2-bin_1%3a2.24-12_amd64.deb                                          python3-apt_1.1.0~beta1ubuntu0.16.04.8_amd64.deb
libcap-ng0_0.7.7-1_amd64.deb                                               python3-chardet_2.3.0-2_all.deb
libc-bin_2.23-0ubuntu11_amd64.deb                                          python3-commandnotfound_0.3ubuntu16.04.2_all.deb
libcgmanager0_0.39-2ubuntu5_amd64.deb                                      python3-dbus_1.2.0-3_amd64.deb
libck-connector0_0.4.6-5_amd64.deb                                         python3-debian_0.1.27ubuntu2_all.deb
libcomerr2_1.42.13-1ubuntu1.2_amd64.deb                                    python3-distupgrade_1%3a16.04.29_all.deb
libcryptsetup4_2%3a1.6.6-5ubuntu2.1_amd64.deb                              python3-gdbm_3.5.1-1_amd64.deb
libcurl3_7.47.0-1ubuntu2.14_amd64.deb                                      python3-gi_3.20.0-0ubuntu1_amd64.deb
libcurl3-gnutls_7.47.0-1ubuntu2.14_amd64.deb                               python3-minimal_3.5.1-3_amd64.deb
libdb5.3_5.3.28-11ubuntu0.2_amd64.deb                                      python3-newt_0.52.18-1ubuntu2_amd64.deb
libdbus-1-3_1.10.6-1ubuntu3.5_amd64.deb                                    python3-pkg-resources_20.7.0-1_all.deb
libdbus-glib-1-2_0.106-1_amd64.deb                                         python3-problem-report_2.20.1-0ubuntu2.22_all.deb
libdebconfclient0_0.198ubuntu1_amd64.deb                                   python3-pycurl_7.43.0-1ubuntu1_amd64.deb
libdevmapper1.02.1_2%3a1.02.110-1ubuntu10_amd64.deb                        python3-requests_2.9.1-3ubuntu0.1_all.deb
libdns162_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                         python3-six_1.10.0-3_all.deb
libdns-export162_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                  python3-software-properties_0.96.20.9_all.deb
libdrm2_2.4.91-2~16.04.1_amd64.deb                                         python3-systemd_231-2build1_amd64.deb
libdrm-common_2.4.91-2~16.04.1_all.deb                                     python3-update-manager_1%3a16.04.17_all.deb
libedit2_3.1-20150325-1ubuntu2_amd64.deb                                   python3-urllib3_1.13.1-2ubuntu0.16.04.3_all.deb
libelf1_0.165-3ubuntu1.2_amd64.deb                                         python3-xapian1.3_1.3.4-0ubuntu1_amd64.deb
libestr0_0.1.10-1_amd64.deb                                                python-apt_1.1.0~beta1ubuntu0.16.04.8_amd64.deb
libevent-2.0-5_2.0.21-stable-2ubuntu0.16.04.1_amd64.deb                    python-apt-common_1.1.0~beta1ubuntu0.16.04.8_all.deb
libexpat1_2.1.0-7ubuntu0.16.04.5_amd64.deb                                 python-attr_15.2.0-1_all.deb
libfdisk1_2.27.1-6ubuntu3.10_amd64.deb                                     python-cffi-backend_1.5.2-1ubuntu1_amd64.deb
libffi6_3.2.1-4_amd64.deb                                                  python-chardet_2.3.0-2_all.deb
libfreetype6_2.6.1-0.1ubuntu2.4_amd64.deb                                  python-configobj_5.0.6-2_all.deb
libfribidi0_0.19.7-1_amd64.deb                                             python-cryptography_1.2.3-1ubuntu0.2_amd64.deb
libfuse2_2.9.4-1ubuntu3.1_amd64.deb                                        python-debian_0.1.27ubuntu2_all.deb
libgc1c2_1%3a7.4.2-7.3ubuntu0.1_amd64.deb                                  python-enum34_1.1.2-1_all.deb
libgcc1_1%3a6.0.1-0ubuntu1_amd64.deb                                       python-gdbm_2.7.12-1~16.04_amd64.deb
libgck-1-0_3.18.0-1ubuntu1_amd64.deb                                       python-idna_2.0-3_all.deb
libgcr-3-common_3.18.0-1ubuntu1_all.deb                                    python-ipaddress_1.0.16-1_all.deb
libgcr-base-3-1_3.18.0-1ubuntu1_amd64.deb                                  python-minimal_2.7.12-1~16.04_amd64.deb
libgcrypt20_1.6.5-2ubuntu0.6_amd64.deb                                     python-ndg-httpsclient_0.4.0-3_all.deb
libgdbm3_1.8.3-13.1_amd64.deb                                              python-openssl_0.15.1-2ubuntu0.2_all.deb
libgeoip1_1.6.9-1_amd64.deb                                                python-pam_0.4.2-13.2ubuntu2_amd64.deb
libgirepository-1.0-1_1.46.0-3ubuntu1_amd64.deb                            python-pkg-resources_20.7.0-1_all.deb
libglib2.0-0_2.48.2-0ubuntu4.4_amd64.deb                                   python-pyasn1_0.1.9-1_all.deb
libglib2.0-data_2.48.2-0ubuntu4.4_all.deb                                  python-pyasn1-modules_0.0.7-0.1_all.deb
libgmp10_2%3a6.1.0+dfsg-2_amd64.deb                                        python-requests_2.9.1-3ubuntu0.1_all.deb
libgnutls30_3.4.10-4ubuntu1.7_amd64.deb                                    python-serial_3.0.1-1_all.deb
libgnutls-openssl27_3.4.10-4ubuntu1.7_amd64.deb                            python-service-identity_16.0.0-2_all.deb
libgpg-error0_1.21-2ubuntu1_amd64.deb                                      python-six_1.10.0-3_all.deb
libgssapi3-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb         python-twisted-bin_16.0.0-1ubuntu0.2_amd64.deb
libgssapi-krb5-2_1.13.2+dfsg-5ubuntu2.1_amd64.deb                          python-twisted-core_16.0.0-1ubuntu0.2_all.deb
libhcrypto4-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb        python-urllib3_1.13.1-2ubuntu0.16.04.3_all.deb
libheimbase1-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb       python-xapian_1.2.22-2build1_amd64.deb
libheimntlm0-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb       python-zope.interface_4.1.3-1build1_amd64.deb
libhogweed4_3.2-1ubuntu0.16.04.1_amd64.deb                                 readline-common_6.3-8ubuntu2_all.deb
libhx509-5-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb         rename_0.20-4_all.deb
libicu55_55.1-7ubuntu0.5_amd64.deb                                         resolvconf_1.78ubuntu7_all.deb
libidn11_1.32-3ubuntu1.2_amd64.deb                                         rsync_3.1.1-3ubuntu1.3_amd64.deb
libisc160_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                         rsyslog_8.16.0-1ubuntu3.1_amd64.deb
libisccc140_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                       screen_4.3.1-2build1_amd64.deb
libisccfg140_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                      sed_4.2.2-7_amd64.deb
libisc-export160_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                  sensible-utils_0.0.9ubuntu0.16.04.1_all.deb
libjson0_0.11-4ubuntu2_amd64.deb                                           shared-mime-info_1.5-2ubuntu0.2_amd64.deb
libjson-c2_0.11-4ubuntu2_amd64.deb                                         software-properties-common_0.96.20.9_all.deb
libk5crypto3_1.13.2+dfsg-5ubuntu2.1_amd64.deb                              ssh-import-id_5.5-0ubuntu1_all.deb
libkeyutils1_1.5.9-8ubuntu1_amd64.deb                                      strace_4.11-1ubuntu3_amd64.deb
libklibc_2.0.4-8ubuntu1.16.04.4_amd64.deb                                  sudo_1.8.16-0ubuntu1.9_amd64.deb
libkmod2_22-1ubuntu5.2_amd64.deb                                           systemd_229-4ubuntu21.27_amd64.deb
libkrb5-26-heimdal_1.7~git20150920+dfsg-4ubuntu1.16.04.1_amd64.deb         systemd-shim_9-1bzr4ubuntu1_amd64.deb
libkrb5-3_1.13.2+dfsg-5ubuntu2.1_amd64.deb                                 systemd-sysv_229-4ubuntu21.27_amd64.deb
libkrb5support0_1.13.2+dfsg-5ubuntu2.1_amd64.deb                           sysvinit-utils_2.88dsf-59.3ubuntu2_amd64.deb
libldap-2.4-2_2.4.42+dfsg-2ubuntu3.7_amd64.deb                             sysv-rc_2.88dsf-59.3ubuntu2_all.deb
liblocale-gettext-perl_1.07-1build1_amd64.deb                              tar_1.28-2.1ubuntu0.1_amd64.deb
liblog-message-perl_0.8-1_all.deb                                          tasksel_3.34ubuntu3_all.deb
liblog-message-simple-perl_0.10-2_all.deb                                  tasksel-data_3.34ubuntu3_all.deb
liblwres141_1%3a9.10.3.dfsg.P4-8ubuntu1.15_amd64.deb                       tcpdump_4.9.3-0ubuntu0.16.04.1_amd64.deb
liblz4-1_0.0~r131-2ubuntu2_amd64.deb                                       telnet_0.17-40_amd64.deb
libmagic1_1%3a5.25-2ubuntu1.3_amd64.deb                                    thermald_1.5-2ubuntu4_amd64.deb
libmnl0_1.0.3-5_amd64.deb                                                  time_1.7-25.1_amd64.deb
libmodule-pluggable-perl_5.2-1_all.deb                                     tmux_2.1-3build1_amd64.deb
libmodule-runtime-perl_0.014-2_all.deb                                     tzdata_2019c-0ubuntu0.16.04_all.deb
libmount1_2.27.1-6ubuntu3.10_amd64.deb                                     ubuntu-advantage-tools_10ubuntu0.16.04.1_all.deb
libmpdec2_2.4.2-1_amd64.deb                                                ubuntu-minimal_1.361.4_amd64.deb
libmpfr4_3.1.4-1_amd64.deb                                                 ubuntu-release-upgrader-core_1%3a16.04.29_all.deb
libncurses5_6.0+20160213-1ubuntu1_amd64.deb                                ubuntu-standard_1.361.4_amd64.deb
libncursesw5_6.0+20160213-1ubuntu1_amd64.deb                               ucf_3.0036_all.deb
libnettle6_3.2-1ubuntu0.16.04.1_amd64.deb                                  udev_229-4ubuntu21.27_amd64.deb
libnewt0.52_0.52.18-1ubuntu2_amd64.deb                                     ufw_0.35-0ubuntu2_all.deb
libnfnetlink0_1.0.1-3_amd64.deb                                            unattended-upgrades_1.1ubuntu1.18.04.7~16.04.6_all.deb
libnih1_1.0.3-4.3ubuntu1_amd64.deb                                         update-manager-core_1%3a16.04.17_all.deb
libnih-dbus1_1.0.3-4.3ubuntu1_amd64.deb                                    update-motd_3.6-0ubuntu1_all.deb
libnl-3-200_3.2.27-1ubuntu0.16.04.1_amd64.deb                              update-notifier-common_3.168.10_all.deb
libnl-genl-3-200_3.2.27-1ubuntu0.16.04.1_amd64.deb                         upstart_1.13.2-0ubuntu21.1_amd64.deb
libnuma1_2.0.11-1ubuntu1.1_amd64.deb                                       ureadahead_0.100.0-19.1_amd64.deb
libp11-kit0_0.23.2-5~ubuntu16.04.1_amd64.deb                               usbutils_1%3a007-4_amd64.deb
libpam0g_1.1.8-3.2ubuntu2.1_amd64.deb                                      util-linux_2.27.1-6ubuntu3.10_amd64.deb
libpam-cap_1%3a2.24-12_amd64.deb                                           uuid-runtime_2.27.1-6ubuntu3.10_amd64.deb
libpam-modules_1.1.8-3.2ubuntu2.1_amd64.deb                                vim_2%3a7.4.1689-3ubuntu1.3_amd64.deb
libpam-modules-bin_1.1.8-3.2ubuntu2.1_amd64.deb                            vim-common_2%3a7.4.1689-3ubuntu1.3_amd64.deb
libpam-runtime_1.1.8-3.2ubuntu2.1_all.deb                                  vim-runtime_2%3a7.4.1689-3ubuntu1.3_all.deb
libpam-systemd_229-4ubuntu21.27_amd64.deb                                  vim-tiny_2%3a7.4.1689-3ubuntu1.3_amd64.deb
libparams-classify-perl_0.013-5build1_amd64.deb                            w3m_0.5.3-26ubuntu0.2_amd64.deb
libparted2_3.2-15ubuntu0.1_amd64.deb                                       wget_1.17.1-1ubuntu1.5_amd64.deb
libpcap0.8_1.7.4-2ubuntu0.1_amd64.deb                                      whiptail_0.52.18-1ubuntu2_amd64.deb
libpci3_1%3a3.3.1-1.1ubuntu1.3_amd64.deb                                   wireless-regdb_2018.05.09-0ubuntu1~16.04.1_all.deb
libpcre3_2%3a8.38-3.1_amd64.deb                                            wpasupplicant_2.4-0ubuntu6.6_amd64.deb
libpcsclite1_1.8.14-1ubuntu1.16.04.1_amd64.deb                             xauth_1%3a1.0.9-1ubuntu2_amd64.deb
libperl5.22_5.22.1-9ubuntu0.6_amd64.deb                                    xdg-user-dirs_0.15-2ubuntu6.16.04.1_amd64.deb
libpipeline1_1.4.1-2_amd64.deb                                             xkb-data_2.16-1ubuntu1_all.deb
libplymouth4_0.9.2-3ubuntu13.5_amd64.deb                                   zlib1g_1%3a1.2.8.dfsg-2ubuntu4.3_amd64.deb
libpng12-0_1.2.54-1ubuntu1.1_amd64.deb
发布了134 篇原创文章 · 获赞 35 · 访问量 11万+

猜你喜欢

转载自blog.csdn.net/shunzi2016/article/details/104953510