ubuntu 16.04

Asked by phil

I have just got a renewed computer with ubuntu 16.04 installed and now i'm getting 2 error message windows at start up. The 1st is a small window saying "system program problem detected" with 2 small buttons "cancel" & "report problem".
The 2nd window appears in the centre of the screen & says "low disc space" & " the volume boot has only 0% bytes disc space remaining" with 2 buttons "examine" & "ignore".
What do they mean & can i get rid of them?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Ubfan
Solved:
Last query:
Last reply:
Revision history for this message
Best Ubfan (ubfan1) said :
#1

Ignore the first problem until you fix the /boot partition full problem. Separate boot partitions are usually sized for only a few kernels, so you need to keep purging the old ones to keep from filling the partition up. Unless you have a reason for a separate boot partition, just don't use one, them you have the full root filesystem to fill up before problems develop. Reasons to have one include: 1)Needed to keep kernels at the beginning of the disk (history, but maybe relevant again with these 4T+ disks) 2)encrypted root filesystem, 3)RAID, etc. Check the space on all your partitions with the terminal command df (start a terminal with ctrl alt t). See how much space is left on root )(/), and the space taken by /boot. Look at /boot with the ls command, and see how many kernels you have (the vmlinuz files are kernels). See which kernel you are current running (uname -a) and it should be the kernel with the highest number. If not, maybe that kernel is not completely installed, Try to keep the two latest kernels, but keep the running one too. purge the older ones and all their associated files by listing the packages with the kernel number in them, then deleting all of those packages. The following two commands will do that:
apt-cache pkgnames | grep 4.4.0-71 (or whatever kernel number you are trying to remove instead of 71)
sudo apt-get purge `!!` (those are backtics, and that should just list the packages of the previous command.
You will be asked for confirmation of the packages to delete (not all will even be present). Repeat until you have freed up space in /boot.
Keep track of kernel updates, and the space needed in /boot.

Or
Just unmount the /boot partition, remount it at /mnt for instance, and then copy everything back to /boot (now on the root partition). Edit out the mount of /boot in the /etc/fstab file (put a # at the beginning of the line). and check every so often for excess kernels (and delete them as done above). Filling up the root is far less likely, than filling up a small /boot partition.

Revision history for this message
phil (phiman) said :
#2

thanx for the reply. it's obviously great advice but i don't understand a word of it?
i'm new to ubuntu & have very little programing experience.
cheers
phil

Revision history for this message
Bashing-om (bashing-om) said :
#3

Phil; Hello -

I am on for a spell and can assist here .
We work at your pace and in small steps .
1st is the 'df' command to see where the space is consumed.
Post back the results of terminal commands:
df -h
df -i

The error says it is boot - we do need to know how much overhead we have for operating .
Depending on the overhead ( operational room) is what tools we use to get those old kernels removed.

- ain't nothing but a thing -

Revision history for this message
phil (phiman) said :
#4

g'day

here's the df info

phil@phil-OptiPlex-960:~$ df
Filesystem 1K-blocks Used Available Use% Mounted on
udev 1919076 0 1919076 0% /dev
tmpfs 387992 6140 381852 2% /run
/dev/mapper/ubuntu--vg-root 149207356 11577112 130027864 9% /
tmpfs 1939948 300 1939648 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 1939948 0 1939948 0% /sys/fs/cgroup
/dev/sda1 482922 478323 0 100% /boot
tmpfs 387992 68 387924 1% /run/user/1000

and here is the df -h & df -i info

phil@phil-OptiPlex-960:~$ df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.9G 0 1.9G 0% /dev
tmpfs 379M 6.0M 373M 2% /run
/dev/mapper/ubuntu--vg-root 143G 12G 125G 9% /
tmpfs 1.9G 300K 1.9G 1% /dev/shm
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
/dev/sda1 472M 468M 0 100% /boot
tmpfs 379M 64K 379M 1% /run/user/1000

phil@phil-OptiPlex-960:~$ df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
udev 479769 512 479257 1% /dev
tmpfs 484987 716 484271 1% /run
/dev/mapper/ubuntu--vg-root 9486336 580698 8905638 7% /
tmpfs 484987 10 484977 1% /dev/shm
tmpfs 484987 6 484981 1% /run/lock
tmpfs 484987 16 484971 1% /sys/fs/cgroup
/dev/sda1 124928 347 124581 1% /boot
tmpfs 484987 31 484956 1% /run/user/1000

On 16/07/17 04:44, Bashing-om wrote:
> Your question #648052 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/648052
>
> Status: Open => Needs information
>
> Bashing-om requested more information:
> Phil; Hello -
>
> I am on for a spell and can assist here .
> We work at your pace and in small steps .
> 1st is the 'df' command to see where the space is consumed.
> Post back the results of terminal commands:
> df -h
> df -i
>
> The error says it is boot - we do need to know how much overhead we have for operating .
> Depending on the overhead ( operational room) is what tools we use to get those old kernels removed.
>
> - ain't nothing but a thing -
>

Revision history for this message
Manfred Hampl (m-hampl) said :
#5

"/dev/sda1 472M 468M 0 100% /boot"

This is the line providing the important information.

Your system is configured to have a separate /boot partition to hold the files that are used during the boot process (e.g. the so-called kernel image).
About once a month a new version of the kernel files is provided for installing by the package update process. There is no automatic deletion of the old versions in place. You now run into the problem that the different versions have filled up the /boot partition. Solution for your problem is removing the old outdated kernel packages to free up space on /boot.

For providing the right commands we need some more information.
What is the output of the commands

dpkg -l | grep ' linux-i'
ls /boot

Revision history for this message
phil (phiman) said :
#6

g'day,

here is the info you asked for,

phil@phil-OptiPlex-960:~$ dpkg -l | grep ' linux-i'
rc linux-image-4.4.0-31-generic
4.4.0-31.50 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
rc linux-image-4.4.0-59-generic
4.4.0-59.80 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
rc linux-image-4.4.0-62-generic
4.4.0-62.83 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-64-generic
4.4.0-64.85 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-66-generic
4.4.0-66.87 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-70-generic
4.4.0-70.91 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-71-generic
4.4.0-71.92 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-72-generic
4.4.0-72.93 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-75-generic
4.4.0-75.96 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-78-generic
4.4.0-78.99 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-79-generic
4.4.0-79.100 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
ii linux-image-4.4.0-81-generic
4.4.0-81.104 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
iF linux-image-4.4.0-83-generic
4.4.0-83.106 amd64 Linux kernel
image for version 4.4.0 on 64 bit x86 SMP
rc linux-image-extra-4.4.0-31-generic
4.4.0-31.50 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
rc linux-image-extra-4.4.0-59-generic
4.4.0-59.80 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
rc linux-image-extra-4.4.0-62-generic
4.4.0-62.83 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-64-generic
4.4.0-64.85 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-66-generic
4.4.0-66.87 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-70-generic
4.4.0-70.91 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-71-generic
4.4.0-71.92 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-72-generic
4.4.0-72.93 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-75-generic
4.4.0-75.96 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-78-generic
4.4.0-78.99 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
ii linux-image-extra-4.4.0-79-generic
4.4.0-79.100 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
iF linux-image-extra-4.4.0-81-generic
4.4.0-81.104 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
iU linux-image-extra-4.4.0-83-generic
4.4.0-83.106 amd64 Linux kernel
extra modules for version 4.4.0 on 64 bit x86 SMP
iU linux-image-generic 4.4.0.83.89
amd64 Generic Linux kernel image
phil@phil-OptiPlex-960:~$ ls /boot
abi-4.4.0-64-generic initrd.img-4.4.0-78-generic
abi-4.4.0-66-generic initrd.img-4.4.0-79-generic
abi-4.4.0-70-generic initrd.img-4.4.0-81-generic
abi-4.4.0-71-generic lost+found
abi-4.4.0-72-generic memtest86+.bin
abi-4.4.0-75-generic memtest86+.elf
abi-4.4.0-78-generic memtest86+_multiboot.bin
abi-4.4.0-79-generic System.map-4.4.0-64-generic
abi-4.4.0-81-generic System.map-4.4.0-66-generic
abi-4.4.0-83-generic System.map-4.4.0-70-generic
config-4.4.0-64-generic System.map-4.4.0-71-generic
config-4.4.0-66-generic System.map-4.4.0-72-generic
config-4.4.0-70-generic System.map-4.4.0-75-generic
config-4.4.0-71-generic System.map-4.4.0-78-generic
config-4.4.0-72-generic System.map-4.4.0-79-generic
config-4.4.0-75-generic System.map-4.4.0-81-generic
config-4.4.0-78-generic System.map-4.4.0-83-generic
config-4.4.0-79-generic vmlinuz-4.4.0-64-generic
config-4.4.0-81-generic vmlinuz-4.4.0-66-generic
config-4.4.0-83-generic vmlinuz-4.4.0-70-generic
grub vmlinuz-4.4.0-71-generic
initrd.img-4.4.0-64-generic vmlinuz-4.4.0-72-generic
initrd.img-4.4.0-66-generic vmlinuz-4.4.0-75-generic
initrd.img-4.4.0-70-generic vmlinuz-4.4.0-78-generic
initrd.img-4.4.0-71-generic vmlinuz-4.4.0-79-generic
initrd.img-4.4.0-72-generic vmlinuz-4.4.0-81-generic
initrd.img-4.4.0-75-generic vmlinuz-4.4.0-83-generic

On 19/07/17 17:43, Manfred Hampl wrote:
> Your question #648052 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/648052
>
> Status: Open => Needs information
>
> Manfred Hampl requested more information:
> "/dev/sda1 472M 468M 0 100% /boot"
>
> This is the line providing the important information.
>
> Your system is configured to have a separate /boot partition to hold the files that are used during the boot process (e.g. the so-called kernel image).
> About once a month a new version of the kernel files is provided for installing by the package update process. There is no automatic deletion of the old versions in place. You now run into the problem that the different versions have filled up the /boot partition. Solution for your problem is removing the old outdated kernel packages to free up space on /boot.
>
> For providing the right commands we need some more information.
> What is the output of the commands
>
> dpkg -l | grep ' linux-i'
> ls /boot
>

Revision history for this message
Manfred Hampl (m-hampl) said :
#7

Ok, try the following commands

sudo rm /boot/initrd-4.4.0-64-generic
sudo rm /boot/vmlinuz-4.4.0-64-generic
sudo rm /boot/initrd-4.4.0-66-generic
sudo rm /boot/vmlinuz-4.4.0-66-generic
sudo rm /boot/initrd-4.4.0-70-generic
sudo rm /boot/vmlinuz-4.4.0-70-generic
sudo rm /boot/initrd-4.4.0-71-generic
sudo rm /boot/vmlinuz-4.4.0-71-generic
sudo apt-get install -f

and report the results.

Revision history for this message
phil (phiman) said :
#8

g'day again,

here is the data

cheers

phil@phil-OptiPlex-960:~$ sudo rm /boot/initrd-4.4.0-64-generic
[sudo] password for phil:
Sorry, try again.
[sudo] password for phil:
rm: cannot remove '/boot/initrd-4.4.0-64-generic': No such file or directory
phil@phil-OptiPlex-960:~$ sudo rm /boot/vmlinuz-4.4.0-64-generic
phil@phil-OptiPlex-960:~$ sudo rm /boot/initrd-4.4.0-66-generic
rm: cannot remove '/boot/initrd-4.4.0-66-generic': No such file or directory
phil@phil-OptiPlex-960:~$ sudo rm /boot/vmlinuz-4.4.0-66-generic
phil@phil-OptiPlex-960:~$ sudo rm /boot/initrd-4.4.0-70-generic
rm: cannot remove '/boot/initrd-4.4.0-70-generic': No such file or directory
phil@phil-OptiPlex-960:~$ sudo rm /boot/vmlinuz-4.4.0-70-generic
phil@phil-OptiPlex-960:~$ sudo rm /boot/initrd-4.4.0-71-generic
rm: cannot remove '/boot/initrd-4.4.0-71-generic': No such file or directory
phil@phil-OptiPlex-960:~$ sudo rm /boot/vmlinuz-4.4.0-71-generic
phil@phil-OptiPlex-960:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer
required:
   ioquake3 ioquake3-server libopusfile0 libqt5script5 libqt5serialport5
   libsdl2-2.0-0 libsndio6.1 linux-headers-4.4.0-64
   linux-headers-4.4.0-64-generic linux-headers-4.4.0-66
   linux-headers-4.4.0-66-generic linux-headers-4.4.0-70
   linux-headers-4.4.0-70-generic linux-headers-4.4.0-71
   linux-headers-4.4.0-71-generic linux-headers-4.4.0-72
   linux-headers-4.4.0-72-generic linux-headers-4.4.0-75
   linux-headers-4.4.0-75-generic linux-headers-4.4.0-78
   linux-headers-4.4.0-78-generic linux-headers-4.4.0-79
   linux-headers-4.4.0-79-generic linux-image-4.4.0-64-generic
   linux-image-4.4.0-66-generic linux-image-4.4.0-70-generic
   linux-image-4.4.0-71-generic linux-image-4.4.0-72-generic
   linux-image-4.4.0-75-generic linux-image-4.4.0-78-generic
   linux-image-4.4.0-79-generic linux-image-extra-4.4.0-64-generic
   linux-image-extra-4.4.0-66-generic linux-image-extra-4.4.0-70-generic
   linux-image-extra-4.4.0-71-generic linux-image-extra-4.4.0-72-generic
   linux-image-extra-4.4.0-75-generic linux-image-extra-4.4.0-78-generic
   linux-image-extra-4.4.0-79-generic openarena-081-maps openarena-081-misc
   openarena-081-players openarena-081-players-mature openarena-081-textures
   openarena-085-data openarena-088-data openarena-data openarena-oacmp1
   snap-confine stellarium-data ubuntu-core-launcher
Use 'sudo apt autoremove' to remove them.
0 to upgrade, 0 to newly install, 0 to remove and 63 not to upgrade.
6 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up linux-firmware (1.157.11) ...
update-initramfs: Generating /boot/initrd.img-4.4.0-81-generic

On 20/07/17 16:16, Manfred Hampl wrote:
> Your question #648052 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/648052
>
> Status: Open => Answered
>
> Manfred Hampl proposed the following answer:
> Ok, try the following commands
>
> sudo rm /boot/initrd-4.4.0-64-generic
> sudo rm /boot/vmlinuz-4.4.0-64-generic
> sudo rm /boot/initrd-4.4.0-66-generic
> sudo rm /boot/vmlinuz-4.4.0-66-generic
> sudo rm /boot/initrd-4.4.0-70-generic
> sudo rm /boot/vmlinuz-4.4.0-70-generic
> sudo rm /boot/initrd-4.4.0-71-generic
> sudo rm /boot/vmlinuz-4.4.0-71-generic
> sudo apt-get install -f
>
> and report the results.
>

Revision history for this message
Bashing-om (bashing-om) said :
#9

phil ; Hey;

Progress being made.
Now run:
sudo apt autoremove
sudo apt update
sudo apt full-upgrade

Post if there are reported errors .

And then show us the results:
df -h
dpkg -l | grep linux-
uname -r

-clean; we like it clean-

Revision history for this message
phil (phiman) said :
#10

g'day

it seems like u did it!

(i never doubted you) lol

  i don't know if you need it all but, here's the data

cheers phil

phil@phil-OptiPlex-960:~$ sudo apt autoremove
[sudo] password for phil:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
   ioquake3 ioquake3-server libopusfile0 libqt5script5 libqt5serialport5
   libsdl2-2.0-0 libsndio6.1 linux-headers-4.4.0-64
   linux-headers-4.4.0-64-generic linux-headers-4.4.0-66
   linux-headers-4.4.0-66-generic linux-headers-4.4.0-70
   linux-headers-4.4.0-70-generic linux-headers-4.4.0-71
   linux-headers-4.4.0-71-generic linux-headers-4.4.0-72
   linux-headers-4.4.0-72-generic linux-headers-4.4.0-75
   linux-headers-4.4.0-75-generic linux-headers-4.4.0-78
   linux-headers-4.4.0-78-generic linux-headers-4.4.0-79
   linux-headers-4.4.0-79-generic linux-image-4.4.0-64-generic
   linux-image-4.4.0-66-generic linux-image-4.4.0-70-generic
   linux-image-4.4.0-71-generic linux-image-4.4.0-72-generic
   linux-image-4.4.0-75-generic linux-image-4.4.0-78-generic
   linux-image-4.4.0-79-generic linux-image-extra-4.4.0-64-generic
   linux-image-extra-4.4.0-66-generic linux-image-extra-4.4.0-70-generic
   linux-image-extra-4.4.0-71-generic linux-image-extra-4.4.0-72-generic
   linux-image-extra-4.4.0-75-generic linux-image-extra-4.4.0-78-generic
   linux-image-extra-4.4.0-79-generic openarena-081-maps openarena-081-misc
   openarena-081-players openarena-081-players-mature openarena-081-textures
   openarena-085-data openarena-088-data openarena-data openarena-oacmp1
   snap-confine stellarium-data ubuntu-core-launcher
0 to upgrade, 0 to newly install, 51 to remove and 63 not to upgrade.
6 not fully installed or removed.
After this operation, 3,004 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 477244 files and directories currently installed.)
Removing ioquake3 (1.36+u20160122+dfsg1-1) ...
Removing ioquake3-server (1.36+u20160122+dfsg1-1) ...
Removing libopusfile0 (0.7-1) ...
Removing libqt5script5:amd64 (5.5.1+dfsg-2build1) ...
Removing libqt5serialport5:amd64 (5.5.1-2build1) ...
Removing libsdl2-2.0-0:amd64 (2.0.4+dfsg1-2ubuntu2) ...
Removing libsndio6.1:amd64 (1.1.0-2) ...
Removing linux-headers-4.4.0-64-generic (4.4.0-64.85) ...
Removing linux-headers-4.4.0-64 (4.4.0-64.85) ...
Removing linux-headers-4.4.0-66-generic (4.4.0-66.87) ...
Removing linux-headers-4.4.0-66 (4.4.0-66.87) ...
Removing linux-headers-4.4.0-70-generic (4.4.0-70.91) ...
Removing linux-headers-4.4.0-70 (4.4.0-70.91) ...
Removing linux-headers-4.4.0-71-generic (4.4.0-71.92) ...
Removing linux-headers-4.4.0-71 (4.4.0-71.92) ...
Removing linux-headers-4.4.0-72-generic (4.4.0-72.93) ...
Removing linux-headers-4.4.0-72 (4.4.0-72.93) ...
Removing linux-headers-4.4.0-75-generic (4.4.0-75.96) ...
Removing linux-headers-4.4.0-75 (4.4.0-75.96) ...
Removing linux-headers-4.4.0-78-generic (4.4.0-78.99) ...
Removing linux-headers-4.4.0-78 (4.4.0-78.99) ...
Removing linux-headers-4.4.0-79-generic (4.4.0-79.100) ...
Removing linux-headers-4.4.0-79 (4.4.0-79.100) ...
Removing linux-image-extra-4.4.0-64-generic (4.4.0-64.85) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-64-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-64-generic
/boot/vmlinuz-4.4.0-64-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-64-generic (4.4.0-64.85) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-64-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-64-generic /boot/vmlinuz-4.4.0-64-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
The link /initrd.img is a damaged link
Removing symbolic link initrd.img
  you may need to re-run your boot loader[grub]
The link /initrd.img.old is a damaged link
Removing symbolic link initrd.img.old
  you may need to re-run your boot loader[grub]
Removing linux-image-extra-4.4.0-66-generic (4.4.0-66.87) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-66-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-66-generic
/boot/vmlinuz-4.4.0-66-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-66-generic (4.4.0-66.87) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-66-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-66-generic /boot/vmlinuz-4.4.0-66-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-70-generic (4.4.0-70.91) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-70-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-70-generic
/boot/vmlinuz-4.4.0-70-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-70-generic (4.4.0-70.91) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-70-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-70-generic /boot/vmlinuz-4.4.0-70-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-71-generic (4.4.0-71.92) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-71-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-71-generic
/boot/vmlinuz-4.4.0-71-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-71-generic (4.4.0-71.92) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-71-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-71-generic /boot/vmlinuz-4.4.0-71-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-72-generic (4.4.0-72.93) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-72-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-72-generic
/boot/vmlinuz-4.4.0-72-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-72-generic (4.4.0-72.93) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-72-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-72-generic /boot/vmlinuz-4.4.0-72-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-75-generic (4.4.0-75.96) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-75-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-75-generic
/boot/vmlinuz-4.4.0-75-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-75-generic (4.4.0-75.96) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-75-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-75-generic /boot/vmlinuz-4.4.0-75-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-78-generic (4.4.0-78.99) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-78-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-78-generic
/boot/vmlinuz-4.4.0-78-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found linux image: /boot/vmlinuz-4.4.0-78-generic
Found initrd image: /boot/initrd.img-4.4.0-78-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-78-generic (4.4.0-78.99) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-78-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-78-generic /boot/vmlinuz-4.4.0-78-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-extra-4.4.0-79-generic (4.4.0-79.100) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-79-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-79-generic
/boot/vmlinuz-4.4.0-79-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found linux image: /boot/vmlinuz-4.4.0-79-generic
Found initrd image: /boot/initrd.img-4.4.0-79-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing linux-image-4.4.0-79-generic (4.4.0-79.100) ...
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
update-initramfs: Deleting /boot/initrd.img-4.4.0-79-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub
4.4.0-79-generic /boot/vmlinuz-4.4.0-79-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Removing openarena-data (0.8.5split-6) ...
Removing openarena-081-maps (0.8.5split-6) ...
Removing openarena-081-misc (0.8.5split-6) ...
Removing openarena-081-players (0.8.5split-6) ...
Removing openarena-081-players-mature (0.8.5split-6) ...
Removing openarena-081-textures (0.8.5split-6) ...
Removing openarena-085-data (0.8.5split-6) ...
Removing openarena-oacmp1 (3-1) ...
Removing openarena-088-data (0.8.8-3) ...
Removing snap-confine (2.25) ...
Removing stellarium-data (0.14.3-1) ...
Removing ubuntu-core-launcher (2.25) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up linux-firmware (1.157.11) ...
update-initramfs: Generating /boot/initrd.img-4.4.0-81-generic
Setting up linux-image-4.4.0-83-generic (4.4.0-83.106) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
vmlinuz(/boot/vmlinuz-4.4.0-83-generic
) points to /boot/vmlinuz-4.4.0-83-generic
  (/boot/vmlinuz-4.4.0-83-generic) -- doing nothing at
/var/lib/dpkg/info/linux-image-4.4.0-83-generic.postinst line 491.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-83-generic
/boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found initrd image: /boot/initrd.img-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Setting up linux-image-extra-4.4.0-83-generic (4.4.0-83.106) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-83-generic
/boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-83-generic /boot/vmlinuz-4.4.0-83-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found initrd image: /boot/initrd.img-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Setting up linux-image-generic (4.4.0.83.89) ...
Setting up linux-generic (4.4.0.83.89) ...
Setting up linux-image-extra-4.4.0-81-generic (4.4.0-81.104) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal
4.4.0-81-generic /boot/vmlinuz-4.4.0-81-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools
4.4.0-81-generic /boot/vmlinuz-4.4.0-81-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-81-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 4.4.0-81-generic
/boot/vmlinuz-4.4.0-81-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades
4.4.0-81-generic /boot/vmlinuz-4.4.0-81-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier
4.4.0-81-generic /boot/vmlinuz-4.4.0-81-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub
4.4.0-81-generic /boot/vmlinuz-4.4.0-81-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found initrd image: /boot/initrd.img-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
phil@phil-OptiPlex-960:~$ sudo apt update
Hit:1 http://au.archive.ubuntu.com/ubuntu xenial InRelease
Get:2 http://au.archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:3 http://au.archive.ubuntu.com/ubuntu xenial-backports InRelease
[102 kB]
Get:4 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Hit:5 http://archive.canonical.com/ubuntu xenial InRelease
Get:6 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
Packages [581 kB]
Get:7 http://security.ubuntu.com/ubuntu xenial-security/universe amd64
DEP-11 Metadata [40.6 kB]
Get:8 http://au.archive.ubuntu.com/ubuntu xenial-updates/main i386
Packages [561 kB]
Get:9 http://security.ubuntu.com/ubuntu xenial-security/universe DEP-11
64x64 Icons [56.1 kB]
Get:10 http://security.ubuntu.com/ubuntu xenial-security/main amd64
Packages [306 kB]
Get:11 http://au.archive.ubuntu.com/ubuntu xenial-updates/main
Translation-en [235 kB]
Get:12 http://security.ubuntu.com/ubuntu xenial-security/main i386
Packages [289 kB]
Get:13 http://security.ubuntu.com/ubuntu xenial-security/main
Translation-en [130 kB]
Get:14 http://security.ubuntu.com/ubuntu xenial-security/main amd64
DEP-11 Metadata [59.2 kB]
Get:15 http://security.ubuntu.com/ubuntu xenial-security/main DEP-11
64x64 Icons [49.6 kB]
Get:16 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
DEP-11 Metadata [304 kB]
Get:17 http://au.archive.ubuntu.com/ubuntu xenial-updates/main DEP-11
64x64 Icons [207 kB]
Get:18 http://au.archive.ubuntu.com/ubuntu xenial-updates/restricted
amd64 Packages [7,804 B]
Get:19 http://au.archive.ubuntu.com/ubuntu xenial-updates/restricted
i386 Packages [7,804 B]
Get:20 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe amd64
Packages [506 kB]
Get:21 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe i386
Packages [490 kB]
Get:22 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe
Translation-en [197 kB]
Get:23 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe amd64
DEP-11 Metadata [163 kB]
Get:24 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe
DEP-11 64x64 Icons [207 kB]
Get:25 http://au.archive.ubuntu.com/ubuntu xenial-updates/multiverse
amd64 Packages [14.9 kB]
Get:26 http://au.archive.ubuntu.com/ubuntu xenial-updates/multiverse
i386 Packages [14.0 kB]
Get:27 http://au.archive.ubuntu.com/ubuntu xenial-updates/multiverse
Translation-en [7,476 B]
Get:28 http://au.archive.ubuntu.com/ubuntu xenial-updates/multiverse
amd64 DEP-11 Metadata [5,888 B]
Get:29 http://au.archive.ubuntu.com/ubuntu xenial-updates/multiverse
DEP-11 64x64 Icons [14.3 kB]
Get:30 http://au.archive.ubuntu.com/ubuntu xenial-backports/main amd64
DEP-11 Metadata [3,328 B]
Get:31 http://au.archive.ubuntu.com/ubuntu xenial-backports/universe
amd64 DEP-11 Metadata [4,672 B]
Fetched 4,769 kB in 6s (782 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
73 packages can be upgraded. Run 'apt list --upgradable' to see them.
phil@phil-OptiPlex-960:~$ sudo apt full-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following package was automatically installed and is no longer required:
   libmircommon5
Use 'sudo apt autoremove' to remove it.
The following NEW packages will be installed:
   libcapnp-0.5.3 libmircommon7 libmircore1
The following packages will be upgraded:
   adobe-flash-properties-gtk adobe-flashplugin bsdutils coreutils fwupdate
   fwupdate-signed gnome-software gnome-software-common grub-common grub-pc
   grub-pc-bin grub2-common gtk2-engines-pixbuf isc-dhcp-client
isc-dhcp-common
   less libblkid1 libepoxy0 libfdisk1 libfwup0 libgail-common libgail18
   libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libmirclient9 libmirprotobuf3
   libmount1 libnautilus-extension1a libnm-gtk-common libnm-gtk0
libnma-common
   libnma0 libpam-systemd libpulse-mainloop-glib0 libpulse0 libpulsedsp
   libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5
   libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5test5
libqt5widgets5
   libqt5xml5 libsmartcols1 libssl1.0.0 libsystemd0 libudev1
   libunity-control-center1 libuuid1 mount nautilus nautilus-data
   network-manager-gnome openssl pulseaudio pulseaudio-module-bluetooth
   pulseaudio-module-x11 pulseaudio-utils session-shortcuts systemd
   systemd-sysv ubuntu-software udev unity-control-center
   unity-control-center-faces util-linux uuid-runtime vino
73 to upgrade, 3 to newly install, 0 to remove and 0 not to upgrade.
Need to get 40.0 MB of archives.
After this operation, 3,218 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
bsdutils amd64 1:2.27.1-6ubuntu3.3 [52.0 kB]
Get:2 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
coreutils amd64 8.25-2ubuntu3~16.04 [1,174 kB]
Get:3 http://archive.canonical.com/ubuntu xenial/partner amd64
adobe-flash-properties-gtk amd64 1:20170711.1-0ubuntu0.16.04.1 [142 kB]
Get:4 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
util-linux amd64 2.27.1-6ubuntu3.3 [849 kB]
Get:5 http://archive.canonical.com/ubuntu xenial/partner amd64
adobe-flashplugin amd64 1:20170711.1-0ubuntu0.16.04.1 [9,711 kB]
Get:6 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
mount amd64 2.27.1-6ubuntu3.3 [121 kB]
Get:7 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
systemd-sysv amd64 229-4ubuntu19 [12.4 kB]
Get:8 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libpam-systemd amd64 229-4ubuntu19 [115 kB]
Get:9 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libsystemd0 amd64 229-4ubuntu19 [205 kB]
Get:10 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
systemd amd64 229-4ubuntu19 [3,811 kB]
Get:11 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
udev amd64 229-4ubuntu19 [992 kB]
Get:12 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libudev1 amd64 229-4ubuntu19 [55.0 kB]
Get:13 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libuuid1 amd64 2.27.1-6ubuntu3.3 [15.7 kB]
Get:14 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libblkid1 amd64 2.27.1-6ubuntu3.3 [107 kB]
Get:15 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libmount1 amd64 2.27.1-6ubuntu3.3 [114 kB]
Get:16 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
uuid-runtime amd64 2.27.1-6ubuntu3.3 [26.6 kB]
Get:17 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
grub-pc amd64 2.02~beta2-36ubuntu3.11 [197 kB]
Get:18 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
grub-pc-bin amd64 2.02~beta2-36ubuntu3.11 [889 kB]
Get:19 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
grub2-common amd64 2.02~beta2-36ubuntu3.11 [511 kB]
Get:20 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
grub-common amd64 2.02~beta2-36ubuntu3.11 [1,707 kB]
Get:21 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libfdisk1 amd64 2.27.1-6ubuntu3.3 [138 kB]
Get:22 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libsmartcols1 amd64 2.27.1-6ubuntu3.3 [63.4 kB]
Get:23 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
isc-dhcp-client amd64 4.3.3-5ubuntu12.7 [223 kB]
Get:24 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
isc-dhcp-common amd64 4.3.3-5ubuntu12.7 [105 kB]
Get:25 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
less amd64 481-2.1ubuntu0.2 [110 kB]
Get:26 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libssl1.0.0 amd64 1.0.2g-1ubuntu4.8 [1,081 kB]
Get:27 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
openssl amd64 1.0.2g-1ubuntu4.8 [492 kB]
Get:28 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libgtk2.0-common all 2.24.30-1ubuntu1.16.04.1 [123 kB]
Get:29 http://au.archive.ubuntu.com/ubuntu xenial-updates/universe amd64
gtk2-engines-pixbuf amd64 2.24.30-1ubuntu1.16.04.1 [19.1 kB]
Get:30 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libgtk2.0-bin amd64 2.24.30-1ubuntu1.16.04.1 [9,826 B]
Get:31 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libgail-common amd64 2.24.30-1ubuntu1.16.04.1 [111 kB]
Get:32 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libgail18 amd64 2.24.30-1ubuntu1.16.04.1 [14.2 kB]
Get:33 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libgtk2.0-0 amd64 2.24.30-1ubuntu1.16.04.1 [1,776 kB]
Get:34 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
fwupdate-signed amd64 1.11.1+0.5-2ubuntu5 [27.0 kB]
Get:35 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
fwupdate amd64 0.5-2ubuntu5 [33.0 kB]
Get:36 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libfwup0 amd64 0.5-2ubuntu5 [13.2 kB]
Get:37 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
ubuntu-software amd64 3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1
[11.6 kB]
Get:38 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
gnome-software amd64 3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1 [230 kB]
Get:39 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
gnome-software-common all 3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1
[2,257 kB]
Get:40 http://au.archive.ubuntu.com/ubuntu xenial/universe amd64
libcapnp-0.5.3 amd64 0.5.3-2ubuntu1 [581 kB]
Get:41 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libepoxy0 amd64 1.3.1-1ubuntu0.16.04.2 [177 kB]
Get:42 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libmircore1 amd64 0.26.3+16.04.20170605-0ubuntu1 [24.5 kB]
Get:43 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libmircommon7 amd64 0.26.3+16.04.20170605-0ubuntu1 [89.8 kB]
Get:44 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libmirprotobuf3 amd64 0.26.3+16.04.20170605-0ubuntu1 [120 kB]
Get:45 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libmirclient9 amd64 0.26.3+16.04.20170605-0ubuntu1 [194 kB]
Get:46 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libnautilus-extension1a amd64 1:3.18.4.is.3.14.3-0ubuntu6 [53.7 kB]
Get:47 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libnm-gtk0 amd64 1.2.6-0ubuntu0.16.04.3 [70.3 kB]
Get:48 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libnm-gtk-common all 1.2.6-0ubuntu0.16.04.3 [5,662 B]
Get:49 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
network-manager-gnome amd64 1.2.6-0ubuntu0.16.04.3 [290 kB]
Get:50 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libnma0 amd64 1.2.6-0ubuntu0.16.04.3 [66.5 kB]
Get:51 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libnma-common all 1.2.6-0ubuntu0.16.04.3 [5,650 B]
Get:52 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libpulsedsp amd64 1:8.0-0ubuntu3.3 [21.1 kB]
Get:53 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
pulseaudio-utils amd64 1:8.0-0ubuntu3.3 [50.9 kB]
Get:54 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
pulseaudio-module-x11 amd64 1:8.0-0ubuntu3.3 [15.9 kB]
Get:55 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
pulseaudio-module-bluetooth amd64 1:8.0-0ubuntu3.3 [58.5 kB]
Get:56 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
pulseaudio amd64 1:8.0-0ubuntu3.3 [767 kB]
Get:57 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libpulse-mainloop-glib0 amd64 1:8.0-0ubuntu3.3 [11.5 kB]
Get:58 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libpulse0 amd64 1:8.0-0ubuntu3.3 [249 kB]
Get:59 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5core5a amd64 5.5.1+dfsg-16ubuntu7.5 [1,817 kB]
Get:60 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5dbus5 amd64 5.5.1+dfsg-16ubuntu7.5 [175 kB]
Get:61 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5network5 amd64 5.5.1+dfsg-16ubuntu7.5 [540 kB]
Get:62 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5gui5 amd64 5.5.1+dfsg-16ubuntu7.5 [2,290 kB]
Get:63 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5widgets5 amd64 5.5.1+dfsg-16ubuntu7.5 [2,252 kB]
Get:64 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5opengl5 amd64 5.5.1+dfsg-16ubuntu7.5 [128 kB]
Get:65 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5printsupport5 amd64 5.5.1+dfsg-16ubuntu7.5 [174 kB]
Get:66 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5sql5 amd64 5.5.1+dfsg-16ubuntu7.5 [104 kB]
Get:67 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5sql5-sqlite amd64 5.5.1+dfsg-16ubuntu7.5 [33.0 kB]
Get:68 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5test5 amd64 5.5.1+dfsg-16ubuntu7.5 [84.5 kB]
Get:69 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libqt5xml5 amd64 5.5.1+dfsg-16ubuntu7.5 [91.8 kB]
Get:70 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
libunity-control-center1 amd64 15.04.0+16.04.20170214-0ubuntu1 [81.1 kB]
Get:71 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
nautilus-data all 1:3.18.4.is.3.14.3-0ubuntu6 [48.1 kB]
Get:72 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
nautilus amd64 1:3.18.4.is.3.14.3-0ubuntu6 [505 kB]
Get:73 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
session-shortcuts all 1.2ubuntu0.16.04.1 [2,624 B]
Get:74 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
unity-control-center amd64 15.04.0+16.04.20170214-0ubuntu1 [834 kB]
Get:75 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
unity-control-center-faces all 15.04.0+16.04.20170214-0ubuntu1 [180 kB]
Get:76 http://au.archive.ubuntu.com/ubuntu xenial-updates/main amd64
vino amd64 3.8.1-0ubuntu9.2 [140 kB]
Fetched 40.0 MB in 24s (1,637 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../bsdutils_1%3a2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking bsdutils (1:2.27.1-6ubuntu3.3) over (1:2.27.1-6ubuntu3.2) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up bsdutils (1:2.27.1-6ubuntu3.3) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../coreutils_8.25-2ubuntu3~16.04_amd64.deb ...
Unpacking coreutils (8.25-2ubuntu3~16.04) over (8.25-2ubuntu2) ...
Processing triggers for install-info (6.1.0.dfsg.1-5) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up coreutils (8.25-2ubuntu3~16.04) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../util-linux_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking util-linux (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for ureadahead (0.100.0-19) ...
ureadahead will be reprofiled on next reboot
Setting up util-linux (2.27.1-6ubuntu3.3) ...
Processing triggers for systemd (229-4ubuntu17) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../mount_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking mount (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up mount (2.27.1-6ubuntu3.3) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../systemd-sysv_229-4ubuntu19_amd64.deb ...
Unpacking systemd-sysv (229-4ubuntu19) over (229-4ubuntu17) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up systemd-sysv (229-4ubuntu19) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../libpam-systemd_229-4ubuntu19_amd64.deb ...
Unpacking libpam-systemd:amd64 (229-4ubuntu19) over (229-4ubuntu17) ...
Preparing to unpack .../libsystemd0_229-4ubuntu19_amd64.deb ...
Unpacking libsystemd0:amd64 (229-4ubuntu19) over (229-4ubuntu17) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libsystemd0:amd64 (229-4ubuntu19) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217002 files and directories currently installed.)
Preparing to unpack .../systemd_229-4ubuntu19_amd64.deb ...
Unpacking systemd (229-4ubuntu19) over (229-4ubuntu17) ...
Processing triggers for dbus (1.10.6-1ubuntu3.3) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up systemd (229-4ubuntu19) ...
addgroup: The group `systemd-journal' already exists as a system group.
Exiting.
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../udev_229-4ubuntu19_amd64.deb ...
Unpacking udev (229-4ubuntu19) over (229-4ubuntu17) ...
Preparing to unpack .../libudev1_229-4ubuntu19_amd64.deb ...
Unpacking libudev1:amd64 (229-4ubuntu19) over (229-4ubuntu17) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libudev1:amd64 (229-4ubuntu19) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../libuuid1_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking libuuid1:amd64 (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libuuid1:amd64 (2.27.1-6ubuntu3.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../libblkid1_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking libblkid1:amd64 (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libblkid1:amd64 (2.27.1-6ubuntu3.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../libmount1_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking libmount1:amd64 (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libmount1:amd64 (2.27.1-6ubuntu3.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking uuid-runtime (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Preparing to unpack .../grub-pc_2.02~beta2-36ubuntu3.11_amd64.deb ...
Unpacking grub-pc (2.02~beta2-36ubuntu3.11) over
(2.02~beta2-36ubuntu3.9) ...
Preparing to unpack .../grub-pc-bin_2.02~beta2-36ubuntu3.11_amd64.deb ...
Unpacking grub-pc-bin (2.02~beta2-36ubuntu3.11) over
(2.02~beta2-36ubuntu3.9) ...
Preparing to unpack .../grub2-common_2.02~beta2-36ubuntu3.11_amd64.deb ...
Unpacking grub2-common (2.02~beta2-36ubuntu3.11) over
(2.02~beta2-36ubuntu3.9) ...
Preparing to unpack .../grub-common_2.02~beta2-36ubuntu3.11_amd64.deb ...
Unpacking grub-common (2.02~beta2-36ubuntu3.11) over
(2.02~beta2-36ubuntu3.9) ...
Preparing to unpack .../libfdisk1_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking libfdisk1:amd64 (2.27.1-6ubuntu3.3) over (2.27.1-6ubuntu3.2) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for systemd (229-4ubuntu19) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for install-info (6.1.0.dfsg.1-5) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libfdisk1:amd64 (2.27.1-6ubuntu3.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../libsmartcols1_2.27.1-6ubuntu3.3_amd64.deb ...
Unpacking libsmartcols1:amd64 (2.27.1-6ubuntu3.3) over
(2.27.1-6ubuntu3.2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libsmartcols1:amd64 (2.27.1-6ubuntu3.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
(Reading database ... 217004 files and directories currently installed.)
Preparing to unpack .../isc-dhcp-client_4.3.3-5ubuntu12.7_amd64.deb ...
Unpacking isc-dhcp-client (4.3.3-5ubuntu12.7) over (4.3.3-5ubuntu12.6) ...
Preparing to unpack .../isc-dhcp-common_4.3.3-5ubuntu12.7_amd64.deb ...
Unpacking isc-dhcp-common (4.3.3-5ubuntu12.7) over (4.3.3-5ubuntu12.6) ...
Preparing to unpack .../less_481-2.1ubuntu0.2_amd64.deb ...
Unpacking less (481-2.1ubuntu0.2) over (481-2.1ubuntu0.1) ...
Preparing to unpack .../libssl1.0.0_1.0.2g-1ubuntu4.8_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.2g-1ubuntu4.8) over (1.0.2g-1ubuntu4.6) ...
Preparing to unpack .../openssl_1.0.2g-1ubuntu4.8_amd64.deb ...
Unpacking openssl (1.0.2g-1ubuntu4.8) over (1.0.2g-1ubuntu4.6) ...
Preparing to unpack
.../libgtk2.0-common_2.24.30-1ubuntu1.16.04.1_all.deb ...
Unpacking libgtk2.0-common (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack
.../gtk2-engines-pixbuf_2.24.30-1ubuntu1.16.04.1_amd64.deb ...
Unpacking gtk2-engines-pixbuf:amd64 (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack .../libgtk2.0-bin_2.24.30-1ubuntu1.16.04.1_amd64.deb ...
Unpacking libgtk2.0-bin (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack
.../libgail-common_2.24.30-1ubuntu1.16.04.1_amd64.deb ...
Unpacking libgail-common:amd64 (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack .../libgail18_2.24.30-1ubuntu1.16.04.1_amd64.deb ...
Unpacking libgail18:amd64 (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack .../libgtk2.0-0_2.24.30-1ubuntu1.16.04.1_amd64.deb ...
Unpacking libgtk2.0-0:amd64 (2.24.30-1ubuntu1.16.04.1) over
(2.24.30-1ubuntu1) ...
Preparing to unpack
.../adobe-flash-properties-gtk_1%3a20170711.1-0ubuntu0.16.04.1_amd64.deb ...
Unpacking adobe-flash-properties-gtk (1:20170711.1-0ubuntu0.16.04.1)
over (1:20170509.1-0ubuntu0.16.04.1) ...
Preparing to unpack
.../adobe-flashplugin_1%3a20170711.1-0ubuntu0.16.04.1_amd64.deb ...
Unpacking adobe-flashplugin (1:20170711.1-0ubuntu0.16.04.1) over
(1:20170509.1-0ubuntu0.16.04.1) ...
Preparing to unpack .../fwupdate-signed_1.11.1+0.5-2ubuntu5_amd64.deb ...
Unpacking fwupdate-signed (1.11.1+0.5-2ubuntu5) over (1.11+0.5-2ubuntu4) ...
Preparing to unpack .../fwupdate_0.5-2ubuntu5_amd64.deb ...
Unpacking fwupdate (0.5-2ubuntu5) over (0.5-2ubuntu4) ...
Preparing to unpack .../libfwup0_0.5-2ubuntu5_amd64.deb ...
Unpacking libfwup0:amd64 (0.5-2ubuntu5) over (0.5-2ubuntu4) ...
Preparing to unpack
.../ubuntu-software_3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1_amd64.deb
...
Unpacking ubuntu-software
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) over
(3.20.1+git20161013.0.d77d6cf-0ubuntu2~xenial1) ...
Preparing to unpack
.../gnome-software_3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1_amd64.deb
...
Unpacking gnome-software
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) over
(3.20.1+git20161013.0.d77d6cf-0ubuntu2~xenial1) ...
Preparing to unpack
.../gnome-software-common_3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1_all.deb
...
Unpacking gnome-software-common
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) over
(3.20.1+git20161013.0.d77d6cf-0ubuntu2~xenial1) ...
Selecting previously unselected package libcapnp-0.5.3:amd64.
Preparing to unpack .../libcapnp-0.5.3_0.5.3-2ubuntu1_amd64.deb ...
Unpacking libcapnp-0.5.3:amd64 (0.5.3-2ubuntu1) ...
Preparing to unpack .../libepoxy0_1.3.1-1ubuntu0.16.04.2_amd64.deb ...
Unpacking libepoxy0:amd64 (1.3.1-1ubuntu0.16.04.2) over (1.3.1-1) ...
Selecting previously unselected package libmircore1:amd64.
Preparing to unpack
.../libmircore1_0.26.3+16.04.20170605-0ubuntu1_amd64.deb ...
Unpacking libmircore1:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Selecting previously unselected package libmircommon7:amd64.
Preparing to unpack
.../libmircommon7_0.26.3+16.04.20170605-0ubuntu1_amd64.deb ...
Unpacking libmircommon7:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Preparing to unpack
.../libmirprotobuf3_0.26.3+16.04.20170605-0ubuntu1_amd64.deb ...
Unpacking libmirprotobuf3:amd64 (0.26.3+16.04.20170605-0ubuntu1) over
(0.21.0+16.04.20160330-0ubuntu1) ...
Preparing to unpack
.../libmirclient9_0.26.3+16.04.20170605-0ubuntu1_amd64.deb ...
Unpacking libmirclient9:amd64 (0.26.3+16.04.20170605-0ubuntu1) over
(0.21.0+16.04.20160330-0ubuntu1) ...
Preparing to unpack
.../libnautilus-extension1a_1%3a3.18.4.is.3.14.3-0ubuntu6_amd64.deb ...
Unpacking libnautilus-extension1a:amd64 (1:3.18.4.is.3.14.3-0ubuntu6)
over (1:3.18.4.is.3.14.3-0ubuntu5) ...
Preparing to unpack .../libnm-gtk0_1.2.6-0ubuntu0.16.04.3_amd64.deb ...
Unpacking libnm-gtk0:amd64 (1.2.6-0ubuntu0.16.04.3) over
(1.2.6-0ubuntu0.16.04.2) ...
Preparing to unpack .../libnm-gtk-common_1.2.6-0ubuntu0.16.04.3_all.deb ...
Unpacking libnm-gtk-common (1.2.6-0ubuntu0.16.04.3) over
(1.2.6-0ubuntu0.16.04.2) ...
Preparing to unpack
.../network-manager-gnome_1.2.6-0ubuntu0.16.04.3_amd64.deb ...
Unpacking network-manager-gnome (1.2.6-0ubuntu0.16.04.3) over
(1.2.6-0ubuntu0.16.04.2) ...
Preparing to unpack .../libnma0_1.2.6-0ubuntu0.16.04.3_amd64.deb ...
Unpacking libnma0:amd64 (1.2.6-0ubuntu0.16.04.3) over
(1.2.6-0ubuntu0.16.04.2) ...
Preparing to unpack .../libnma-common_1.2.6-0ubuntu0.16.04.3_all.deb ...
Unpacking libnma-common (1.2.6-0ubuntu0.16.04.3) over
(1.2.6-0ubuntu0.16.04.2) ...
Preparing to unpack .../libpulsedsp_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking libpulsedsp:amd64 (1:8.0-0ubuntu3.3) over (1:8.0-0ubuntu3.2) ...
Preparing to unpack .../pulseaudio-utils_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking pulseaudio-utils (1:8.0-0ubuntu3.3) over (1:8.0-0ubuntu3.2) ...
Preparing to unpack
.../pulseaudio-module-x11_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking pulseaudio-module-x11 (1:8.0-0ubuntu3.3) over
(1:8.0-0ubuntu3.2) ...
Preparing to unpack
.../pulseaudio-module-bluetooth_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking pulseaudio-module-bluetooth (1:8.0-0ubuntu3.3) over
(1:8.0-0ubuntu3.2) ...
Preparing to unpack .../pulseaudio_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking pulseaudio (1:8.0-0ubuntu3.3) over (1:8.0-0ubuntu3.2) ...
Preparing to unpack
.../libpulse-mainloop-glib0_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking libpulse-mainloop-glib0:amd64 (1:8.0-0ubuntu3.3) over
(1:8.0-0ubuntu3.2) ...
Preparing to unpack .../libpulse0_1%3a8.0-0ubuntu3.3_amd64.deb ...
Unpacking libpulse0:amd64 (1:8.0-0ubuntu3.3) over (1:8.0-0ubuntu3.2) ...
Preparing to unpack .../libqt5core5a_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5dbus5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5network5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5gui5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5widgets5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5opengl5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack
.../libqt5printsupport5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5sql5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack
.../libqt5sql5-sqlite_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5test5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack .../libqt5xml5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...
Unpacking libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) over
(5.5.1+dfsg-16ubuntu7.2) ...
Preparing to unpack
.../libunity-control-center1_15.04.0+16.04.20170214-0ubuntu1_amd64.deb ...
Unpacking libunity-control-center1 (15.04.0+16.04.20170214-0ubuntu1)
over (15.04.0+16.04.20160705-0ubuntu1) ...
Preparing to unpack
.../nautilus-data_1%3a3.18.4.is.3.14.3-0ubuntu6_all.deb ...
Unpacking nautilus-data (1:3.18.4.is.3.14.3-0ubuntu6) over
(1:3.18.4.is.3.14.3-0ubuntu5) ...
Preparing to unpack .../nautilus_1%3a3.18.4.is.3.14.3-0ubuntu6_amd64.deb ...
Unpacking nautilus (1:3.18.4.is.3.14.3-0ubuntu6) over
(1:3.18.4.is.3.14.3-0ubuntu5) ...
Preparing to unpack .../session-shortcuts_1.2ubuntu0.16.04.1_all.deb ...
Unpacking session-shortcuts (1.2ubuntu0.16.04.1) over (1.2) ...
Preparing to unpack
.../unity-control-center_15.04.0+16.04.20170214-0ubuntu1_amd64.deb ...
Unpacking unity-control-center (15.04.0+16.04.20170214-0ubuntu1) over
(15.04.0+16.04.20160705-0ubuntu1) ...
Preparing to unpack
.../unity-control-center-faces_15.04.0+16.04.20170214-0ubuntu1_all.deb ...
Unpacking unity-control-center-faces (15.04.0+16.04.20170214-0ubuntu1)
over (15.04.0+16.04.20160705-0ubuntu1) ...
Preparing to unpack .../vino_3.8.1-0ubuntu9.2_amd64.deb ...
Unpacking vino (3.8.1-0ubuntu9.2) over (3.8.1-0ubuntu9.1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
Processing triggers for gconf2 (3.2.6-3ubuntu6) ...
Processing triggers for dbus (1.10.6-1ubuntu3.3) ...
Setting up libpam-systemd:amd64 (229-4ubuntu19) ...
Setting up udev (229-4ubuntu19) ...
addgroup: The group `input' already exists as a system group. Exiting.
update-initramfs: deferring update (trigger activated)
Setting up uuid-runtime (2.27.1-6ubuntu3.3) ...
Setting up grub-common (2.02~beta2-36ubuntu3.11) ...
update-rc.d: warning: start and stop actions are no longer supported;
falling back to defaults
Setting up grub2-common (2.02~beta2-36ubuntu3.11) ...
Setting up grub-pc-bin (2.02~beta2-36ubuntu3.11) ...
Setting up grub-pc (2.02~beta2-36ubuntu3.11) ...
Installing for i386-pc platform.
Installation finished. No error reported.
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when
GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.4.0-83-generic
Found initrd image: /boot/initrd.img-4.4.0-83-generic
Found linux image: /boot/vmlinuz-4.4.0-81-generic
Found initrd image: /boot/initrd.img-4.4.0-81-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done
Setting up isc-dhcp-client (4.3.3-5ubuntu12.7) ...
Setting up isc-dhcp-common (4.3.3-5ubuntu12.7) ...
Setting up less (481-2.1ubuntu0.2) ...
Setting up libssl1.0.0:amd64 (1.0.2g-1ubuntu4.8) ...
Setting up openssl (1.0.2g-1ubuntu4.8) ...
Setting up libgtk2.0-common (2.24.30-1ubuntu1.16.04.1) ...
Setting up libgtk2.0-0:amd64 (2.24.30-1ubuntu1.16.04.1) ...
Setting up gtk2-engines-pixbuf:amd64 (2.24.30-1ubuntu1.16.04.1) ...
Setting up libgtk2.0-bin (2.24.30-1ubuntu1.16.04.1) ...
Setting up libgail18:amd64 (2.24.30-1ubuntu1.16.04.1) ...
Setting up libgail-common:amd64 (2.24.30-1ubuntu1.16.04.1) ...
Setting up adobe-flashplugin (1:20170711.1-0ubuntu0.16.04.1) ...
update-alternatives: using /usr/lib/adobe-flashplugin/libflashplayer.so
to provide /usr/lib/mozilla/plugins/flashplugin-alternative.so
(mozilla-flashplugin) in auto mode
Setting up adobe-flash-properties-gtk (1:20170711.1-0ubuntu0.16.04.1) ...
Setting up libfwup0:amd64 (0.5-2ubuntu5) ...
Setting up fwupdate (0.5-2ubuntu5) ...
System not running in EFI mode, not installing to EFI system partition.
efibootmgr: EFI variables are not supported on this system.
Setting up fwupdate-signed (1.11.1+0.5-2ubuntu5) ...
System not running in EFI mode, not installing to EFI system partition.
Setting up gnome-software-common
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) ...
Setting up gnome-software
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) ...
Installing new version of config file
/etc/xdg/autostart/gnome-software-service.desktop ...
Setting up ubuntu-software
(3.20.1+git20170524.0.ea2fe2b0-0ubuntu0.16.04.1) ...
Setting up libcapnp-0.5.3:amd64 (0.5.3-2ubuntu1) ...
Setting up libepoxy0:amd64 (1.3.1-1ubuntu0.16.04.2) ...
Setting up libmircore1:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Setting up libmircommon7:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Setting up libmirprotobuf3:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Setting up libmirclient9:amd64 (0.26.3+16.04.20170605-0ubuntu1) ...
Setting up libnautilus-extension1a:amd64 (1:3.18.4.is.3.14.3-0ubuntu6) ...
Setting up libnm-gtk-common (1.2.6-0ubuntu0.16.04.3) ...
Setting up libnm-gtk0:amd64 (1.2.6-0ubuntu0.16.04.3) ...
Setting up libnma-common (1.2.6-0ubuntu0.16.04.3) ...
Setting up libnma0:amd64 (1.2.6-0ubuntu0.16.04.3) ...
Setting up network-manager-gnome (1.2.6-0ubuntu0.16.04.3) ...
Setting up libpulse0:amd64 (1:8.0-0ubuntu3.3) ...
Setting up libpulsedsp:amd64 (1:8.0-0ubuntu3.3) ...
Setting up pulseaudio-utils (1:8.0-0ubuntu3.3) ...
Setting up pulseaudio (1:8.0-0ubuntu3.3) ...
Setting up pulseaudio-module-x11 (1:8.0-0ubuntu3.3) ...
Setting up pulseaudio-module-bluetooth (1:8.0-0ubuntu3.3) ...
Setting up libpulse-mainloop-glib0:amd64 (1:8.0-0ubuntu3.3) ...
Setting up libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...
Setting up libunity-control-center1 (15.04.0+16.04.20170214-0ubuntu1) ...
Setting up nautilus-data (1:3.18.4.is.3.14.3-0ubuntu6) ...
Setting up nautilus (1:3.18.4.is.3.14.3-0ubuntu6) ...
Setting up session-shortcuts (1.2ubuntu0.16.04.1) ...
Setting up unity-control-center (15.04.0+16.04.20170214-0ubuntu1) ...
Setting up unity-control-center-faces (15.04.0+16.04.20170214-0ubuntu1) ...
Setting up vino (3.8.1-0ubuntu9.2) ...
Processing triggers for initramfs-tools (0.122ubuntu8.8) ...
update-initramfs: Generating /boot/initrd.img-4.4.0-83-generic
Processing triggers for libc-bin (2.23-0ubuntu9) ...
phil@phil-OptiPlex-960:~$ df -h
Filesystem Size Used Avail Use% Mounted on
udev 1.9G 0 1.9G 0% /dev
tmpfs 379M 6.1M 373M 2% /run
/dev/mapper/ubuntu--vg-root 143G 8.6G 127G 7% /
tmpfs 1.9G 260K 1.9G 1% /dev/shm
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
/dev/sda1 472M 109M 339M 25% /boot
tmpfs 379M 84K 379M 1% /run/user/1000
phil@phil-OptiPlex-960:~$ dpkg -l ! grep linux
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-============-============-=================================
ii grep 2.25-1~16.04 amd64 GNU grep, egrep and fgrep
dpkg-query: no packages found matching !
dpkg-query: no packages found matching linux
phil@phil-OptiPlex-960:~$ uname -r
4.4.0-81-generic

On 21/07/17 12:53, Bashing-om wrote:
> Your question #648052 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/648052
>
> Status: Open => Needs information
>
> Bashing-om requested more information:
> phil ; Hey;
>
> Progress being made.
> Now run:
> sudo apt autoremove
> sudo apt update
> sudo apt full-upgrade
>
> Post if there are reported errors .
>
> And then show us the results:
> df -h
> dpkg -l | grep linux-
> uname -r
>
> -clean; we like it clean-
>

Revision history for this message
Bashing-om (bashing-om) said :
#11

Phil; Looks promising :)

Let's check our work.
show us
ls -al /vmlinuz*
ls -al /initrd.img*
ls -al /boot
dpkg -l | grep linux-

we want that the booting kernel be " 4.4.0-83-generic " .

The '|' is a pipe . In an ascii keyboard it is the upper case '\' key located above the enter key .

-'bout got this whooped-

Revision history for this message
phil (phiman) said :
#12

Thanks Ubfan, that solved my question.