On Tue, 29 Dec 2015 15:24:55 -0300 Felipe Sateler <[email protected]> wrote:
> > This particular issue arises from this documentation: > > http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/ > > > > It may also be related to #789439. > > > > I adapted vmdebootstrap to mask udev's rule file, as advised in the > > first of the documented methods of disabling this support. > > "You disable the assignment of fixed names, so that the > > unpredictable kernel names are used again. For this, simply mask > > udev's rule file for the default policy: ln > > -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules" > > > > http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/tree/vmdebootstrap/base.py?id=vmdebootstrap-1.3#n208 > > > > That worked during testing. Since releasing that change, systemd > > has apparently dropped support for this method and a VM built with > > this change no longer raises a network interface using DHCP. > > > > $ sudo vmdebootstrap --image=sid.img --distribution=unstable --grub > > --enable-dhcp --verbose > > Do you have a log that you can share? Also, is the interface not named > as expected, or is the interface named correctly but not brought up? Interface is not named as expected - eth0 does not exist. Despite the name, the interface name created by systemd/udev is not actually predictable for emulated systems or systems to be used for live image or preinstallation use cases. > There were recent changes in the ifupdown/systemd integration, that > may be related. Command output: Creating disk image Creating partitions Installing MBR Creating filesystem ext4 Mounting /dev/mapper/loop0p1 on /tmp/tmpzUHSMQ Debootstrapping unstable [amd64] Give root an empty password Removing udev persistent cd and net rules Setting up networking Disabling systemd predictable interface names Configuring grub2 Skipping setting serial console- wheezy only. Cleaning up To get a logfile and to get the boot log, I added options for: --log=809339.log --log-level=debug --serial-console. There was a temporary issue with the httpredir support, so I added: --mirror=http://mirror.bytemark.co.uk/debian 809339.log is the vmdebootstrap log output. debootstrap.log is the debootstrap output (there were no errors, so this is minimal) boot.log is the qemu boot output (by using the -nographic option when testing the image using qemu). $ sudo chown neil:neil sid.img $ qemu-system-x86_64 -m 2048 -enable-kvm -drive format=raw,file=sid.img -nographic 2>&1 | tee boot.log Relevant content: root@debian:~# ifconfig -a ens3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 52:54:00:12:34:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 0 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 root@debian:~# cat /etc/network/interfaces # interfaces(5) file used by ifup(8) and ifdown(8) # Include files from /etc/network/interfaces.d: source-directory /etc/network/interfaces.d root@debian:~# cat /etc/network/interfaces.d/setup auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp root@debian:~# ifup eth0 Internet Systems Consortium DHCP Client 4.3.3 Copyright 2004-2015 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Cannot find device "eth0" Failed to get interface index: No such device If you think you have received this message due to a bug rather than a configuration issue please read the section on submitting bugs on either our web page at www.isc.org or in the README file before submitting a bug. These pages explain the proper process and the information we find helpful for debugging.. exiting. Failed to bring up eth0. root@debian:~# root@debian:~# ls -l /etc/udev/rules.d/80-net-setup-link.rules lrwxrwxrwx 1 root root 9 Dec 30 14:00 /etc/udev/rules.d/80-net-setup-link.rules -> /dev/null This symlink *should* have prevented the naming of the network interface as ens3 and allowed QEMU to raise eth0 at boot, automatically. > > QEMU is capable of booting images with different network > > configurations, so it is not simple for vmdebootstrap to know in > > advance what names systemd will generate - hence the change to > > assert the previous behaviour. vmdebootstrap is also used to > > generate images for use on ARM dev boards like beaglebone-black and > > cubietruck, so having a consistent interface that can be configured > > to use DHCP at boot is important. > > Do the systems booted by vmdebootstrap use systemd? As the default init, yes - although this cannot necessarily be assumed. > If so, it may be > simpler to use systemd-networkd: > > echo <<EOF > /etc/systemd/network/99-dhcp-all.network > [Match] > Name=* > > [Network] > DHCP=yes > > EOF I am testing with support like this - two things to note. Name=* is too generic for images for use other than with QEMU, Name=en* could rule out bridging, so this becomes awkward. Secondly, the systemd-networkd service also needs to be enabled before the interface can be raised during boot (which is what *should* have happened with the vmdebootstrap commands used in the test image above). -- Neil Williams ============= http://www.linux.codehelp.co.uk/
2015-12-30 13:54:42 INFO vmdebootstrap version 1.3 starts 2015-12-30 13:54:42 DEBUG sys.argv: ['/usr/sbin/vmdebootstrap', '--image=sid.img', '--distribution=unstable', '--grub', '--enable-dhcp', '--verbose', '--log=809339.log', '--log-level=debug', '--serial-console'] 2015-12-30 13:54:42 DEBUG current working directory: /home/neil/code/debian/lxqt 2015-12-30 13:54:42 DEBUG uid: 0 2015-12-30 13:54:42 DEBUG effective uid: 0 2015-12-30 13:54:42 DEBUG gid: 0 2015-12-30 13:54:42 DEBUG effective gid: 0 2015-12-30 13:54:42 DEBUG environment variables: 2015-12-30 13:54:42 DEBUG environment: LANG=en_GB.utf8 2015-12-30 13:54:42 DEBUG environment: USERNAME=root 2015-12-30 13:54:42 DEBUG environment: TERM=xterm 2015-12-30 13:54:42 DEBUG environment: SHELL=/bin/bash 2015-12-30 13:54:42 DEBUG environment: XAUTHORITY=/home/neil/.Xauthority 2015-12-30 13:54:42 DEBUG environment: LANGUAGE=en_GB:en 2015-12-30 13:54:42 DEBUG environment: SUDO_COMMAND=/usr/sbin/vmdebootstrap --image=sid.img --distribution=unstable --grub --enable-dhcp --verbose --log=809339.log --log-level=debug --serial-console 2015-12-30 13:54:42 DEBUG environment: SUDO_UID=1000 2015-12-30 13:54:42 DEBUG environment: SUDO_GID=1000 2015-12-30 13:54:42 DEBUG environment: DISPLAY=:0.0 2015-12-30 13:54:42 DEBUG environment: LOGNAME=root 2015-12-30 13:54:42 DEBUG environment: USER=root 2015-12-30 13:54:42 DEBUG environment: COLORTERM=xfce4-terminal 2015-12-30 13:54:42 DEBUG environment: MAIL=/var/mail/root 2015-12-30 13:54:42 DEBUG environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2015-12-30 13:54:42 DEBUG environment: SUDO_USER=neil 2015-12-30 13:54:42 DEBUG environment: LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36: 2015-12-30 13:54:42 DEBUG environment: HOME=/root 2015-12-30 13:54:42 DEBUG environment: DJANGO_COLORS=warning=blue,bold;error=red,bold 2015-12-30 13:54:42 DEBUG Config: [config] output = log = 809339.log log-level = debug log-max = 0 log-keep = 10 log-mode = 0600 dump-memory-profile = simple memory-dump-interval = 300 verbose = True image = sid.img size = 1000000000 bootsize = 0 boottype = ext2 bootoffset = 0 use-uefi = False esp-size = 5242880 part-type = msdos roottype = ext4 swap = 0 foreign = debootstrapopts = extlinux = True tarball = apt-mirror = mirror = http://http.debian.net/debian/ arch = amd64 distribution = unstable package = custom-package = no-kernel = False kernel-package = enable-dhcp = True root-password = lock-root-password = False customize = hostname = debian user = serial-console = True serial-console-command = /sbin/getty -L ttyS0 115200 vt100 sudo = False owner = squash = configure-apt = False mbr = False grub = True sparse = False pkglist = False no-acpid = False no-update-initramfs = False convert-qcow2 = False dry-run = False 2015-12-30 13:54:42 DEBUG Python version: 2.7.11 (default, Dec 9 2015, 00:29:25) [GCC 5.3.1 20151205] 2015-12-30 13:54:42 INFO Creating disk image 2015-12-30 13:54:42 DEBUG runcmd: ['qemu-img', 'create', '-f', 'raw', 'sid.img', '1000000000'] None {} 2015-12-30 13:54:42 INFO Creating partitions 2015-12-30 13:54:42 DEBUG runcmd: ['parted', '-s', 'sid.img', 'mklabel', 'msdos'] None {} 2015-12-30 13:54:42 DEBUG runcmd: ['parted', '-s', 'sid.img', 'mkpart', 'primary', '0%', '100%'] None {} 2015-12-30 13:54:42 DEBUG runcmd: ['parted', '-s', 'sid.img', 'set', '1', 'boot', 'on'] None {} 2015-12-30 13:54:42 INFO Installing MBR 2015-12-30 13:54:42 DEBUG runcmd: ['install-mbr', 'sid.img'] None {} 2015-12-30 13:54:42 DEBUG runcmd: ['kpartx', '-avs', 'sid.img'] None {} 2015-12-30 13:54:43 INFO Creating filesystem ext4 2015-12-30 13:54:43 DEBUG runcmd: ['mkfs', '-t', 'ext4', '/dev/mapper/loop0p1'] None {} 2015-12-30 13:54:43 DEBUG mkdir /tmp/tmpvqbhXX 2015-12-30 13:54:43 INFO Mounting /dev/mapper/loop0p1 on /tmp/tmpvqbhXX 2015-12-30 13:54:43 DEBUG runcmd: ['mount', '/dev/mapper/loop0p1', '/tmp/tmpvqbhXX'] None {} 2015-12-30 13:54:43 DEBUG mounted /dev/mapper/loop0p1 on /tmp/tmpvqbhXX 2015-12-30 13:54:43 DEBUG rootdir=/tmp/tmpvqbhXX rootdev=/dev/mapper/loop0p1 2015-12-30 13:54:43 INFO Debootstrapping unstable [amd64] 2015-12-30 13:54:43 DEBUG debootstrap arguments: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc'] 2015-12-30 13:54:43 DEBUG debootstrap --arch=amd64 --include=linux-image-amd64,acpid,grub-pc unstable /tmp/tmpvqbhXX http://http.debian.net/debian/ 2015-12-30 13:54:43 DEBUG runcmd: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc', 'unstable', '/tmp/tmpvqbhXX', 'http://http.debian.net/debian/'] None {} 2015-12-30 13:56:56 ERROR command failed: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc', 'unstable', '/tmp/tmpvqbhXX', 'http://http.debian.net/debian/'] I: Retrieving Release I: Retrieving Release.gpg I: Checking Release signature I: Valid Release signature (key id 126C0D24BD8A2942CC7DF8AC7638D0442B90D010) I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional required dependencies: adduser dmsetup insserv libapparmor1 libaudit-common libaudit1 libbz2-1.0 libcap2 libcap2-bin libcryptsetup4 libdb5.3 libdebconfclient0 libdevmapper1.02.1 libgcrypt20 libgpg-error0 libkmod2 libncursesw5 libseccomp2 libsemanage-common libsemanage1 libsystemd0 libudev1 libustr-1.0-1 systemd systemd-sysv I: Found additional base dependencies: gettext-base grub-common grub-pc-bin grub2-common initramfs-tools klibc-utils libdns-export100 libffi6 libfreetype6 libfuse2 libgmp10 libgnutls-deb0-28 libgnutls-openssl27 libhogweed4 libicu55 libidn11 libisc-export95 libklibc libnettle6 libnfnetlink0 libp11-kit0 libpng12-0 libpsl0 libtasn1-6 linux-base linux-image-4.3.0-1-amd64 ucf I: Checking component main on http://http.debian.net/debian... I: Retrieving libacl1 2.2.52-2 I: Validating libacl1 2.2.52-2 I: Retrieving acpid 1:2.0.25-1 I: Validating acpid 1:2.0.25-1 I: Retrieving adduser 3.113+nmu3 I: Validating adduser 3.113+nmu3 I: Retrieving libapparmor1 2.10-2+b2 I: Validating libapparmor1 2.10-2+b2 I: Retrieving apt 1.1.10 I: Validating apt 1.1.10 I: Retrieving apt-utils 1.1.10 I: Validating apt-utils 1.1.10 I: Retrieving libapt-inst2.0 1.1.10 I: Validating libapt-inst2.0 1.1.10 I: Retrieving libapt-pkg5.0 1.1.10 W: Couldn't download package libapt-pkg5.0 (ver 1.1.10 arch amd64) I: Retrieving libattr1 1:2.4.47-2 I: Validating libattr1 1:2.4.47-2 I: Retrieving libaudit-common 1:2.4.5-1 I: Validating libaudit-common 1:2.4.5-1 I: Retrieving libaudit1 1:2.4.5-1 I: Validating libaudit1 1:2.4.5-1 I: Retrieving base-files 9.5 I: Validating base-files 9.5 I: Retrieving base-passwd 3.5.38 I: Validating base-passwd 3.5.38 I: Retrieving bash 4.3-14+b1 I: Validating bash 4.3-14+b1 I: Retrieving libdns-export100 1:9.9.5.dfsg-12.1 I: Validating libdns-export100 1:9.9.5.dfsg-12.1 I: Retrieving libisc-export95 1:9.9.5.dfsg-12.1 I: Validating libisc-export95 1:9.9.5.dfsg-12.1 I: Retrieving libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Validating libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Retrieving libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Validating libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Retrieving bsdmainutils 9.0.6+b1 I: Validating bsdmainutils 9.0.6+b1 I: Retrieving libbz2-1.0 1.0.6-8 W: Couldn't download package libbz2-1.0 (ver 1.0.6-8 arch amd64) I: Retrieving libdebconfclient0 0.201 I: Validating libdebconfclient0 0.201 I: Retrieving coreutils 8.23-4 I: Validating coreutils 8.23-4 I: Retrieving cpio 2.11+dfsg-4.1 I: Validating cpio 2.11+dfsg-4.1 I: Retrieving cron 3.0pl1-128 I: Validating cron 3.0pl1-128 I: Retrieving libcryptsetup4 2:1.6.6-5 I: Validating libcryptsetup4 2:1.6.6-5 I: Retrieving dash 0.5.7-4+b1 I: Validating dash 0.5.7-4+b1 I: Retrieving libdb5.3 5.3.28-11 I: Validating libdb5.3 5.3.28-11 I: Retrieving debconf 1.5.58 I: Validating debconf 1.5.58 I: Retrieving debconf-i18n 1.5.58 I: Validating debconf-i18n 1.5.58 I: Retrieving debian-archive-keyring 2014.3 I: Validating debian-archive-keyring 2014.3 I: Retrieving debianutils 4.5.1 I: Validating debianutils 4.5.1 I: Retrieving diffutils 1:3.3-3 I: Validating diffutils 1:3.3-3 I: Retrieving dmidecode 3.0-2 I: Validating dmidecode 3.0-2 I: Retrieving dpkg 1.18.4 I: Validating dpkg 1.18.4 I: Retrieving e2fslibs 1.42.13-1 I: Validating e2fslibs 1.42.13-1 I: Retrieving e2fsprogs 1.42.13-1 I: Validating e2fsprogs 1.42.13-1 I: Retrieving libcomerr2 1.42.13-1 I: Validating libcomerr2 1.42.13-1 I: Retrieving libss2 1.42.13-1 I: Validating libss2 1.42.13-1 I: Retrieving findutils 4.4.2-10 I: Validating findutils 4.4.2-10 I: Retrieving libfreetype6 2.6.1-0.1 I: Validating libfreetype6 2.6.1-0.1 I: Retrieving libfuse2 2.9.4-1 I: Validating libfuse2 2.9.4-1 I: Retrieving gcc-4.8-base 4.8.5-3 I: Validating gcc-4.8-base 4.8.5-3 I: Retrieving gcc-4.9-base 4.9.3-10 I: Validating gcc-4.9-base 4.9.3-10 I: Retrieving gcc-5-base 5.3.1-4 I: Validating gcc-5-base 5.3.1-4 I: Retrieving libgcc1 1:5.3.1-4 I: Validating libgcc1 1:5.3.1-4 I: Retrieving libstdc++6 5.3.1-4 I: Validating libstdc++6 5.3.1-4 I: Retrieving libgdbm3 1.8.3-13.1 W: Couldn't download package libgdbm3 (ver 1.8.3-13.1 arch amd64) I: Retrieving gettext-base 0.19.7-1 I: Validating gettext-base 0.19.7-1 I: Retrieving libc-bin 2.21-6 I: Validating libc-bin 2.21-6 I: Retrieving libc6 2.21-6 I: Validating libc6 2.21-6 I: Retrieving multiarch-support 2.21-6 I: Validating multiarch-support 2.21-6 I: Retrieving libgmp10 2:6.1.0+dfsg-2 I: Validating libgmp10 2:6.1.0+dfsg-2 I: Retrieving gnupg 1.4.20-1 I: Validating gnupg 1.4.20-1 I: Retrieving gpgv 1.4.20-1 I: Validating gpgv 1.4.20-1 I: Retrieving libgnutls-deb0-28 3.3.19-1 I: Validating libgnutls-deb0-28 3.3.19-1 I: Retrieving libgnutls-openssl27 3.3.19-1 I: Validating libgnutls-openssl27 3.3.19-1 I: Retrieving grep 2.22-1 I: Validating grep 2.22-1 I: Retrieving grub-common 2.02~beta2-33 I: Validating grub-common 2.02~beta2-33 I: Retrieving grub-pc 2.02~beta2-33 I: Validating grub-pc 2.02~beta2-33 I: Retrieving grub-pc-bin 2.02~beta2-33 I: Validating grub-pc-bin 2.02~beta2-33 I: Retrieving grub2-common 2.02~beta2-33 I: Validating grub2-common 2.02~beta2-33 I: Retrieving gzip 1.6-4 I: Validating gzip 1.6-4 I: Retrieving hostname 3.16 I: Validating hostname 3.16 I: Retrieving libicu55 55.1-6 I: Validating libicu55 55.1-6 I: Retrieving ifupdown 0.8.4 I: Validating ifupdown 0.8.4 I: Retrieving init 1.24 I: Validating init 1.24 I: Retrieving init-system-helpers 1.24 I: Validating init-system-helpers 1.24 I: Retrieving initramfs-tools 0.120 I: Validating initramfs-tools 0.120 I: Retrieving insserv 1.14.0-5 I: Validating insserv 1.14.0-5 I: Retrieving iproute2 4.3.0-1 I: Validating iproute2 4.3.0-1 I: Retrieving iptables 1.4.21-2+b1 I: Validating iptables 1.4.21-2+b1 I: Retrieving libxtables10 1.4.21-2+b1 I: Validating libxtables10 1.4.21-2+b1 I: Retrieving iputils-ping 3:20121221-5+b2 I: Validating iputils-ping 3:20121221-5+b2 I: Retrieving isc-dhcp-client 4.3.3-5 I: Validating isc-dhcp-client 4.3.3-5 I: Retrieving isc-dhcp-common 4.3.3-5 I: Validating isc-dhcp-common 4.3.3-5 I: Retrieving libjson-c2 0.11-4 I: Validating libjson-c2 0.11-4 I: Retrieving klibc-utils 2.0.4-4 I: Validating klibc-utils 2.0.4-4 I: Retrieving libklibc 2.0.4-4 I: Validating libklibc 2.0.4-4 I: Retrieving kmod 22-1 I: Validating kmod 22-1 I: Retrieving libkmod2 22-1 I: Validating libkmod2 22-1 I: Retrieving libcap2 1:2.24-12 I: Validating libcap2 1:2.24-12 I: Retrieving libcap2-bin 1:2.24-12 I: Validating libcap2-bin 1:2.24-12 I: Retrieving libestr0 0.1.10-1 I: Validating libestr0 0.1.10-1 I: Retrieving libffi6 3.2.1-4 I: Validating libffi6 3.2.1-4 I: Retrieving libgcrypt20 1.6.4-4 I: Validating libgcrypt20 1.6.4-4 I: Retrieving libgpg-error0 1.21-1 I: Validating libgpg-error0 1.21-1 I: Retrieving libidn11 1.32-3 I: Validating libidn11 1.32-3 I: Retrieving liblocale-gettext-perl 1.07-1+b1 I: Validating liblocale-gettext-perl 1.07-1+b1 I: Retrieving liblogging-stdlog0 1.0.5-2 I: Validating liblogging-stdlog0 1.0.5-2 I: Retrieving liblognorm2 1.1.2-1.1 I: Validating liblognorm2 1.1.2-1.1 I: Retrieving libnfnetlink0 1.0.1-3 I: Validating libnfnetlink0 1.0.1-3 I: Retrieving libpipeline1 1.4.1-1 I: Validating libpipeline1 1.4.1-1 I: Retrieving libpng12-0 1.2.54-1 I: Validating libpng12-0 1.2.54-1 I: Retrieving libpsl0 0.11.0-2 I: Validating libpsl0 0.11.0-2 I: Retrieving libseccomp2 2.2.3-2 I: Validating libseccomp2 2.2.3-2 I: Retrieving libselinux1 2.4-3 I: Validating libselinux1 2.4-3 I: Retrieving libsemanage-common 2.4-3 I: Validating libsemanage-common 2.4-3 I: Retrieving libsemanage1 2.4-3 I: Validating libsemanage1 2.4-3 I: Retrieving libsepol1 2.4-2 I: Validating libsepol1 2.4-2 I: Retrieving libtasn1-6 4.7-3 I: Validating libtasn1-6 4.7-3 I: Retrieving libtext-charwidth-perl 0.04-7+b4 W: Couldn't download package libtext-charwidth-perl (ver 0.04-7+b4 arch amd64) I: Retrieving libtext-iconv-perl 1.7-5+b3 I: Validating libtext-iconv-perl 1.7-5+b3 I: Retrieving libtext-wrapi18n-perl 0.06-7.1 I: Validating libtext-wrapi18n-perl 0.06-7.1 I: Retrieving libusb-0.1-4 2:0.1.12-27 I: Validating libusb-0.1-4 2:0.1.12-27 I: Retrieving linux-image-4.3.0-1-amd64 4.3.3-2 I: Validating linux-image-4.3.0-1-amd64 4.3.3-2 I: Retrieving linux-base 4.0 I: Validating linux-base 4.0 I: Retrieving linux-image-amd64 4.3+70 I: Validating linux-image-amd64 4.3+70 I: Retrieving logrotate 3.8.7-2 I: Validating logrotate 3.8.7-2 I: Retrieving lsb-base 9.20150917 I: Validating lsb-base 9.20150917 I: Retrieving dmsetup 2:1.02.114-1 I: Validating dmsetup 2:1.02.114-1 I: Retrieving libdevmapper1.02.1 2:1.02.114-1 I: Validating libdevmapper1.02.1 2:1.02.114-1 I: Retrieving mawk 1.3.3-17 I: Validating mawk 1.3.3-17 I: Retrieving nano 2.4.3-1 I: Validating nano 2.4.3-1 I: Retrieving libncurses5 6.0+20151024-2 I: Validating libncurses5 6.0+20151024-2 I: Retrieving libncursesw5 6.0+20151024-2 I: Validating libncursesw5 6.0+20151024-2 I: Retrieving libtinfo5 6.0+20151024-2 I: Validating libtinfo5 6.0+20151024-2 I: Retrieving ncurses-base 6.0+20151024-2 I: Validating ncurses-base 6.0+20151024-2 I: Retrieving ncurses-bin 6.0+20151024-2 I: Validating ncurses-bin 6.0+20151024-2 I: Retrieving net-tools 1.60+git20150829.73cef8a-2 I: Validating net-tools 1.60+git20150829.73cef8a-2 I: Retrieving netbase 5.3 I: Validating netbase 5.3 I: Retrieving libhogweed4 3.1.1-4 I: Validating libhogweed4 3.1.1-4 I: Retrieving libnettle6 3.1.1-4 I: Validating libnettle6 3.1.1-4 I: Retrieving libnewt0.52 0.52.18-1+b1 I: Validating libnewt0.52 0.52.18-1+b1 I: Retrieving whiptail 0.52.18-1+b1 I: Validating whiptail 0.52.18-1+b1 I: Retrieving libssl1.0.0 1.0.2d-1 I: Validating libssl1.0.0 1.0.2d-1 I: Retrieving libssl1.0.2 1.0.2e-1 I: Validating libssl1.0.2 1.0.2e-1 I: Retrieving libp11-kit0 0.23.2-3 I: Validating libp11-kit0 0.23.2-3 I: Retrieving libpam-modules 1.1.8-3.1 I: Validating libpam-modules 1.1.8-3.1 I: Retrieving libpam-modules-bin 1.1.8-3.1 I: Validating libpam-modules-bin 1.1.8-3.1 I: Retrieving libpam-runtime 1.1.8-3.1 I: Validating libpam-runtime 1.1.8-3.1 I: Retrieving libpam0g 1.1.8-3.1 I: Validating libpam0g 1.1.8-3.1 I: Retrieving libpcre3 2:8.38-1 I: Validating libpcre3 2:8.38-1 I: Retrieving perl-base 5.22.1-3 I: Validating perl-base 5.22.1-3 I: Retrieving libpopt0 1.16-10 I: Validating libpopt0 1.16-10 I: Retrieving libprocps4 2:3.3.10-4+b1 I: Validating libprocps4 2:3.3.10-4+b1 I: Retrieving procps 2:3.3.10-4+b1 I: Validating procps 2:3.3.10-4+b1 I: Retrieving libreadline6 6.3-8+b4 I: Validating libreadline6 6.3-8+b4 I: Retrieving readline-common 6.3-8 I: Validating readline-common 6.3-8 I: Retrieving rsyslog 8.15.0-1 I: Validating rsyslog 8.15.0-1 I: Retrieving sed 4.2.2-6.1 I: Validating sed 4.2.2-6.1 I: Retrieving sensible-utils 0.0.9 I: Validating sensible-utils 0.0.9 I: Retrieving login 1:4.2-3.1 I: Validating login 1:4.2-3.1 I: Retrieving passwd 1:4.2-3.1 I: Validating passwd 1:4.2-3.1 I: Retrieving libslang2 2.3.0-2+b1 I: Validating libslang2 2.3.0-2+b1 I: Retrieving startpar 0.59-3 I: Validating startpar 0.59-3 I: Retrieving libsystemd0 228-2+b1 I: Validating libsystemd0 228-2+b1 I: Retrieving libudev1 228-2+b1 I: Validating libudev1 228-2+b1 I: Retrieving systemd 228-2+b1 I: Validating systemd 228-2+b1 I: Retrieving systemd-sysv 228-2+b1 I: Validating systemd-sysv 228-2+b1 I: Retrieving udev 228-2+b1 I: Validating udev 228-2+b1 I: Retrieving initscripts 2.88dsf-59.2 I: Validating initscripts 2.88dsf-59.2 I: Retrieving sysv-rc 2.88dsf-59.2 I: Validating sysv-rc 2.88dsf-59.2 I: Retrieving sysvinit-utils 2.88dsf-59.2 I: Validating sysvinit-utils 2.88dsf-59.2 I: Retrieving tar 1.28-2.1 I: Validating tar 1.28-2.1 I: Retrieving tasksel 3.34 I: Validating tasksel 3.34 I: Retrieving tasksel-data 3.34 I: Validating tasksel-data 3.34 I: Retrieving tzdata 2015g-1 I: Validating tzdata 2015g-1 I: Retrieving ucf 3.0031 I: Validating ucf 3.0031 I: Retrieving libustr-1.0-1 1.0.4-5 I: Validating libustr-1.0-1 1.0.4-5 I: Retrieving bsdutils 1:2.27.1-1 I: Validating bsdutils 1:2.27.1-1 I: Retrieving libblkid1 2.27.1-1 I: Validating libblkid1 2.27.1-1 I: Retrieving libfdisk1 2.27.1-1 I: Validating libfdisk1 2.27.1-1 I: Retrieving libmount1 2.27.1-1 I: Validating libmount1 2.27.1-1 I: Retrieving libsmartcols1 2.27.1-1 W: Couldn't download package libsmartcols1 (ver 2.27.1-1 arch amd64) I: Retrieving libuuid1 2.27.1-1 I: Validating libuuid1 2.27.1-1 I: Retrieving mount 2.27.1-1 I: Validating mount 2.27.1-1 I: Retrieving util-linux 2.27.1-1 W: Couldn't download package util-linux (ver 2.27.1-1 arch amd64) I: Retrieving vim-common 2:7.4.963-1+b1 I: Validating vim-common 2:7.4.963-1+b1 I: Retrieving vim-tiny 2:7.4.963-1+b1 I: Validating vim-tiny 2:7.4.963-1+b1 I: Retrieving wget 1.17.1-1 I: Validating wget 1.17.1-1 I: Retrieving libxapian22v5 1.2.21-1.2 I: Validating libxapian22v5 1.2.21-1.2 I: Retrieving liblzma5 5.1.1alpha+20120614-2.1 I: Validating liblzma5 5.1.1alpha+20120614-2.1 I: Retrieving zlib1g 1:1.2.8.dfsg-2+b1 I: Validating zlib1g 1:1.2.8.dfsg-2+b1 E: Couldn't download packages: libapt-pkg5.0 libbz2-1.0 libgdbm3 libtext-charwidth-perl libsmartcols1 util-linux 2015-12-30 13:56:56 INFO EEEK! Something bad happened... 2015-12-30 13:56:56 INFO command failed: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc', 'unstable', '/tmp/tmpvqbhXX', 'http://http.debian.net/debian/'] I: Retrieving Release I: Retrieving Release.gpg I: Checking Release signature I: Valid Release signature (key id 126C0D24BD8A2942CC7DF8AC7638D0442B90D010) I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional required dependencies: adduser dmsetup insserv libapparmor1 libaudit-common libaudit1 libbz2-1.0 libcap2 libcap2-bin libcryptsetup4 libdb5.3 libdebconfclient0 libdevmapper1.02.1 libgcrypt20 libgpg-error0 libkmod2 libncursesw5 libseccomp2 libsemanage-common libsemanage1 libsystemd0 libudev1 libustr-1.0-1 systemd systemd-sysv I: Found additional base dependencies: gettext-base grub-common grub-pc-bin grub2-common initramfs-tools klibc-utils libdns-export100 libffi6 libfreetype6 libfuse2 libgmp10 libgnutls-deb0-28 libgnutls-openssl27 libhogweed4 libicu55 libidn11 libisc-export95 libklibc libnettle6 libnfnetlink0 libp11-kit0 libpng12-0 libpsl0 libtasn1-6 linux-base linux-image-4.3.0-1-amd64 ucf I: Checking component main on http://http.debian.net/debian... I: Retrieving libacl1 2.2.52-2 I: Validating libacl1 2.2.52-2 I: Retrieving acpid 1:2.0.25-1 I: Validating acpid 1:2.0.25-1 I: Retrieving adduser 3.113+nmu3 I: Validating adduser 3.113+nmu3 I: Retrieving libapparmor1 2.10-2+b2 I: Validating libapparmor1 2.10-2+b2 I: Retrieving apt 1.1.10 I: Validating apt 1.1.10 I: Retrieving apt-utils 1.1.10 I: Validating apt-utils 1.1.10 I: Retrieving libapt-inst2.0 1.1.10 I: Validating libapt-inst2.0 1.1.10 I: Retrieving libapt-pkg5.0 1.1.10 W: Couldn't download package libapt-pkg5.0 (ver 1.1.10 arch amd64) I: Retrieving libattr1 1:2.4.47-2 I: Validating libattr1 1:2.4.47-2 I: Retrieving libaudit-common 1:2.4.5-1 I: Validating libaudit-common 1:2.4.5-1 I: Retrieving libaudit1 1:2.4.5-1 I: Validating libaudit1 1:2.4.5-1 I: Retrieving base-files 9.5 I: Validating base-files 9.5 I: Retrieving base-passwd 3.5.38 I: Validating base-passwd 3.5.38 I: Retrieving bash 4.3-14+b1 I: Validating bash 4.3-14+b1 I: Retrieving libdns-export100 1:9.9.5.dfsg-12.1 I: Validating libdns-export100 1:9.9.5.dfsg-12.1 I: Retrieving libisc-export95 1:9.9.5.dfsg-12.1 I: Validating libisc-export95 1:9.9.5.dfsg-12.1 I: Retrieving libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Validating libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Retrieving libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Validating libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Retrieving bsdmainutils 9.0.6+b1 I: Validating bsdmainutils 9.0.6+b1 I: Retrieving libbz2-1.0 1.0.6-8 W: Couldn't download package libbz2-1.0 (ver 1.0.6-8 arch amd64) I: Retrieving libdebconfclient0 0.201 I: Validating libdebconfclient0 0.201 I: Retrieving coreutils 8.23-4 I: Validating coreutils 8.23-4 I: Retrieving cpio 2.11+dfsg-4.1 I: Validating cpio 2.11+dfsg-4.1 I: Retrieving cron 3.0pl1-128 I: Validating cron 3.0pl1-128 I: Retrieving libcryptsetup4 2:1.6.6-5 I: Validating libcryptsetup4 2:1.6.6-5 I: Retrieving dash 0.5.7-4+b1 I: Validating dash 0.5.7-4+b1 I: Retrieving libdb5.3 5.3.28-11 I: Validating libdb5.3 5.3.28-11 I: Retrieving debconf 1.5.58 I: Validating debconf 1.5.58 I: Retrieving debconf-i18n 1.5.58 I: Validating debconf-i18n 1.5.58 I: Retrieving debian-archive-keyring 2014.3 I: Validating debian-archive-keyring 2014.3 I: Retrieving debianutils 4.5.1 I: Validating debianutils 4.5.1 I: Retrieving diffutils 1:3.3-3 I: Validating diffutils 1:3.3-3 I: Retrieving dmidecode 3.0-2 I: Validating dmidecode 3.0-2 I: Retrieving dpkg 1.18.4 I: Validating dpkg 1.18.4 I: Retrieving e2fslibs 1.42.13-1 I: Validating e2fslibs 1.42.13-1 I: Retrieving e2fsprogs 1.42.13-1 I: Validating e2fsprogs 1.42.13-1 I: Retrieving libcomerr2 1.42.13-1 I: Validating libcomerr2 1.42.13-1 I: Retrieving libss2 1.42.13-1 I: Validating libss2 1.42.13-1 I: Retrieving findutils 4.4.2-10 I: Validating findutils 4.4.2-10 I: Retrieving libfreetype6 2.6.1-0.1 I: Validating libfreetype6 2.6.1-0.1 I: Retrieving libfuse2 2.9.4-1 I: Validating libfuse2 2.9.4-1 I: Retrieving gcc-4.8-base 4.8.5-3 I: Validating gcc-4.8-base 4.8.5-3 I: Retrieving gcc-4.9-base 4.9.3-10 I: Validating gcc-4.9-base 4.9.3-10 I: Retrieving gcc-5-base 5.3.1-4 I: Validating gcc-5-base 5.3.1-4 I: Retrieving libgcc1 1:5.3.1-4 I: Validating libgcc1 1:5.3.1-4 I: Retrieving libstdc++6 5.3.1-4 I: Validating libstdc++6 5.3.1-4 I: Retrieving libgdbm3 1.8.3-13.1 W: Couldn't download package libgdbm3 (ver 1.8.3-13.1 arch amd64) I: Retrieving gettext-base 0.19.7-1 I: Validating gettext-base 0.19.7-1 I: Retrieving libc-bin 2.21-6 I: Validating libc-bin 2.21-6 I: Retrieving libc6 2.21-6 I: Validating libc6 2.21-6 I: Retrieving multiarch-support 2.21-6 I: Validating multiarch-support 2.21-6 I: Retrieving libgmp10 2:6.1.0+dfsg-2 I: Validating libgmp10 2:6.1.0+dfsg-2 I: Retrieving gnupg 1.4.20-1 I: Validating gnupg 1.4.20-1 I: Retrieving gpgv 1.4.20-1 I: Validating gpgv 1.4.20-1 I: Retrieving libgnutls-deb0-28 3.3.19-1 I: Validating libgnutls-deb0-28 3.3.19-1 I: Retrieving libgnutls-openssl27 3.3.19-1 I: Validating libgnutls-openssl27 3.3.19-1 I: Retrieving grep 2.22-1 I: Validating grep 2.22-1 I: Retrieving grub-common 2.02~beta2-33 I: Validating grub-common 2.02~beta2-33 I: Retrieving grub-pc 2.02~beta2-33 I: Validating grub-pc 2.02~beta2-33 I: Retrieving grub-pc-bin 2.02~beta2-33 I: Validating grub-pc-bin 2.02~beta2-33 I: Retrieving grub2-common 2.02~beta2-33 I: Validating grub2-common 2.02~beta2-33 I: Retrieving gzip 1.6-4 I: Validating gzip 1.6-4 I: Retrieving hostname 3.16 I: Validating hostname 3.16 I: Retrieving libicu55 55.1-6 I: Validating libicu55 55.1-6 I: Retrieving ifupdown 0.8.4 I: Validating ifupdown 0.8.4 I: Retrieving init 1.24 I: Validating init 1.24 I: Retrieving init-system-helpers 1.24 I: Validating init-system-helpers 1.24 I: Retrieving initramfs-tools 0.120 I: Validating initramfs-tools 0.120 I: Retrieving insserv 1.14.0-5 I: Validating insserv 1.14.0-5 I: Retrieving iproute2 4.3.0-1 I: Validating iproute2 4.3.0-1 I: Retrieving iptables 1.4.21-2+b1 I: Validating iptables 1.4.21-2+b1 I: Retrieving libxtables10 1.4.21-2+b1 I: Validating libxtables10 1.4.21-2+b1 I: Retrieving iputils-ping 3:20121221-5+b2 I: Validating iputils-ping 3:20121221-5+b2 I: Retrieving isc-dhcp-client 4.3.3-5 I: Validating isc-dhcp-client 4.3.3-5 I: Retrieving isc-dhcp-common 4.3.3-5 I: Validating isc-dhcp-common 4.3.3-5 I: Retrieving libjson-c2 0.11-4 I: Validating libjson-c2 0.11-4 I: Retrieving klibc-utils 2.0.4-4 I: Validating klibc-utils 2.0.4-4 I: Retrieving libklibc 2.0.4-4 I: Validating libklibc 2.0.4-4 I: Retrieving kmod 22-1 I: Validating kmod 22-1 I: Retrieving libkmod2 22-1 I: Validating libkmod2 22-1 I: Retrieving libcap2 1:2.24-12 I: Validating libcap2 1:2.24-12 I: Retrieving libcap2-bin 1:2.24-12 I: Validating libcap2-bin 1:2.24-12 I: Retrieving libestr0 0.1.10-1 I: Validating libestr0 0.1.10-1 I: Retrieving libffi6 3.2.1-4 I: Validating libffi6 3.2.1-4 I: Retrieving libgcrypt20 1.6.4-4 I: Validating libgcrypt20 1.6.4-4 I: Retrieving libgpg-error0 1.21-1 I: Validating libgpg-error0 1.21-1 I: Retrieving libidn11 1.32-3 I: Validating libidn11 1.32-3 I: Retrieving liblocale-gettext-perl 1.07-1+b1 I: Validating liblocale-gettext-perl 1.07-1+b1 I: Retrieving liblogging-stdlog0 1.0.5-2 I: Validating liblogging-stdlog0 1.0.5-2 I: Retrieving liblognorm2 1.1.2-1.1 I: Validating liblognorm2 1.1.2-1.1 I: Retrieving libnfnetlink0 1.0.1-3 I: Validating libnfnetlink0 1.0.1-3 I: Retrieving libpipeline1 1.4.1-1 I: Validating libpipeline1 1.4.1-1 I: Retrieving libpng12-0 1.2.54-1 I: Validating libpng12-0 1.2.54-1 I: Retrieving libpsl0 0.11.0-2 I: Validating libpsl0 0.11.0-2 I: Retrieving libseccomp2 2.2.3-2 I: Validating libseccomp2 2.2.3-2 I: Retrieving libselinux1 2.4-3 I: Validating libselinux1 2.4-3 I: Retrieving libsemanage-common 2.4-3 I: Validating libsemanage-common 2.4-3 I: Retrieving libsemanage1 2.4-3 I: Validating libsemanage1 2.4-3 I: Retrieving libsepol1 2.4-2 I: Validating libsepol1 2.4-2 I: Retrieving libtasn1-6 4.7-3 I: Validating libtasn1-6 4.7-3 I: Retrieving libtext-charwidth-perl 0.04-7+b4 W: Couldn't download package libtext-charwidth-perl (ver 0.04-7+b4 arch amd64) I: Retrieving libtext-iconv-perl 1.7-5+b3 I: Validating libtext-iconv-perl 1.7-5+b3 I: Retrieving libtext-wrapi18n-perl 0.06-7.1 I: Validating libtext-wrapi18n-perl 0.06-7.1 I: Retrieving libusb-0.1-4 2:0.1.12-27 I: Validating libusb-0.1-4 2:0.1.12-27 I: Retrieving linux-image-4.3.0-1-amd64 4.3.3-2 I: Validating linux-image-4.3.0-1-amd64 4.3.3-2 I: Retrieving linux-base 4.0 I: Validating linux-base 4.0 I: Retrieving linux-image-amd64 4.3+70 I: Validating linux-image-amd64 4.3+70 I: Retrieving logrotate 3.8.7-2 I: Validating logrotate 3.8.7-2 I: Retrieving lsb-base 9.20150917 I: Validating lsb-base 9.20150917 I: Retrieving dmsetup 2:1.02.114-1 I: Validating dmsetup 2:1.02.114-1 I: Retrieving libdevmapper1.02.1 2:1.02.114-1 I: Validating libdevmapper1.02.1 2:1.02.114-1 I: Retrieving mawk 1.3.3-17 I: Validating mawk 1.3.3-17 I: Retrieving nano 2.4.3-1 I: Validating nano 2.4.3-1 I: Retrieving libncurses5 6.0+20151024-2 I: Validating libncurses5 6.0+20151024-2 I: Retrieving libncursesw5 6.0+20151024-2 I: Validating libncursesw5 6.0+20151024-2 I: Retrieving libtinfo5 6.0+20151024-2 I: Validating libtinfo5 6.0+20151024-2 I: Retrieving ncurses-base 6.0+20151024-2 I: Validating ncurses-base 6.0+20151024-2 I: Retrieving ncurses-bin 6.0+20151024-2 I: Validating ncurses-bin 6.0+20151024-2 I: Retrieving net-tools 1.60+git20150829.73cef8a-2 I: Validating net-tools 1.60+git20150829.73cef8a-2 I: Retrieving netbase 5.3 I: Validating netbase 5.3 I: Retrieving libhogweed4 3.1.1-4 I: Validating libhogweed4 3.1.1-4 I: Retrieving libnettle6 3.1.1-4 I: Validating libnettle6 3.1.1-4 I: Retrieving libnewt0.52 0.52.18-1+b1 I: Validating libnewt0.52 0.52.18-1+b1 I: Retrieving whiptail 0.52.18-1+b1 I: Validating whiptail 0.52.18-1+b1 I: Retrieving libssl1.0.0 1.0.2d-1 I: Validating libssl1.0.0 1.0.2d-1 I: Retrieving libssl1.0.2 1.0.2e-1 I: Validating libssl1.0.2 1.0.2e-1 I: Retrieving libp11-kit0 0.23.2-3 I: Validating libp11-kit0 0.23.2-3 I: Retrieving libpam-modules 1.1.8-3.1 I: Validating libpam-modules 1.1.8-3.1 I: Retrieving libpam-modules-bin 1.1.8-3.1 I: Validating libpam-modules-bin 1.1.8-3.1 I: Retrieving libpam-runtime 1.1.8-3.1 I: Validating libpam-runtime 1.1.8-3.1 I: Retrieving libpam0g 1.1.8-3.1 I: Validating libpam0g 1.1.8-3.1 I: Retrieving libpcre3 2:8.38-1 I: Validating libpcre3 2:8.38-1 I: Retrieving perl-base 5.22.1-3 I: Validating perl-base 5.22.1-3 I: Retrieving libpopt0 1.16-10 I: Validating libpopt0 1.16-10 I: Retrieving libprocps4 2:3.3.10-4+b1 I: Validating libprocps4 2:3.3.10-4+b1 I: Retrieving procps 2:3.3.10-4+b1 I: Validating procps 2:3.3.10-4+b1 I: Retrieving libreadline6 6.3-8+b4 I: Validating libreadline6 6.3-8+b4 I: Retrieving readline-common 6.3-8 I: Validating readline-common 6.3-8 I: Retrieving rsyslog 8.15.0-1 I: Validating rsyslog 8.15.0-1 I: Retrieving sed 4.2.2-6.1 I: Validating sed 4.2.2-6.1 I: Retrieving sensible-utils 0.0.9 I: Validating sensible-utils 0.0.9 I: Retrieving login 1:4.2-3.1 I: Validating login 1:4.2-3.1 I: Retrieving passwd 1:4.2-3.1 I: Validating passwd 1:4.2-3.1 I: Retrieving libslang2 2.3.0-2+b1 I: Validating libslang2 2.3.0-2+b1 I: Retrieving startpar 0.59-3 I: Validating startpar 0.59-3 I: Retrieving libsystemd0 228-2+b1 I: Validating libsystemd0 228-2+b1 I: Retrieving libudev1 228-2+b1 I: Validating libudev1 228-2+b1 I: Retrieving systemd 228-2+b1 I: Validating systemd 228-2+b1 I: Retrieving systemd-sysv 228-2+b1 I: Validating systemd-sysv 228-2+b1 I: Retrieving udev 228-2+b1 I: Validating udev 228-2+b1 I: Retrieving initscripts 2.88dsf-59.2 I: Validating initscripts 2.88dsf-59.2 I: Retrieving sysv-rc 2.88dsf-59.2 I: Validating sysv-rc 2.88dsf-59.2 I: Retrieving sysvinit-utils 2.88dsf-59.2 I: Validating sysvinit-utils 2.88dsf-59.2 I: Retrieving tar 1.28-2.1 I: Validating tar 1.28-2.1 I: Retrieving tasksel 3.34 I: Validating tasksel 3.34 I: Retrieving tasksel-data 3.34 I: Validating tasksel-data 3.34 I: Retrieving tzdata 2015g-1 I: Validating tzdata 2015g-1 I: Retrieving ucf 3.0031 I: Validating ucf 3.0031 I: Retrieving libustr-1.0-1 1.0.4-5 I: Validating libustr-1.0-1 1.0.4-5 I: Retrieving bsdutils 1:2.27.1-1 I: Validating bsdutils 1:2.27.1-1 I: Retrieving libblkid1 2.27.1-1 I: Validating libblkid1 2.27.1-1 I: Retrieving libfdisk1 2.27.1-1 I: Validating libfdisk1 2.27.1-1 I: Retrieving libmount1 2.27.1-1 I: Validating libmount1 2.27.1-1 I: Retrieving libsmartcols1 2.27.1-1 W: Couldn't download package libsmartcols1 (ver 2.27.1-1 arch amd64) I: Retrieving libuuid1 2.27.1-1 I: Validating libuuid1 2.27.1-1 I: Retrieving mount 2.27.1-1 I: Validating mount 2.27.1-1 I: Retrieving util-linux 2.27.1-1 W: Couldn't download package util-linux (ver 2.27.1-1 arch amd64) I: Retrieving vim-common 2:7.4.963-1+b1 I: Validating vim-common 2:7.4.963-1+b1 I: Retrieving vim-tiny 2:7.4.963-1+b1 I: Validating vim-tiny 2:7.4.963-1+b1 I: Retrieving wget 1.17.1-1 I: Validating wget 1.17.1-1 I: Retrieving libxapian22v5 1.2.21-1.2 I: Validating libxapian22v5 1.2.21-1.2 I: Retrieving liblzma5 5.1.1alpha+20120614-2.1 I: Validating liblzma5 5.1.1alpha+20120614-2.1 I: Retrieving zlib1g 1:1.2.8.dfsg-2+b1 I: Validating zlib1g 1:1.2.8.dfsg-2+b1 E: Couldn't download packages: libapt-pkg5.0 libbz2-1.0 libgdbm3 libtext-charwidth-perl libsmartcols1 util-linux 2015-12-30 13:56:56 INFO Cleaning up 2015-12-30 13:56:56 DEBUG runcmd: ['umount', '/tmp/tmpvqbhXX'] None {} 2015-12-30 13:56:57 DEBUG runcmd: ['kpartx', '-d', 'sid.img'] None {} 2015-12-30 13:56:57 CRITICAL Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/cliapp/app.py", line 189, in _run self.process_args(args) File "/usr/sbin/vmdebootstrap", line 174, in process_args self.start_ops() File "/usr/sbin/vmdebootstrap", line 254, in start_ops self.debootstrap(rootdir) File "/usr/sbin/vmdebootstrap", line 433, in debootstrap runcmd(args) File "/usr/lib/python2.7/dist-packages/vmdebootstrap/base.py", line 44, in runcmd raise cliapp.AppException(msg) AppException: command failed: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc', 'unstable', '/tmp/tmpvqbhXX', 'http://http.debian.net/debian/'] I: Retrieving Release I: Retrieving Release.gpg I: Checking Release signature I: Valid Release signature (key id 126C0D24BD8A2942CC7DF8AC7638D0442B90D010) I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional required dependencies: adduser dmsetup insserv libapparmor1 libaudit-common libaudit1 libbz2-1.0 libcap2 libcap2-bin libcryptsetup4 libdb5.3 libdebconfclient0 libdevmapper1.02.1 libgcrypt20 libgpg-error0 libkmod2 libncursesw5 libseccomp2 libsemanage-common libsemanage1 libsystemd0 libudev1 libustr-1.0-1 systemd systemd-sysv I: Found additional base dependencies: gettext-base grub-common grub-pc-bin grub2-common initramfs-tools klibc-utils libdns-export100 libffi6 libfreetype6 libfuse2 libgmp10 libgnutls-deb0-28 libgnutls-openssl27 libhogweed4 libicu55 libidn11 libisc-export95 libklibc libnettle6 libnfnetlink0 libp11-kit0 libpng12-0 libpsl0 libtasn1-6 linux-base linux-image-4.3.0-1-amd64 ucf I: Checking component main on http://http.debian.net/debian... I: Retrieving libacl1 2.2.52-2 I: Validating libacl1 2.2.52-2 I: Retrieving acpid 1:2.0.25-1 I: Validating acpid 1:2.0.25-1 I: Retrieving adduser 3.113+nmu3 I: Validating adduser 3.113+nmu3 I: Retrieving libapparmor1 2.10-2+b2 I: Validating libapparmor1 2.10-2+b2 I: Retrieving apt 1.1.10 I: Validating apt 1.1.10 I: Retrieving apt-utils 1.1.10 I: Validating apt-utils 1.1.10 I: Retrieving libapt-inst2.0 1.1.10 I: Validating libapt-inst2.0 1.1.10 I: Retrieving libapt-pkg5.0 1.1.10 W: Couldn't download package libapt-pkg5.0 (ver 1.1.10 arch amd64) I: Retrieving libattr1 1:2.4.47-2 I: Validating libattr1 1:2.4.47-2 I: Retrieving libaudit-common 1:2.4.5-1 I: Validating libaudit-common 1:2.4.5-1 I: Retrieving libaudit1 1:2.4.5-1 I: Validating libaudit1 1:2.4.5-1 I: Retrieving base-files 9.5 I: Validating base-files 9.5 I: Retrieving base-passwd 3.5.38 I: Validating base-passwd 3.5.38 I: Retrieving bash 4.3-14+b1 I: Validating bash 4.3-14+b1 I: Retrieving libdns-export100 1:9.9.5.dfsg-12.1 I: Validating libdns-export100 1:9.9.5.dfsg-12.1 I: Retrieving libisc-export95 1:9.9.5.dfsg-12.1 I: Validating libisc-export95 1:9.9.5.dfsg-12.1 I: Retrieving libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Validating libboost-iostreams1.55.0 1.55.0+dfsg-4 I: Retrieving libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Validating libboost-iostreams1.58.0 1.58.0+dfsg-4.1 I: Retrieving bsdmainutils 9.0.6+b1 I: Validating bsdmainutils 9.0.6+b1 I: Retrieving libbz2-1.0 1.0.6-8 W: Couldn't download package libbz2-1.0 (ver 1.0.6-8 arch amd64) I: Retrieving libdebconfclient0 0.201 I: Validating libdebconfclient0 0.201 I: Retrieving coreutils 8.23-4 I: Validating coreutils 8.23-4 I: Retrieving cpio 2.11+dfsg-4.1 I: Validating cpio 2.11+dfsg-4.1 I: Retrieving cron 3.0pl1-128 I: Validating cron 3.0pl1-128 I: Retrieving libcryptsetup4 2:1.6.6-5 I: Validating libcryptsetup4 2:1.6.6-5 I: Retrieving dash 0.5.7-4+b1 I: Validating dash 0.5.7-4+b1 I: Retrieving libdb5.3 5.3.28-11 I: Validating libdb5.3 5.3.28-11 I: Retrieving debconf 1.5.58 I: Validating debconf 1.5.58 I: Retrieving debconf-i18n 1.5.58 I: Validating debconf-i18n 1.5.58 I: Retrieving debian-archive-keyring 2014.3 I: Validating debian-archive-keyring 2014.3 I: Retrieving debianutils 4.5.1 I: Validating debianutils 4.5.1 I: Retrieving diffutils 1:3.3-3 I: Validating diffutils 1:3.3-3 I: Retrieving dmidecode 3.0-2 I: Validating dmidecode 3.0-2 I: Retrieving dpkg 1.18.4 I: Validating dpkg 1.18.4 I: Retrieving e2fslibs 1.42.13-1 I: Validating e2fslibs 1.42.13-1 I: Retrieving e2fsprogs 1.42.13-1 I: Validating e2fsprogs 1.42.13-1 I: Retrieving libcomerr2 1.42.13-1 I: Validating libcomerr2 1.42.13-1 I: Retrieving libss2 1.42.13-1 I: Validating libss2 1.42.13-1 I: Retrieving findutils 4.4.2-10 I: Validating findutils 4.4.2-10 I: Retrieving libfreetype6 2.6.1-0.1 I: Validating libfreetype6 2.6.1-0.1 I: Retrieving libfuse2 2.9.4-1 I: Validating libfuse2 2.9.4-1 I: Retrieving gcc-4.8-base 4.8.5-3 I: Validating gcc-4.8-base 4.8.5-3 I: Retrieving gcc-4.9-base 4.9.3-10 I: Validating gcc-4.9-base 4.9.3-10 I: Retrieving gcc-5-base 5.3.1-4 I: Validating gcc-5-base 5.3.1-4 I: Retrieving libgcc1 1:5.3.1-4 I: Validating libgcc1 1:5.3.1-4 I: Retrieving libstdc++6 5.3.1-4 I: Validating libstdc++6 5.3.1-4 I: Retrieving libgdbm3 1.8.3-13.1 W: Couldn't download package libgdbm3 (ver 1.8.3-13.1 arch amd64) I: Retrieving gettext-base 0.19.7-1 I: Validating gettext-base 0.19.7-1 I: Retrieving libc-bin 2.21-6 I: Validating libc-bin 2.21-6 I: Retrieving libc6 2.21-6 I: Validating libc6 2.21-6 I: Retrieving multiarch-support 2.21-6 I: Validating multiarch-support 2.21-6 I: Retrieving libgmp10 2:6.1.0+dfsg-2 I: Validating libgmp10 2:6.1.0+dfsg-2 I: Retrieving gnupg 1.4.20-1 I: Validating gnupg 1.4.20-1 I: Retrieving gpgv 1.4.20-1 I: Validating gpgv 1.4.20-1 I: Retrieving libgnutls-deb0-28 3.3.19-1 I: Validating libgnutls-deb0-28 3.3.19-1 I: Retrieving libgnutls-openssl27 3.3.19-1 I: Validating libgnutls-openssl27 3.3.19-1 I: Retrieving grep 2.22-1 I: Validating grep 2.22-1 I: Retrieving grub-common 2.02~beta2-33 I: Validating grub-common 2.02~beta2-33 I: Retrieving grub-pc 2.02~beta2-33 I: Validating grub-pc 2.02~beta2-33 I: Retrieving grub-pc-bin 2.02~beta2-33 I: Validating grub-pc-bin 2.02~beta2-33 I: Retrieving grub2-common 2.02~beta2-33 I: Validating grub2-common 2.02~beta2-33 I: Retrieving gzip 1.6-4 I: Validating gzip 1.6-4 I: Retrieving hostname 3.16 I: Validating hostname 3.16 I: Retrieving libicu55 55.1-6 I: Validating libicu55 55.1-6 I: Retrieving ifupdown 0.8.4 I: Validating ifupdown 0.8.4 I: Retrieving init 1.24 I: Validating init 1.24 I: Retrieving init-system-helpers 1.24 I: Validating init-system-helpers 1.24 I: Retrieving initramfs-tools 0.120 I: Validating initramfs-tools 0.120 I: Retrieving insserv 1.14.0-5 I: Validating insserv 1.14.0-5 I: Retrieving iproute2 4.3.0-1 I: Validating iproute2 4.3.0-1 I: Retrieving iptables 1.4.21-2+b1 I: Validating iptables 1.4.21-2+b1 I: Retrieving libxtables10 1.4.21-2+b1 I: Validating libxtables10 1.4.21-2+b1 I: Retrieving iputils-ping 3:20121221-5+b2 I: Validating iputils-ping 3:20121221-5+b2 I: Retrieving isc-dhcp-client 4.3.3-5 I: Validating isc-dhcp-client 4.3.3-5 I: Retrieving isc-dhcp-common 4.3.3-5 I: Validating isc-dhcp-common 4.3.3-5 I: Retrieving libjson-c2 0.11-4 I: Validating libjson-c2 0.11-4 I: Retrieving klibc-utils 2.0.4-4 I: Validating klibc-utils 2.0.4-4 I: Retrieving libklibc 2.0.4-4 I: Validating libklibc 2.0.4-4 I: Retrieving kmod 22-1 I: Validating kmod 22-1 I: Retrieving libkmod2 22-1 I: Validating libkmod2 22-1 I: Retrieving libcap2 1:2.24-12 I: Validating libcap2 1:2.24-12 I: Retrieving libcap2-bin 1:2.24-12 I: Validating libcap2-bin 1:2.24-12 I: Retrieving libestr0 0.1.10-1 I: Validating libestr0 0.1.10-1 I: Retrieving libffi6 3.2.1-4 I: Validating libffi6 3.2.1-4 I: Retrieving libgcrypt20 1.6.4-4 I: Validating libgcrypt20 1.6.4-4 I: Retrieving libgpg-error0 1.21-1 I: Validating libgpg-error0 1.21-1 I: Retrieving libidn11 1.32-3 I: Validating libidn11 1.32-3 I: Retrieving liblocale-gettext-perl 1.07-1+b1 I: Validating liblocale-gettext-perl 1.07-1+b1 I: Retrieving liblogging-stdlog0 1.0.5-2 I: Validating liblogging-stdlog0 1.0.5-2 I: Retrieving liblognorm2 1.1.2-1.1 I: Validating liblognorm2 1.1.2-1.1 I: Retrieving libnfnetlink0 1.0.1-3 I: Validating libnfnetlink0 1.0.1-3 I: Retrieving libpipeline1 1.4.1-1 I: Validating libpipeline1 1.4.1-1 I: Retrieving libpng12-0 1.2.54-1 I: Validating libpng12-0 1.2.54-1 I: Retrieving libpsl0 0.11.0-2 I: Validating libpsl0 0.11.0-2 I: Retrieving libseccomp2 2.2.3-2 I: Validating libseccomp2 2.2.3-2 I: Retrieving libselinux1 2.4-3 I: Validating libselinux1 2.4-3 I: Retrieving libsemanage-common 2.4-3 I: Validating libsemanage-common 2.4-3 I: Retrieving libsemanage1 2.4-3 I: Validating libsemanage1 2.4-3 I: Retrieving libsepol1 2.4-2 I: Validating libsepol1 2.4-2 I: Retrieving libtasn1-6 4.7-3 I: Validating libtasn1-6 4.7-3 I: Retrieving libtext-charwidth-perl 0.04-7+b4 W: Couldn't download package libtext-charwidth-perl (ver 0.04-7+b4 arch amd64) I: Retrieving libtext-iconv-perl 1.7-5+b3 I: Validating libtext-iconv-perl 1.7-5+b3 I: Retrieving libtext-wrapi18n-perl 0.06-7.1 I: Validating libtext-wrapi18n-perl 0.06-7.1 I: Retrieving libusb-0.1-4 2:0.1.12-27 I: Validating libusb-0.1-4 2:0.1.12-27 I: Retrieving linux-image-4.3.0-1-amd64 4.3.3-2 I: Validating linux-image-4.3.0-1-amd64 4.3.3-2 I: Retrieving linux-base 4.0 I: Validating linux-base 4.0 I: Retrieving linux-image-amd64 4.3+70 I: Validating linux-image-amd64 4.3+70 I: Retrieving logrotate 3.8.7-2 I: Validating logrotate 3.8.7-2 I: Retrieving lsb-base 9.20150917 I: Validating lsb-base 9.20150917 I: Retrieving dmsetup 2:1.02.114-1 I: Validating dmsetup 2:1.02.114-1 I: Retrieving libdevmapper1.02.1 2:1.02.114-1 I: Validating libdevmapper1.02.1 2:1.02.114-1 I: Retrieving mawk 1.3.3-17 I: Validating mawk 1.3.3-17 I: Retrieving nano 2.4.3-1 I: Validating nano 2.4.3-1 I: Retrieving libncurses5 6.0+20151024-2 I: Validating libncurses5 6.0+20151024-2 I: Retrieving libncursesw5 6.0+20151024-2 I: Validating libncursesw5 6.0+20151024-2 I: Retrieving libtinfo5 6.0+20151024-2 I: Validating libtinfo5 6.0+20151024-2 I: Retrieving ncurses-base 6.0+20151024-2 I: Validating ncurses-base 6.0+20151024-2 I: Retrieving ncurses-bin 6.0+20151024-2 I: Validating ncurses-bin 6.0+20151024-2 I: Retrieving net-tools 1.60+git20150829.73cef8a-2 I: Validating net-tools 1.60+git20150829.73cef8a-2 I: Retrieving netbase 5.3 I: Validating netbase 5.3 I: Retrieving libhogweed4 3.1.1-4 I: Validating libhogweed4 3.1.1-4 I: Retrieving libnettle6 3.1.1-4 I: Validating libnettle6 3.1.1-4 I: Retrieving libnewt0.52 0.52.18-1+b1 I: Validating libnewt0.52 0.52.18-1+b1 I: Retrieving whiptail 0.52.18-1+b1 I: Validating whiptail 0.52.18-1+b1 I: Retrieving libssl1.0.0 1.0.2d-1 I: Validating libssl1.0.0 1.0.2d-1 I: Retrieving libssl1.0.2 1.0.2e-1 I: Validating libssl1.0.2 1.0.2e-1 I: Retrieving libp11-kit0 0.23.2-3 I: Validating libp11-kit0 0.23.2-3 I: Retrieving libpam-modules 1.1.8-3.1 I: Validating libpam-modules 1.1.8-3.1 I: Retrieving libpam-modules-bin 1.1.8-3.1 I: Validating libpam-modules-bin 1.1.8-3.1 I: Retrieving libpam-runtime 1.1.8-3.1 I: Validating libpam-runtime 1.1.8-3.1 I: Retrieving libpam0g 1.1.8-3.1 I: Validating libpam0g 1.1.8-3.1 I: Retrieving libpcre3 2:8.38-1 I: Validating libpcre3 2:8.38-1 I: Retrieving perl-base 5.22.1-3 I: Validating perl-base 5.22.1-3 I: Retrieving libpopt0 1.16-10 I: Validating libpopt0 1.16-10 I: Retrieving libprocps4 2:3.3.10-4+b1 I: Validating libprocps4 2:3.3.10-4+b1 I: Retrieving procps 2:3.3.10-4+b1 I: Validating procps 2:3.3.10-4+b1 I: Retrieving libreadline6 6.3-8+b4 I: Validating libreadline6 6.3-8+b4 I: Retrieving readline-common 6.3-8 I: Validating readline-common 6.3-8 I: Retrieving rsyslog 8.15.0-1 I: Validating rsyslog 8.15.0-1 I: Retrieving sed 4.2.2-6.1 I: Validating sed 4.2.2-6.1 I: Retrieving sensible-utils 0.0.9 I: Validating sensible-utils 0.0.9 I: Retrieving login 1:4.2-3.1 I: Validating login 1:4.2-3.1 I: Retrieving passwd 1:4.2-3.1 I: Validating passwd 1:4.2-3.1 I: Retrieving libslang2 2.3.0-2+b1 I: Validating libslang2 2.3.0-2+b1 I: Retrieving startpar 0.59-3 I: Validating startpar 0.59-3 I: Retrieving libsystemd0 228-2+b1 I: Validating libsystemd0 228-2+b1 I: Retrieving libudev1 228-2+b1 I: Validating libudev1 228-2+b1 I: Retrieving systemd 228-2+b1 I: Validating systemd 228-2+b1 I: Retrieving systemd-sysv 228-2+b1 I: Validating systemd-sysv 228-2+b1 I: Retrieving udev 228-2+b1 I: Validating udev 228-2+b1 I: Retrieving initscripts 2.88dsf-59.2 I: Validating initscripts 2.88dsf-59.2 I: Retrieving sysv-rc 2.88dsf-59.2 I: Validating sysv-rc 2.88dsf-59.2 I: Retrieving sysvinit-utils 2.88dsf-59.2 I: Validating sysvinit-utils 2.88dsf-59.2 I: Retrieving tar 1.28-2.1 I: Validating tar 1.28-2.1 I: Retrieving tasksel 3.34 I: Validating tasksel 3.34 I: Retrieving tasksel-data 3.34 I: Validating tasksel-data 3.34 I: Retrieving tzdata 2015g-1 I: Validating tzdata 2015g-1 I: Retrieving ucf 3.0031 I: Validating ucf 3.0031 I: Retrieving libustr-1.0-1 1.0.4-5 I: Validating libustr-1.0-1 1.0.4-5 I: Retrieving bsdutils 1:2.27.1-1 I: Validating bsdutils 1:2.27.1-1 I: Retrieving libblkid1 2.27.1-1 I: Validating libblkid1 2.27.1-1 I: Retrieving libfdisk1 2.27.1-1 I: Validating libfdisk1 2.27.1-1 I: Retrieving libmount1 2.27.1-1 I: Validating libmount1 2.27.1-1 I: Retrieving libsmartcols1 2.27.1-1 W: Couldn't download package libsmartcols1 (ver 2.27.1-1 arch amd64) I: Retrieving libuuid1 2.27.1-1 I: Validating libuuid1 2.27.1-1 I: Retrieving mount 2.27.1-1 I: Validating mount 2.27.1-1 I: Retrieving util-linux 2.27.1-1 W: Couldn't download package util-linux (ver 2.27.1-1 arch amd64) I: Retrieving vim-common 2:7.4.963-1+b1 I: Validating vim-common 2:7.4.963-1+b1 I: Retrieving vim-tiny 2:7.4.963-1+b1 I: Validating vim-tiny 2:7.4.963-1+b1 I: Retrieving wget 1.17.1-1 I: Validating wget 1.17.1-1 I: Retrieving libxapian22v5 1.2.21-1.2 I: Validating libxapian22v5 1.2.21-1.2 I: Retrieving liblzma5 5.1.1alpha+20120614-2.1 I: Validating liblzma5 5.1.1alpha+20120614-2.1 I: Retrieving zlib1g 1:1.2.8.dfsg-2+b1 I: Validating zlib1g 1:1.2.8.dfsg-2+b1 E: Couldn't download packages: libapt-pkg5.0 libbz2-1.0 libgdbm3 libtext-charwidth-perl libsmartcols1 util-linux 2015-12-30 13:57:28 INFO vmdebootstrap version 1.3 starts 2015-12-30 13:57:28 DEBUG sys.argv: ['/usr/sbin/vmdebootstrap', '--image=sid.img', '--distribution=unstable', '--grub', '--enable-dhcp', '--verbose', '--log=809339.log', '--log-level=debug', '--serial-console', '--mirror=http://mirror.bytemark.co.uk/debian'] 2015-12-30 13:57:28 DEBUG current working directory: /home/neil/code/debian/lxqt 2015-12-30 13:57:28 DEBUG uid: 0 2015-12-30 13:57:28 DEBUG effective uid: 0 2015-12-30 13:57:28 DEBUG gid: 0 2015-12-30 13:57:28 DEBUG effective gid: 0 2015-12-30 13:57:28 DEBUG environment variables: 2015-12-30 13:57:28 DEBUG environment: LANG=en_GB.utf8 2015-12-30 13:57:28 DEBUG environment: USERNAME=root 2015-12-30 13:57:28 DEBUG environment: TERM=xterm 2015-12-30 13:57:28 DEBUG environment: SHELL=/bin/bash 2015-12-30 13:57:28 DEBUG environment: XAUTHORITY=/home/neil/.Xauthority 2015-12-30 13:57:28 DEBUG environment: LANGUAGE=en_GB:en 2015-12-30 13:57:28 DEBUG environment: SUDO_COMMAND=/usr/sbin/vmdebootstrap --image=sid.img --distribution=unstable --grub --enable-dhcp --verbose --log=809339.log --log-level=debug --serial-console --mirror=http://mirror.bytemark.co.uk/debian 2015-12-30 13:57:28 DEBUG environment: SUDO_UID=1000 2015-12-30 13:57:28 DEBUG environment: SUDO_GID=1000 2015-12-30 13:57:28 DEBUG environment: DISPLAY=:0.0 2015-12-30 13:57:28 DEBUG environment: LOGNAME=root 2015-12-30 13:57:28 DEBUG environment: USER=root 2015-12-30 13:57:28 DEBUG environment: COLORTERM=xfce4-terminal 2015-12-30 13:57:28 DEBUG environment: MAIL=/var/mail/root 2015-12-30 13:57:28 DEBUG environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2015-12-30 13:57:28 DEBUG environment: SUDO_USER=neil 2015-12-30 13:57:28 DEBUG environment: LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36: 2015-12-30 13:57:28 DEBUG environment: HOME=/root 2015-12-30 13:57:28 DEBUG environment: DJANGO_COLORS=warning=blue,bold;error=red,bold 2015-12-30 13:57:28 DEBUG Config: [config] output = log = 809339.log log-level = debug log-max = 0 log-keep = 10 log-mode = 0600 dump-memory-profile = simple memory-dump-interval = 300 verbose = True image = sid.img size = 1000000000 bootsize = 0 boottype = ext2 bootoffset = 0 use-uefi = False esp-size = 5242880 part-type = msdos roottype = ext4 swap = 0 foreign = debootstrapopts = extlinux = True tarball = apt-mirror = mirror = http://mirror.bytemark.co.uk/debian arch = amd64 distribution = unstable package = custom-package = no-kernel = False kernel-package = enable-dhcp = True root-password = lock-root-password = False customize = hostname = debian user = serial-console = True serial-console-command = /sbin/getty -L ttyS0 115200 vt100 sudo = False owner = squash = configure-apt = False mbr = False grub = True sparse = False pkglist = False no-acpid = False no-update-initramfs = False convert-qcow2 = False dry-run = False 2015-12-30 13:57:28 DEBUG Python version: 2.7.11 (default, Dec 9 2015, 00:29:25) [GCC 5.3.1 20151205] 2015-12-30 13:57:28 INFO Creating disk image 2015-12-30 13:57:28 DEBUG runcmd: ['qemu-img', 'create', '-f', 'raw', 'sid.img', '1000000000'] None {} 2015-12-30 13:57:28 INFO Creating partitions 2015-12-30 13:57:28 DEBUG runcmd: ['parted', '-s', 'sid.img', 'mklabel', 'msdos'] None {} 2015-12-30 13:57:28 DEBUG runcmd: ['parted', '-s', 'sid.img', 'mkpart', 'primary', '0%', '100%'] None {} 2015-12-30 13:57:28 DEBUG runcmd: ['parted', '-s', 'sid.img', 'set', '1', 'boot', 'on'] None {} 2015-12-30 13:57:28 INFO Installing MBR 2015-12-30 13:57:28 DEBUG runcmd: ['install-mbr', 'sid.img'] None {} 2015-12-30 13:57:28 DEBUG runcmd: ['kpartx', '-avs', 'sid.img'] None {} 2015-12-30 13:57:29 INFO Creating filesystem ext4 2015-12-30 13:57:29 DEBUG runcmd: ['mkfs', '-t', 'ext4', '/dev/mapper/loop0p1'] None {} 2015-12-30 13:57:29 DEBUG mkdir /tmp/tmpzUHSMQ 2015-12-30 13:57:29 INFO Mounting /dev/mapper/loop0p1 on /tmp/tmpzUHSMQ 2015-12-30 13:57:29 DEBUG runcmd: ['mount', '/dev/mapper/loop0p1', '/tmp/tmpzUHSMQ'] None {} 2015-12-30 13:57:29 DEBUG mounted /dev/mapper/loop0p1 on /tmp/tmpzUHSMQ 2015-12-30 13:57:29 DEBUG rootdir=/tmp/tmpzUHSMQ rootdev=/dev/mapper/loop0p1 2015-12-30 13:57:29 INFO Debootstrapping unstable [amd64] 2015-12-30 13:57:29 DEBUG debootstrap arguments: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc'] 2015-12-30 13:57:29 DEBUG debootstrap --arch=amd64 --include=linux-image-amd64,acpid,grub-pc unstable /tmp/tmpzUHSMQ http://mirror.bytemark.co.uk/debian 2015-12-30 13:57:29 DEBUG runcmd: ['debootstrap', '--arch=amd64', '--include=linux-image-amd64,acpid,grub-pc', 'unstable', '/tmp/tmpzUHSMQ', 'http://mirror.bytemark.co.uk/debian'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['blkid', '-c', '/dev/null', '-o', 'value', '-s', 'UUID', '/dev/mapper/loop0p1'] None {} 2015-12-30 14:00:31 INFO Give root an empty password 2015-12-30 14:00:31 DEBUG runcmd: ['chroot', '/tmp/tmpzUHSMQ', 'passwd', '-d', 'root'] None {} 2015-12-30 14:00:31 INFO Removing udev persistent cd and net rules 2015-12-30 14:00:31 DEBUG not removing non-existent /tmp/tmpzUHSMQ/etc/udev/rules.d/70-persistent-cd.rules 2015-12-30 14:00:31 DEBUG not removing non-existent /tmp/tmpzUHSMQ/etc/udev/rules.d/70-persistent-net.rules 2015-12-30 14:00:31 INFO Setting up networking 2015-12-30 14:00:31 INFO Disabling systemd predictable interface names 2015-12-30 14:00:31 DEBUG runcmd: ['chroot', '/tmp/tmpzUHSMQ', 'ln', '-s', '/dev/null', 'etc/udev/rules.d/80-net-setup-link.rules'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['chroot', '/tmp/tmpzUHSMQ', 'apt-get', 'clean'] None {} 2015-12-30 14:00:31 DEBUG stdout: 2015-12-30 14:00:31 DEBUG rootdir=/tmp/tmpzUHSMQ rootdev=/dev/mapper/loop0p1 2015-12-30 14:00:31 INFO Configuring grub2 2015-12-30 14:00:31 DEBUG Allowing serial output in grub config /tmp/tmpzUHSMQ/etc/default/grub 2015-12-30 14:00:31 DEBUG Running grub-install with options: /dev/loop0 2015-12-30 14:00:31 DEBUG runcmd: ['mount', '/dev', '-t', 'devfs', '-obind', '/tmp/tmpzUHSMQ/dev'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['mount', '/dev/pts', '-t', 'devpts', '-obind', '/tmp/tmpzUHSMQ/dev/pts'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['mount', '/proc', '-t', 'proc', '-obind', '/tmp/tmpzUHSMQ/proc'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['mount', '/sys', '-t', 'sysfs', '-obind', '/tmp/tmpzUHSMQ/sys'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['chroot', '/tmp/tmpzUHSMQ', 'update-grub'] None {} 2015-12-30 14:00:31 DEBUG runcmd: ['chroot', '/tmp/tmpzUHSMQ', 'grub-install', '/dev/loop0'] None {} 2015-12-30 14:00:32 DEBUG runcmd: ['umount', '/tmp/tmpzUHSMQ/sys'] None {} 2015-12-30 14:00:32 DEBUG runcmd: ['umount', '/tmp/tmpzUHSMQ/proc'] None {} 2015-12-30 14:00:32 DEBUG runcmd: ['umount', '/tmp/tmpzUHSMQ/dev/pts'] None {} 2015-12-30 14:00:32 DEBUG runcmd: ['umount', '/tmp/tmpzUHSMQ/dev'] None {} 2015-12-30 14:00:32 INFO Skipping setting serial console- wheezy only. 2015-12-30 14:00:32 DEBUG run external command: [['dd', 'if=/dev/zero', 'of=/tmp/tmpzUHSMQ/ZEROS', 'bs=1M']] 2015-12-30 14:00:33 DEBUG runcmd: ['rm', '-f', '/tmp/tmpzUHSMQ/ZEROS'] None {} 2015-12-30 14:00:33 INFO Cleaning up 2015-12-30 14:00:33 DEBUG runcmd: ['umount', '/tmp/tmpzUHSMQ'] None {} 2015-12-30 14:00:35 DEBUG runcmd: ['kpartx', '-d', 'sid.img'] None {} 2015-12-30 14:00:35 INFO vmdebootstrap version 1.3 ends normally
[H[J[1;1H[?25l[m[H[J[1;1H[2;25HGNU GRUB version 2.02~beta2-33
[m[4;2H+----------------------------------------------------------------------------+[5;2H|[5;79H|[6;2H|[6;79H|[7;2H|[7;79H|[8;2H|[8;79H|[9;2H|[9;79H|[10;2H|[10;79H|[11;2H|[11;79H|[12;2H|[12;79H|[13;2H|[13;79H|[14;2H|[14;79H|[15;2H|[15;79H|[16;2H|[16;79H|[17;2H+----------------------------------------------------------------------------+[m[18;2H[19;2H[m Use the ^ and v keys to select which entry is highlighted.
Press enter to boot the selected OS, `e' to edit the commands
before booting or `c' for a command-line. [5;80H [7m[5;3H*Debian GNU/Linux [m[5;78H[m[m[6;3H Advanced options for Debian GNU/Linux [m[6;78H[m[m[7;3H [m[7;78H[m[m[8;3H [m[8;78H[m[m[9;3H [m[9;78H[m[m[10;3H [m[10;78H[m[m[11;3H [m[11;78H[m[m[12;3H [m[12;78H[m[m[13;3H [m[13;78H[m[m[14;3H [m[14;78H[m[m[15;3H [m[15;78H[m[m[16;3H [m[16;78H[m[16;80H [5;78H[22;1H The highlighted entry will be executed automatically in 5s. [5;78H[22;1H The highlighted entry will be executed automatically in 4s. [5;78H[22;1H The highlighted entry will be executed automatically in 3s. [5;78H[22;1H The highlighted entry will be executed automatically in 2s. [5;78H[22;1H The highlighted entry will be executed automatically in 1s. [5;78H[22;1H The highlighted entry will be executed automatically in 0s. [5;78H[?25h[H[J[1;1H[H[J[1;1HLoading Linux 4.3.0-1-amd64 ...
Loading initial ramdisk ...
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.3.0-1-amd64 ([email protected]) (gcc version 5.3.1 20151207 (Debian 5.3.1-3) ) #1 SMP Debian 4.3.3-2 (2015-12-17)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.3.0-1-amd64 root=UUID=803e9851-f013-4789-a5dc-bbea7b323c47 ro console=tty0 console=tty1 console=ttyS0,38400n8
[ 0.000000] x86/fpu: Legacy x87 FPU detected.
[ 0.000000] x86/fpu: Using 'lazy' FPU context switches.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007ffe0000-0x000000007fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.8 present.
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: last_pfn = 0x7ffe0 max_arch_pfn = 0x400000000
[ 0.000000] x86/PAT: PAT not supported by CPU.
[ 0.000000] found SMP MP-table at [mem 0x000f6640-0x000f664f] mapped at [ffff8800000f6640]
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] init_memory_mapping: [mem 0x7fc00000-0x7fdfffff]
[ 0.000000] init_memory_mapping: [mem 0x60000000-0x7fbfffff]
[ 0.000000] init_memory_mapping: [mem 0x40000000-0x5fffffff]
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x3fffffff]
[ 0.000000] init_memory_mapping: [mem 0x7fe00000-0x7ffdffff]
[ 0.000000] RAMDISK: [mem 0x3621c000-0x37105fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F6470 000014 (v00 BOCHS )
[ 0.000000] ACPI: RSDT 0x000000007FFE16EE 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACP 0x000000007FFE0C14 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
[ 0.000000] ACPI: DSDT 0x000000007FFE0040 000BD4 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACS 0x000000007FFE0000 000040
[ 0.000000] ACPI: SSDT 0x000000007FFE0C88 0009B6 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: APIC 0x000000007FFE163E 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
[ 0.000000] ACPI: HPET 0x000000007FFE16B6 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007ffdffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffdc000-0x7ffdffff]
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:7ffd4001, primary cpu clock
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000007ffdffff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffdffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdffff]
[ 0.000000] ACPI: PM-Timer IO Port: 0x608
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x80000000-0xfeffbfff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff88007fc00000 s93016 r8192 d29864 u2097152
[ 0.000000] KVM setup async PF for cpu 0
[ 0.000000] kvm-stealtime: cpu 0, msr 7fc0d9c0
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 515945
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.3.0-1-amd64 root=UUID=803e9851-f013-4789-a5dc-bbea7b323c47 ro console=tty0 console=tty1 console=ttyS0,38400n8
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Memory: 2034600K/2096632K available (5656K kernel code, 1048K rwdata, 2772K rodata, 1296K init, 836K bss, 62032K reserved, 0K cma-reserved)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 64.
[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1
[ 0.000000] NR_IRQS:33024 nr_irqs:256 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[ 0.000000] tsc: Detected 2659.810 MHz processor
[ 0.170899] Calibrating delay loop (skipped) preset value.. 5319.62 BogoMIPS (lpj=10639240)
[ 0.172839] pid_max: default: 32768 minimum: 301
[ 0.173908] ACPI: Core revision 20150818
[ 0.176171] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.177688] Security Framework initialized
[ 0.178604] Yama: disabled by default; enable with sysctl kernel.yama.*
[ 0.180050] AppArmor: AppArmor disabled by boot time parameter
[ 0.188016] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.190998] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.193255] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.194704] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.196696] Initializing cgroup subsys io
[ 0.197642] Initializing cgroup subsys memory
[ 0.198647] Initializing cgroup subsys devices
[ 0.199657] Initializing cgroup subsys freezer
[ 0.200682] Initializing cgroup subsys net_cls
[ 0.201705] Initializing cgroup subsys perf_event
[ 0.202784] Initializing cgroup subsys net_prio
[ 0.203902] mce: CPU supports 10 MCE banks
[ 0.204946] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.206186] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.220915] Freeing SMP alternatives memory: 20K (ffffffff81c4c000 - ffffffff81c51000)
[ 0.227932] ftrace: allocating 23531 entries in 92 pages
[ 0.256999] x2apic enabled
[ 0.257887] Switched APIC routing to physical x2apic.
[ 0.259850] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.365813] smpboot: CPU0: Intel QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3)
[ 0.368060] Performance Events: Broken PMU hardware detected, using software events only.
[ 0.369866] Failed to access perfctr msr (MSR c2 is 0)
[ 0.371712] x86: Booted up 1 node, 1 CPUs
[ 0.372626] smpboot: Total of 1 processors activated (5319.62 BogoMIPS)
[ 0.389151] devtmpfs: initialized
[ 0.392698] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.394936] pinctrl core: initialized pinctrl subsystem
[ 0.396334] NET: Registered protocol family 16
[ 0.397527] cpuidle: using governor ladder
[ 0.398432] cpuidle: using governor menu
[ 0.399412] ACPI: bus type PCI registered
[ 0.400284] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.401717] PCI: Using configuration type 1 for base access
[ 0.404139] ACPI: Added _OSI(Module Device)
[ 0.405039] ACPI: Added _OSI(Processor Device)
[ 0.405986] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.406967] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.409138] ACPI: Interpreter enabled
[ 0.409974] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150818/hwxface-580)
[ 0.411958] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150818/hwxface-580)
[ 0.413974] ACPI: (supports S0 S3 S4 S5)
[ 0.414824] ACPI: Using IOAPIC for interrupt routing
[ 0.415864] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.420647] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.421922] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.423207] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[ 0.424567] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 0.427269] acpiphp: Slot [3] registered
[ 0.428159] acpiphp: Slot [4] registered
[ 0.429029] acpiphp: Slot [5] registered
[ 0.429913] acpiphp: Slot [6] registered
[ 0.430786] acpiphp: Slot [7] registered
[ 0.431657] acpiphp: Slot [8] registered
[ 0.432534] acpiphp: Slot [9] registered
[ 0.433401] acpiphp: Slot [10] registered
[ 0.434310] acpiphp: Slot [11] registered
[ 0.435202] acpiphp: Slot [12] registered
[ 0.436106] acpiphp: Slot [13] registered
[ 0.436987] acpiphp: Slot [14] registered
[ 0.437878] acpiphp: Slot [15] registered
[ 0.438762] acpiphp: Slot [16] registered
[ 0.439646] acpiphp: Slot [17] registered
[ 0.440537] acpiphp: Slot [18] registered
[ 0.441418] acpiphp: Slot [19] registered
[ 0.442311] acpiphp: Slot [20] registered
[ 0.443184] acpiphp: Slot [21] registered
[ 0.444078] acpiphp: Slot [22] registered
[ 0.444956] acpiphp: Slot [23] registered
[ 0.445841] acpiphp: Slot [24] registered
[ 0.446722] acpiphp: Slot [25] registered
[ 0.447613] acpiphp: Slot [26] registered
[ 0.448502] acpiphp: Slot [27] registered
[ 0.449390] acpiphp: Slot [28] registered
[ 0.450285] acpiphp: Slot [29] registered
[ 0.451165] acpiphp: Slot [30] registered
[ 0.452060] acpiphp: Slot [31] registered
[ 0.452943] PCI host bridge to bus 0000:00
[ 0.453824] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.454975] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.456341] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.466648] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.468190] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
[ 0.477650] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.479030] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.480318] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.482209] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.483963] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
[ 0.485506] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
[ 0.508310] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[ 0.509885] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[ 0.511403] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[ 0.513732] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[ 0.515622] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[ 0.517270] ACPI: Enabled 16 GPEs in block 00 to 0F
[ 0.518994] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.520294] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.522185] vgaarb: loaded
[ 0.522905] vgaarb: bridge control possible 0000:00:02.0
[ 0.524563] PCI: Using ACPI for IRQ routing
[ 0.526081] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[ 0.527645] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.529056] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[ 0.534576] clocksource: Switched to clocksource kvm-clock
[ 0.561189] pnp: PnP ACPI init
[ 0.562617] pnp: PnP ACPI: found 6 devices
[ 0.577733] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.579691] NET: Registered protocol family 2
[ 0.580953] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.582611] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 0.584125] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.585485] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.586690] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.588690] NET: Registered protocol family 1
[ 0.589855] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.591328] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[ 0.592703] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.594351] Unpacking initramfs...
[ 1.005436] Freeing initrd memory: 15272K (ffff88003621c000 - ffff880037106000)
[ 1.007692] microcode: CPU0 sig=0x663, pf=0x1, revision=0x1
[ 1.009028] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
[ 1.011334] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 1.012659] audit: initializing netlink subsys (disabled)
[ 1.013872] audit: type=2000 audit(1451484926.569:1): initialized
[ 1.015686] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.017072] zbud: loaded
[ 1.017888] VFS: Disk quotas dquot_6.6.0
[ 1.018820] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.020954] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.022655] io scheduler noop registered
[ 1.023530] io scheduler deadline registered
[ 1.024481] io scheduler cfq registered (default)
[ 1.025600] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.026788] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.028262] GHES: HEST is not enabled!
[ 1.029233] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.053806] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.055365] Linux agpgart interface v0.103
[ 1.056118] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
[ 1.056881] AMD IOMMUv2 functionality not available on this system
[ 1.057959] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 1.059683] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.060366] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.061181] mousedev: PS/2 mouse device common for all mice
[ 1.062140] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 1.063491] rtc_cmos 00:00: RTC can wake from S4
[ 1.064326] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[ 1.065198] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[ 1.066058] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.067009] NET: Registered protocol family 10
[ 1.067946] mip6: Mobile IPv6
[ 1.068397] NET: Registered protocol family 17
[ 1.068969] mpls_gso: MPLS GSO support
[ 1.069803] registered taskstats version 1
[ 1.070391] zswap: loaded using pool lzo/zbud
[ 1.071312] rtc_cmos 00:00: setting system clock to 2015-12-30 14:15:26 UTC (1451484926)
[ 1.073219] Freeing unused kernel memory: 1296K (ffffffff81b08000 - ffffffff81c4c000)
[ 1.074257] Write protecting the kernel read-only data: 10240k
[ 1.075358] Freeing unused kernel memory: 476K (ffff880001589000 - ffff880001600000)
[ 1.077067] Freeing unused kernel memory: 1324K (ffff8800018b5000 - ffff880001a00000)
Loading, please wait...
starting version 228
[ 1.085763] random: udevadm urandom read with 2 bits of entropy available
[ 1.113308] SCSI subsystem initialized
[ 1.126311] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 1.127237] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 1.170053] Floppy drive(s): fd0 is 1.44M
[ 1.178528] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[ 1.186880] FDC 0 is a S82078B
[ 1.494631] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
[ 1.495842] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.498788] e1000 0000:00:03.0 ens3: renamed from eth0
[ 1.500511] scsi host0: ata_piix
[ 1.501179] scsi host1: ata_piix
[ 1.501698] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
[ 1.502468] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
[ 1.659700] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[ 1.661217] ata1.00: 1953125 sectors, multi 16: LBA48
[ 1.662860] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[ 1.664800] ata2.00: configured for MWDMA2
[ 1.666697] ata1.00: configured for MWDMA2
[ 1.668427] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5
[ 1.672545] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
[ 1.680516] sd 0:0:0:0: [sda] 1953125 512-byte logical blocks: (1.00 GB/953 MiB)
[ 1.682136] sd 0:0:0:0: [sda] Write Protect is off
[ 1.683206] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.688220] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[ 1.690912] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.694123] sda: sda1
[ 1.695525] sd 0:0:0:0: [sda] Attached SCSI disk
Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Checking root file system ... fsck from util-linux 2.27.1
fsck: error 2 (No such file or directory) while executing fsck.ext4 for /dev/sda1
fsck exited with status code 8
done.
Warning: File system check failed but did not detect errors
[ 2.006865] tsc: Refined TSC clocksource calibration: 2659.801 MHz
[ 2.009715] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2656e7f1076, max_idle_ns: 440795281352 ns
[ 6.814270] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[ 6.883321] systemd[1]: systemd 228 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[ 6.887368] systemd[1]: Detected virtualization kvm.
[ 6.888620] systemd[1]: Detected architecture x86-64.
Welcome to [1mDebian GNU/Linux stretch/sid[0m!
[ 6.895458] systemd[1]: Set hostname to <debian>.
[ 7.004362] systemd[1]: systemd-logind.service: Cannot add dependency job, ignoring: Unit dbus.socket failed to load: No such file or directory.
[ 7.007407] systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
[ 7.011295] systemd[1]: Listening on fsck to fsckd communication Socket.
[[0;32m OK [0m] Listening on fsck to fsckd communication Socket.
[ 7.014261] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[[0;32m OK [0m] Started Dispatch Password Requests to Console Directory Watch.
[ 7.016979] systemd[1]: Reached target Encrypted Volumes.
[[0;32m OK [0m] Reached target Encrypted Volumes.
[ 7.019360] systemd[1]: Created slice System Slice.
[[0;32m OK [0m] Created slice System Slice.
[ 7.021499] systemd[1]: Created slice system-getty.slice.
[[0;32m OK [0m] Created slice system-getty.slice.
[ 7.023771] systemd[1]: Listening on Syslog Socket.
[[0;32m OK [0m] Listening on Syslog Socket.
[ 7.025843] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[[0;32m OK [0m] Listening on /dev/initctl Compatibility Named Pipe.
[ 7.028500] systemd[1]: Reached target Slices.
[[0;32m OK [0m] Reached target Slices.
[ 7.029924] systemd[1]: Listening on Journal Audit Socket.
[[0;32m OK [0m] Listening on Journal Audit Socket.
[ 7.031727] systemd[1]: Reached target Remote File Systems (Pre).
[[0;32m OK [0m] Reached target Remote File Systems (Pre).
[ 7.034123] systemd[1]: Reached target Remote File Systems.
[[0;32m OK [0m] Reached target Remote File Systems.
[ 7.036460] systemd[1]: Listening on Journal Socket (/dev/log).
[[0;32m OK [0m] Listening on Journal Socket (/dev/log).
[ 7.038834] systemd[1]: Listening on Journal Socket.
[[0;32m OK [0m] Listening on Journal Socket.
[ 7.042011] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
[ 7.044457] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 7.048877] systemd[1]: Starting Create list of required static device nodes for the current kernel...
Starting Create list of required st... nodes for the current kernel...
[ 7.060297] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[[0;32m OK [0m] Set up automount Arbitrary Executab...ats File System Automount Point.
[ 7.064881] systemd[1]: Created slice system-serial\x2dgetty.slice.
[[0;32m OK [0m] Created slice system-serial\x2dgetty.slice.
[ 7.075250] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 7.076804] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Started Forward Password Requests to Wall Directory Watch.
[ 7.084356] systemd[1]: Listening on udev Control Socket.
[[0;32m OK [0m] Listening on udev Control Socket.
[ 7.086544] systemd[1]: Listening on udev Kernel Socket.
[[0;32m OK [0m] Listening on udev Kernel Socket.
[ 7.089894] systemd[1]: Mounting Debug File System...
Mounting Debug File System...
[ 7.091704] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 7.095193] systemd[1]: Starting File System Check on Root Device...
Starting File System Check on Root Device...
[ 7.103092] systemd[1]: Reached target Swap.
[[0;32m OK [0m] Reached target Swap.
[ 7.108200] systemd[1]: Mounted Huge Pages File System.
[[0;32m OK [0m] Mounted Huge Pages File System.
[ 7.110161] systemd[1]: Mounted POSIX Message Queue File System.
[[0;32m OK [0m] Mounted POSIX Message Queue File System.
[ 7.117312] systemd[1]: Mounted Debug File System.
[[0;32m OK [0m] Mounted Debug File System.
[ 7.121429] systemd[1]: Started Journal Service.
[[0;32m OK [0m] Started Journal Service.
[[0;32m OK [0m] Started Load Kernel Modules.
[[0;32m OK [0m] Started Create list of required sta...ce nodes for the current kernel.
[[0;32m OK [0m] Started File System Check on Root Device.
Starting Remount Root and Kernel File Systems...
[[0;32m OK [0m] Started File System Check Daemon to report status.
Starting Create Static Device Nodes in /dev...
Starting Apply Kernel Variables...
[ 7.162975] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[[0;32m OK [0m] Started Remount Root and Kernel File Systems.
[[0;32m OK [0m] Started Apply Kernel Variables.
[[0;32m OK [0m] Started Create Static Device Nodes in /dev.
Starting udev Kernel Device Manager...
Starting Flush Journal to Persistent Storage...
Starting udev Coldplug all Devices...
[[0;32m OK [0m] Reached target Local File Systems (Pre).
[[0;32m OK [0m] Reached target Local File Systems.
Starting Raise network interfaces...
Starting Load/Save Random Seed...
[[0;32m OK [0m] Started udev Kernel Device Manager.
[[0;32m OK [0m] Started Load/Save Random Seed.
[ 7.271784] systemd-journald[138]: Received request to flush runtime journal from PID 1
[[0;32m OK [0m] Started Flush Journal to Persistent Storage.
Starting Create Volatile Files and Directories...
[[0;32m OK [0m] Started Create Volatile Files and Directories.
Starting Update UTMP about System Boot/Shutdown...
Starting Network Time Synchronization...
[[0;32m OK [0m] Started udev Coldplug all Devices.[ 7.364579] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 7.409521] [drm] Initialized drm 1.1.0 20060810
[[0;32m OK [0m] Started Network Time Synchronization.
[[0;32m OK [0m] Reached target System Time Synchronized.
[ 7.437840] ACPI: Power Button [PWRF]
[ 7.440369] input: PC Speaker as /devices/platform/pcspkr/input/input3
[[0;32m OK [0m] Started Update UTMP about System Boot/Shutdown.
[ 7.460451] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 7.461606] sr 1:0:0:0: Attached scsi generic sg1 type 5
[[0;32m OK [0m] Reached target System Initialization.
[ 7.476549] parport_pc 00:04: reported by Plug and Play ACPI
[ 7.477845] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[[0;32m OK [0m] Listening on ACPID Listen Socket.
[ 7.487103] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input5
[ 7.489044] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[[0;32m OK [0m] Reached target Sockets.
[[0;32m OK [0m] Started Daily Cleanup of Temporary Directories.
[[0;32m OK [0m] Reached target Timers.
[[0;32m OK [0m] Started ACPI Events Check.
[[0;32m OK [0m] Reached target Paths.
[[0;32m OK [0m] Reached target Basic System.
[ 7.553208] ACPI: No IRQ available for PCI Interrupt Link [LNKS]. Try pci=noacpi or acpi=off
[ 7.555056] piix4_smbus 0000:00:01.3: PCI INT A: no GSI
Starting getty on tty2-tty6 if dbus and logind are not available...
[ 7.565210] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[ 7.577829] ppdev: user-space parallel port driver
[[0;32m OK [0m] Started Regular background program processing daemon.[ 7.584168] [drm] Found bochs VGA, ID 0xb0c0.
[ 7.585146] [drm] Framebuffer size 16384 kB @ 0xfd000000, mmio @ 0xfebf0000.
[ 7.589203] [TTM] Zone kernel: Available graphics memory: 1026494 kiB
[ 7.590603] [TTM] Initializing pool allocator
[ 7.592378] [TTM] Initializing DMA pool allocator
Starting System Logging Service...
Starting Permit User Sessions...
[ 7.602817] fbcon: bochsdrmfb (fb0) is primary device
[ 7.621609] Console: switching to colour frame buffer device 128x48
[ 7.626378] bochs-drm 0000:00:02.0: fb0: bochsdrmfb frame buffer device
[[0;32m OK [0m] Started Permit User Sessions.
[ 7.635463] [drm] Initialized bochs-drm 1.0.0 20130925 for 0000:00:02.0 on minor 0
[[0;32m OK [0m] Started System Logging Service.
[[0;32m OK [0m] Found device /dev/ttyS0.
[[0;32m OK [0m] Started getty on tty2-tty6 if dbus and logind are not available.
[[0;1;31mFAILED[0m] Failed to start Raise network interfaces.
See 'systemctl status networking.service' for details.
[[0;32m OK [0m] Reached target Network.
Starting /etc/rc.local Compatibility...
[[0;32m OK [0m] Started /etc/rc.local Compatibility.
[[0;32m OK [0m] Started Getty on tty3.
[[0;32m OK [0m] Started Getty on tty1.
[[0;32m OK [0m] Started Serial Getty on ttyS0.
[[0;32m OK [0m] Started Getty on tty2.
[[0;32m OK [0m] Started Getty on tty6.
[[0;32m OK [0m] Started Getty on tty5.
[[0;32m OK [0m] Started Getty on tty4.
[[0;32m OK [0m] Reached target Login Prompts.
[[0;32m OK [0m] Reached target Multi-User System.
[ 7.723806] random: nonblocking pool is initialized
[[0;32m OK [0m] Reached target Graphical Interface.
Starting Update UTMP about System Runlevel Changes...
[[0;32m OK [0m] Started Update UTMP about System Runlevel Changes.
Debian GNU/Linux stretch/sid debian ttyS0
debian login: root
Last login: Wed Dec 30 14:02:31 UTC 2015 on ttyS0
Linux debian 4.3.0-1-amd64 #1 SMP Debian 4.3.3-2 (2015-12-17) x86_64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
root@debian:~# ifconfig -a
ens3: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 52:54:00:12:34:56 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
root@debian:~# cat /etc/network/. interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
root@debian:~# cat /etc/network/interfaces.d/setup
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
root@debian:~# ifup eth0
Internet Systems Consortium DHCP Client 4.3.3
Copyright 2004-2015 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Cannot find device "eth0"
Failed to get interface index: No such device
If you think you have received this message due to a bug rather
than a configuration issue please read the section on submitting
bugs on either our web page at www.isc.org or in the README file
before submitting a bug. These pages explain the proper
process and the information we find helpful for debugging..
exiting.
Failed to bring up eth0.
root@debian:~#
root@debian:~# ls -l /etc/udev/rules.d/80-net-setup-link.rules
lrwxrwxrwx 1 root root 9 Dec 30 14:00 /etc/udev/rules.d/80-net-setup-link.rules -> /dev/null
root@debian:~# poweroff
[[0;32m OK [0m] Stopped target Graphical Interface.
[[0;32m OK [0m] Stopped target System Time Synchronized.
[[0;32m OK [0m] Stopped target Multi-User System.
[[0;32m OK [0m] Stopped target Login Prompts.
Stopping Getty on tty6...
Stopping Getty on tty4...
[[0;32m OK [0m] Stopped getty on tty2-tty6 if dbus and logind are not available.
Stopping Getty on tty2...
[[0;32m OK [0m] Reached target Unmount All Filesystems.
Stopping Getty on tty3...
Stopping Getty on tty1...
Stopping System Logging Service...
[[0;32m OK [0m] Stopped target Timers.
[[0;32m OK [0m] Stopped Daily Cleanup of Temporary Directories.
Stopping Getty on tty5...
Stopping Regular background program processing daemon...
Stopping Serial Getty on ttyS0...
[[0;32m OK [0m] Stopped Regular background program processing daemon.
[[0;32m OK [0m] Stopped System Logging Service.
[[0;32m OK [0m] Stopped Getty on tty3.
[[0;32m OK [0m] Stopped Getty on tty1.
[[0;32m OK [0m] Stopped Serial Getty on ttyS0.
[[0;32m OK [0m] Stopped Getty on tty2.
[[0;32m OK [0m] Stopped Getty on tty6.
[[0;32m OK [0m] Stopped Getty on tty5.
[[0;32m OK [0m] Stopped Getty on tty4.
[[0;32m OK [0m] Removed slice system-serial\x2dgetty.slice.
Stopping Permit User Sessions...
[[0;32m OK [0m] Stopped /etc/rc.local Compatibility.
[[0;32m OK [0m] Stopped target Network.
[[0;32m OK [0m] Removed slice system-getty.slice.
[[0;32m OK [0m] Stopped Permit User Sessions.
[[0;32m OK [0m] Stopped target Remote File Systems.
[[0;32m OK [0m] Stopped target Remote File Systems (Pre).
[[0;32m OK [0m] Stopped target Basic System.
[[0;32m OK [0m] Stopped target Paths.
[[0;32m OK [0m] Stopped Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Stopped Dispatch Password Requests to Console Directory Watch.
[[0;32m OK [0m] Stopped ACPI Events Check.
[[0;32m OK [0m] Stopped target Slices.
[[0;32m OK [0m] Stopped target Sockets.
[[0;32m OK [0m] Closed Syslog Socket.
[[0;32m OK [0m] Closed ACPID Listen Socket.
[[0;32m OK [0m] Stopped target System Initialization.
[[0;32m OK [0m] Stopped Apply Kernel Variables.
[[0;32m OK [0m] Stopped Load Kernel Modules.
[[0;32m OK [0m] Stopped target Swap.
Stopping Network Time Synchronization...
Stopping Load/Save Random Seed...
[[0;32m OK [0m] Stopped target Encrypted Volumes.
[[0;32m OK [0m] Stopped Network Time Synchronization.
[[0;32m OK [0m] Stopped Load/Save Random Seed.
[[0;32m OK [0m] Stopped Create Volatile Files and Directories.
[[0;32m OK [0m] Stopped target Local File Systems.
[[0;32m OK [0m] Stopped target Local File Systems (Pre).
[[0;32m OK [0m] Stopped Create Static Device Nodes in /dev.
[[0;32m OK [0m] Stopped Remount Root and Kernel File Systems.
[[0;32m OK [0m] Reached target Shutdown.
[ 51.231301] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 51.235237] systemd-journald[138]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 51.237608] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 51.241162] systemd-shutdown[1]: Unmounting file systems.
[ 51.242232] systemd-shutdown[1]: Remounting '/' read-only with options 'errors=remount-ro,data=ordered'.
[ 51.256496] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,data=ordered
[ 51.258308] systemd-shutdown[1]: Remounting '/' read-only with options 'errors=remount-ro,data=ordered'.
[ 51.260020] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,data=ordered
[ 51.261460] systemd-shutdown[1]: All filesystems unmounted.
[ 51.262023] systemd-shutdown[1]: Deactivating swaps.
[ 51.262626] systemd-shutdown[1]: All swaps deactivated.
[ 51.263145] systemd-shutdown[1]: Detaching loop devices.
[ 51.264617] systemd-shutdown[1]: All loop devices detached.
[ 51.265167] systemd-shutdown[1]: Detaching DM devices.
[ 51.265732] systemd-shutdown[1]: All DM devices detached.
[ 51.268089] systemd-shutdown[1]: Powering off.
[ 51.268713] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 51.269448] sd 0:0:0:0: [sda] Stopping disk
[ 51.271389] ACPI: Preparing to enter system sleep state S5
[ 51.272005] reboot: Power down
gpgv: Signature made Wed Dec 30 09:17:28 2015 GMT using RSA key ID 46925553 gpgv: Good signature from "Debian Archive Automatic Signing Key (7.0/wheezy) <[email protected]>" gpgv: Signature made Wed Dec 30 09:17:28 2015 GMT using RSA key ID 2B90D010 gpgv: Good signature from "Debian Archive Automatic Signing Key (8/jessie) <[email protected]>"
pgpivUz2OsDvl.pgp
Description: OpenPGP digital signature

