Welcome! Log In Create A New Profile

Advanced

Pogoplug E02 Debian Linux Installation Guide

Posted by feas 
Pogoplug E02 Debian Linux Installation Guide
July 23, 2016 10:55AM

bodhi:

As feas has warned below, the procedure in this post installs an old u-boot and old kernel on your Pogo E02, using Jeff's old script. So it will save a lot of time if you go straight to new u-boot and new rootfs installation threads, instead of follow this procedure. However, there are a lot of good information in this procedure and this thread, so I'd like to keep as a reference.

feas:
This is a long and tedious way of upgrading to a current system. You would save a lot of time and bandwidth by using Bodhi's procures for upgrading the rootfs/kernel and u-boot by following the instructions.

http://forum.doozan.com/read.php?3,12381 and http://forum.doozan.com/read.php?2,12096";;.

The above forum links will bring you to the current versions available from Bodhi, who updates them quite regularly.


----------

If you plan to jump straight to the current u-boot and kernel from those forum post you may want to open a text editor and type step by step each command you intend to use to upgrade your system and then you can post them to see if any problems stick out before you begin.

If after you read those instructions a couple of times and still feel really uncomfortable trying them then wait a day and then reread them as it really is quite easy and your more than likely just need a break.


Otherwise, you have been warned, proceed at your peril

"These instructions allow you to run Jeff's old installation script successfully, but it will install a very old version of u-boot and Debian and you will have to upgrade several times as you proceed.

First off there is no way to connect to the stock Pogoplug from a web interface if you have the latest firmware installed. The fine asshats at Pogoplug.com have locked you out with a firmware upgrade and they will provide you no assistance and actually lie on how to do it.

There are plenty of current guides on how to connect to the pogoplug with the cable to enable ssh, here is what I used:

http://geekyschmidt.com/2013/12/17/serial-port-on-the-pogoplug-v2

You can get a cable on Amazon for under $5. Note which color wires are tx, rx. gnd. Power will not be used.

You will need a serial cable to connect to the Pogoplug and then you can edit /etc/init.d/rcS to enable ssh connections.

mount -o remount,rw /
vi /etc/init.d/rcS


Make a line like the telenet option but for dropbear (ssh). Uncomment telnet also if you want that.

You can end here with ssh enabled for the pogoplug and use it as it was designed if you like but I am going to replace the default OS with Debian Linux.

The Doozan website has all the scripts to make this easy but some of the stuff is dated so I will walk you around the problems I encountered.

Firstly you will have to start with installing Lenny on the system. The other versions do not work at this time. The Wheezy version says that the firmware on the Pogoplug is to old. The Squeeze version does not work cause Debian moved the file locations and the script cant find them.

That leaves good OLD outdated, unsupported and vulnerable Lenny.

First you will need to set up a usb drive to be used for the install. You can use gparted or fdisk.

fdisk /dev/sda


Delete any existing partitions and add a primary and swap partition. I had an 8gb usb so I set 7 gb to the primary linux partition and 1gb as a linux swap. Remember to set the primary partition to boot.
Then you can write the changes.

I had problems with the wget command not working which breaks the scripts. I needed to make a link to the busybox wget command to get it to work.

ln -s /usr/sbin/busybox/wget /usr/sbin/wget


We need to install a new uboot to the Pogoplug.

http://projects.doozan.com/uboot/

cd /tmp 
wget http://projects.doozan.com/uboot/install_uboot_mtd0.sh 
chmod +x install_uboot_mtd0.sh 
./install_uboot_mtd0.sh


Now we want to set up fw_setenv

cd /tmp
wget http://jeff.doozan.com/debian/uboot/fw_printenv
wget http://jeff.doozan.com/debian/uboot/fw_env.config
chmod 755 fw_printenv
chmod 644 fw_env.config
mv fw_printenv /usr/sbin
ln -s /usr/sbin/fw_printenv /usr/sbin/fw_setenv
mv fw_env.config /etc


Lets make sure it works

/usr/sbin/fw_printenv


We can setup netconsole so we dont need to have the cable connected if we want.

http://forum.doozan.com/read.php?3,14,14

On Pogoplug

fw_setenv serverip xxx.xxx.xxx.xxx "computer ip address"
fw_setenv ipaddr xxx.xxx.xxx.xxx "pogoplug ip address"
fw_setenv if_netconsole 'ping $serverip'
fw_setenv start_netconsole 'setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;'
fw_setenv preboot 'run if_netconsole start_netconsole'


On computer

nc -l -u -p 6666 &
nc -u xxx.xxx.xxx.xxx 6666 "pogoplug ip address"
killall nc "after you've finished to kill the background nc process"


Lets change the arcnumber to the Pogoplug one

fw_setenv arcnumber 3542


Add your device mac address from bottom of stand

fw_setenv ethaddr xx:xx:xx:xx:xx:xx


The pogoplug does not save the time and date so lets set it.

date MMDDHHMMYYYY


i.e. date 072303252016

Now we can start installing Lenny

http://projects.doozan.com/debian/install_lenny.htm

cd /tmp
wget http://projects.doozan.com/debian/dockstar.debian-lenny.sh
chmod +x dockstar.debian-lenny.sh
./dockstar.debian-lenny.sh


After it has finished reboot

uname -a


I needed to reset the fw_setenv

http://projects.doozan.com/uboot/

cd /tmp 
wget http://projects.doozan.com/uboot/install_uboot_mtd0.sh 
chmod +x install_uboot_mtd0.sh 
./install_uboot_mtd0.sh


Now we want to set up fw_setenv on the usb

cd /tmp
wget http://jeff.doozan.com/debian/uboot/fw_printenv
wget http://jeff.doozan.com/debian/uboot/fw_env.config
chmod 755 fw_printenv
chmod 644 fw_env.config
mv fw_printenv /usr/sbin
ln -s /usr/sbin/fw_printenv /usr/sbin/fw_setenv
mv fw_env.config /etc


Lets make sure it works

/usr/sbin/fw_printenv


Reset the date

date MMDDHHMMYYYY


Change the sources list

vi /etc/apt/sources.list


Comment out all the existing ones and add:

#------------------------------------------------------------------------------#
#                   OFFICIAL LENNY DEBIAN REPOS                    
#------------------------------------------------------------------------------#
deb http://archive.debian.org/debian-archive/debian/ lenny main contrib non-free
deb http://archive.debian.org/debian-security/ lenny/updates main contrib non-free


We need to import the keys, they are expired but nothing we can do about that.

apt-key update


Now update the system.

apt-get update && apt-get upgrade && apt-get dist-upgrade


Lets verify the kernel version so we can verify upgrades for it

uname -a


"Linux debian 2.6.33 #2 PREEMPT Tue Mar 2 14:27:17 MST 2010 armv5tel GNU/Linux"

reboot the system

reboot


uname -a


Reset the date

date MMDDHHMMYYYY


Change the sources list

vi /etc/apt/sources.list


Comment out all the existing ones and add:

#------------------------------------------------------------------------------#
#                   OFFICIAL SQUEEZE DEBIAN REPOS                    
#------------------------------------------------------------------------------#
deb http://archive.debian.org/debian squeeze main


Import the keys again

apt-key update


Now update the system.

apt-get update && apt-get upgrade && apt-get dist-upgrade


Lets verify the kernel version so we can verify upgrades for it

uname -a


reboot

uname -a


"Linux debian 2.6.32-5-kirkwood #1 Tue May 13 17:59:08 UTC 2014 armv5tel GNU/Linux"

Reset the date

date MMDDHHMMYYYY


Change the sources list

vi /etc/apt/sources.list


Comment out all the existing ones and add from https://debgen.simplylinux.ch/generate.php:

#------------------------------------------------------------------------------#
#                   OFFICIAL WHEEZY DEBIAN REPOS                    
#------------------------------------------------------------------------------#

###### Debian Main Repos
deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free 
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free 

###### Debian Update Repos
deb http://security.debian.org/ wheezy/updates main contrib non-free 
deb http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free 
deb-src http://security.debian.org/ wheezy/updates main contrib non-free 
deb-src http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free
deb http://ftp.us.debian.org/debian/ wheezy-backports main contrib non-free


Import the keys again

apt-key update


Now update the system.

apt-get update && apt-get upgrade && apt-get dist-upgrade


Lets verify the kernel version so we can verify upgrades for it

uname -a


reboot

I think I am seeing a pattern here.

Reset the date

date MMDDHHMMYYYY


Change the sources list

vi /etc/apt/sources.list


Comment out all the existing ones and add from https://debgen.simplylinux.ch/generate.php:

#------------------------------------------------------------------------------#
#                   OFFICIAL JESSIE DEBIAN REPOS                    
#------------------------------------------------------------------------------#

###### Debian Main Repos
deb http://ftp.us.debian.org/debian/ jessie main contrib non-free 
deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free 

###### Debian Update Repos
deb http://security.debian.org/ jessie/updates main contrib non-free 
deb http://ftp.us.debian.org/debian/ jessie-proposed-updates main contrib non-free 
deb-src http://security.debian.org/ jessie/updates main contrib non-free 
deb-src http://ftp.us.debian.org/debian/ jessie-proposed-updates main contrib non-free
deb http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free


Import the keys again

apt-key update


Now update the system.

apt-get update && apt-get upgrade && apt-get dist-upgrade


Lets verify the kernel version so we can verify upgrades for it

uname -a


Linux debian 2.6.32-5-kirkwood #1 Tue May 13 17:59:08 UTC 2014 armv5tel GNU/Linux

reboot


Reset the date

date MMDDHHMMYYYY


uname -a


3.2.0-4-kirkwood #1 Debian 3.2.81-1 armv5tel GNU/Linux

You will want to do the same now for the stretch release.

Yay!

You are free to do what you want to use your Pogoplug for.

I am setting up a webserver, vpn, cloud file server, torrent for debian distro sharing.

I had a lot of problems with things breaking from using sources from here and there that I wanted to have it all in one place should others find themselves doing this too.

If you have additions/deletions you think should be made let me know so I can update this.

Much thanks to those who have produced/documented all of this info over time.

### EDIT ###

Add desktop and VNC viewer and change swappiness to 2

http://forum.doozan.com/read.php?2,21784



Edited 5 time(s). Last edit at 10/20/2017 04:02PM by bodhi.
Re: Pogoplug E02 Debian Linux Installation Guide
July 24, 2016 05:00AM
theres a lot of hardwork gone into this - well done and thanks for sharing
Re: Pogoplug E02 Debian Linux Installation Guide
July 30, 2016 12:59AM
Thanks from me too, as this was my first "plug" computer and it's been a joy to tweak and run for a year now.

All I'd add, is the ability to RDP-in to an XFCE desktop and get a GUI, and suggest setting swappiness to 2.

I'd so encourage kids and Linux newbs to have a look at this little 4-watt wonder. Copying the USB stick is so easy it's all failsafe really.

=========
-= Cloud 9 =-
Re: Pogoplug E02 Debian Linux Installation Guide
July 30, 2016 02:20PM
thanks nice addition
rado
Re: Pogoplug E02 Debian Linux Installation Guide
September 29, 2016 01:24PM
Thanks feas,

I needed this. Just set up a new jessie install on my Pogoplug Pink.
Re: Pogoplug E02 Debian Linux Installation Guide
September 29, 2016 07:44PM
rado Wrote:
-------------------------------------------------------
> Thanks feas,
>
> I needed this. Just set up a new jessie install
> on my Pogoplug Pink.


Glad it helped!
Re: Pogoplug E02 Debian Linux Installation Guide
October 04, 2016 02:41PM
Thanks feas,

It's possible to use this instruction for pogoplug B01?



Edited 1 time(s). Last edit at 10/04/2016 02:57PM by asterix.
Re: Pogoplug E02 Debian Linux Installation Guide
October 05, 2016 10:02AM
asterix Wrote:
-------------------------------------------------------
> Thanks feas,
>
> It's possible to use this instruction for pogoplug
> B01?

Asterix,
Sorry for delayed responce. It is Jeff's instructions for installing Debian. All I did was list the steps l needed to get the system running as some of the instructions did not work for me as identified in my post and to have the steps for connecting via serial port in one place. I do not have even a smidgen of the talent the folks who get this stuff running posses. I would think it should work but would want the folks with the talent to verify for you before you did anything.
Re: Pogoplug E02 Debian Linux Installation Guide
October 05, 2016 06:47PM
No. Don't follow Jeff instruction for Pogo B01. You'll brick it.

B01 is an OXNAS plug.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)



Edited 2 time(s). Last edit at 10/05/2016 06:52PM by bodhi.
Re: Pogoplug E02 Debian Linux Installation Guide
October 05, 2016 06:50PM
Here is Uboot for OXNAS:
http://forum.doozan.com/read.php?3,16017

And here is Debian for Oxnas:
http://forum.doozan.com/read.php?2,16044

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug E02 Debian Linux Installation Guide
October 06, 2016 01:25AM
Thanks, Feas!

I tried this instruction on E02, works great, but no "make", "apt-get make" not working.

" apt-get install gcc automake autoconf libtool make" works! :)
Re: Pogoplug E02 Debian Linux Installation Guide
October 06, 2016 01:27AM
I will try it later after my jtag arrived. not possible to do it by SSH?


bodhi Wrote:
-------------------------------------------------------
> Here is Uboot for OXNAS:
> http://forum.doozan.com/read.php?3,16017
>
> And here is Debian for Oxnas:
> http://forum.doozan.com/read.php?2,16044
Re: Pogoplug E02 Debian Linux Installation Guide
October 06, 2016 01:01PM
asterix Wrote:
-------------------------------------------------------
> I will try it later after my jtag arrived. not
> possible to do it by SSH?
>

JTAG not needed. You can use the serial console, and log into stock OS and enable SSH.
Re: Pogoplug E02 Debian Linux Installation Guide
May 29, 2017 04:43AM
installation of Uboot doesn't work here

U-Boot 2011.12 (Feb 20 2012 - 21:21:59)
Pogoplug E02

SoC: Kirkwood 88F6281_A0
DRAM: 256 MiB
WARNING: Caches not enabled
NAND: 128 MiB



If you agree, type 'ok' and press ENTER to continue: ok
# checking for /usr/sbin/nandwrite...
# checking for /usr/sbin/nanddump...
# checking for /usr/sbin/flash_erase...
# checking for /usr/sbin/fw_printenv...
# checking for /etc/fw_env.config...

# Validating existing uBoot...
Block size 131072, page size 2048, OOB size 64
Dumping data starting at 0x00000000 and ending at 0x00080000...
Connecting to jeff.doozan.com (50.116.34.13:80)
wget: not an http or ftp url: https://jeff.doozan.com/uboot/valid-uboot.md5
grep: /tmp/valid-uboot.md5: No such file or directory
## Unknown uBoot detected on mtd0: e84a5fd0a0205bb79aed07c3c6fbd145
##
## The installer could not detect the version of your current uBoot
## This may happen if you have installed a different uBoot on
## /dev/mtd0 or if you have bad blocks on /dev/mtd0
##
## If you have bad blocks on mtd0, you should not try to install uBoot.
##
## Installation cancelled.
rm: cannot remove '/tmp/valid-uboot.md5': No such file or directory
Re: Pogoplug E02 Debian Linux Installation Guide
May 29, 2017 05:43AM
a simple

wget http://projects.doozan.com/uboot/valid-uboot.md5

helped me out

LOL


lille Wrote:
-------------------------------------------------------
> installation of Uboot doesn't work here
>
> U-Boot 2011.12 (Feb 20 2012 - 21:21:59)
> Pogoplug E02
>
> SoC: Kirkwood 88F6281_A0
> DRAM: 256 MiB
> WARNING: Caches not enabled
> NAND: 128 MiB

>
>
> If you agree, type 'ok' and press ENTER to continu
> e: ok
> # checking for /usr/sbin/nandwrite...
> # checking for /usr/sbin/nanddump...
> # checking for /usr/sbin/flash_erase...
> # checking for /usr/sbin/fw_printenv...
> # checking for /etc/fw_env.config...
>
> # Validating existing uBoot...
> Block size 131072, page size 2048, OOB size 64
> Dumping data starting at 0x00000000 and ending at
> 0x00080000...
> Connecting to jeff.doozan.com (50.116.34.13:80)
> wget: not an http or ftp url: https://jeff.doozan.
> com/uboot/valid-uboot.md5
> grep: /tmp/valid-uboot.md5: No such file or direct
> ory
> ## Unknown uBoot detected on mtd0: e84a5fd0a0205bb
> 79aed07c3c6fbd145
> ##
> ## The installer could not detect the version of y
> our current uBoot
> ## This may happen if you have installed a differe
> nt uBoot on
> ## /dev/mtd0 or if you have bad blocks on /dev/mtd
> 0
> ##
> ## If you have bad blocks on mtd0, you should not
> try to install uBoot.
> ##
> ## Installation cancelled.
> rm: cannot remove '/tmp/valid-uboot.md5': No such
> file or directory
Re: Pogoplug E02 Debian Linux Installation Guide
May 30, 2017 09:09PM
lille Wrote:
-------------------------------------------------------
> a simple
>
> wget http://projects.doozan.com/uboot/valid-uboot.
> md5
>
> helped me out
>
> LOL
>
>
> lille Wrote:
> --------------------------------------------------
> -----
> > installation of Uboot doesn't work here
> >
> > U-Boot 2011.12 (Feb 20 2012 - 21:21:59)
> > Pogoplug E02
> >
> > SoC: Kirkwood 88F6281_A0
> > DRAM: 256 MiB
> > WARNING: Caches not enabled
> > NAND: 128 MiB

> >
> >
> > If you agree, type 'ok' and press ENTER to conti
> nu
> > e: ok
> > # checking for /usr/sbin/nandwrite...
> > # checking for /usr/sbin/nanddump...
> > # checking for /usr/sbin/flash_erase...
> > # checking for /usr/sbin/fw_printenv...
> > # checking for /etc/fw_env.config...
> >
> > # Validating existing uBoot...
> > Block size 131072, page size 2048, OOB size 64
> > Dumping data starting at 0x00000000 and ending a
> t
> > 0x00080000...
> > Connecting to jeff.doozan.com (50.116.34.13:80)
> > wget: not an http or ftp url: https://jeff.dooza
> n.
> > com/uboot/valid-uboot.md5
> > grep: /tmp/valid-uboot.md5: No such file or dire
> ct
> > ory
> > ## Unknown uBoot detected on mtd0: e84a5fd0a0205
> bb
> > 79aed07c3c6fbd145
> > ##
> > ## The installer could not detect the version of
> y
> > our current uBoot
> > ## This may happen if you have installed a diffe
> re
> > nt uBoot on
> > ## /dev/mtd0 or if you have bad blocks on /dev/m
> td
> > 0
> > ##
> > ## If you have bad blocks on mtd0, you should no
> t
> > try to install uBoot.
> > ##
> > ## Installation cancelled.
> > rm: cannot remove '/tmp/valid-uboot.md5': No suc
> h
> > file or directory

Glad you were able to see the difference with http vs https and work it out. If I remember correctly there was some discussion that the old wget can't handle https and I have no control over the domain nor the script.
Re: Pogoplug E02 Debian Linux Installation Guide
October 18, 2017 03:50PM
I've been running through these instructions with my Pogoplug E02 - a few minor bumps in the road but now I've run into something that seems more serious (this happens after I add wheezy repos, update keys & update the system)

Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
 initscripts : Recommends: psmisc but it is not going to be installed
               Breaks: nfs-common (< 1:1.2.5-3) but 1:1.2.2-4squeeze2 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

I'm officially out of my depth here. I hunted around a little, and found this link

...but I don't know what to do or whether this is something I can ignore...



Edited 1 time(s). Last edit at 10/18/2017 03:53PM by huge.
Re: Pogoplug E02 Debian Linux Installation Guide
October 18, 2017 04:18PM
your doing this from an previously unmolested E-02? didn't it prompt to run apt-get -f install? or try aptitude and see the resolver recommendation.
Re: Pogoplug E02 Debian Linux Installation Guide
October 18, 2017 11:30PM
feas Wrote:
-------------------------------------------------------
> your doing this from an previously unmolested
> E-02? didn't it prompt to run apt-get -f install?
> or try aptitude and see the resolver
> recommendation.

I believe I may have secured SSH access on my E02 a couple of years ago, but I think that's the most it's been molested. I could be wrong though - I may have gone some distance towards installing Arch on a USB stick.

I don't understand your second question - at what point would it have possibly prompted to run "apt-get -f install"? I don't remember anything like that, but there were a lot of prompts where I just answered Y or whatever seemed like the sensible choice.

To be clear, this error only happened after installing Lenny, reboot, install Squeeze, reboot, start to install Wheezy. All of that went without major incident (though I'm ignorant enough that I might not have known if something was wrong).

Speaking of my ignorance, can you give a total-noob instruction for "try aptitude and see the resolver recommendation"?

Thanks very much for your quick reply
-huge
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 12:40AM
huge Wrote:
-------------------------------------------------------
> feas Wrote:
> -------------------------------------------------------
> > your doing this from an previously unmolested
> > E-02? didn't it prompt to run apt-get -f
> install?
> > or try aptitude and see the resolver
> > recommendation.
>
> I believe I may have secured SSH access on my E02
> a couple of years ago, but I think that's the most
> it's been molested. I could be wrong though - I
> may have gone some distance towards installing
> Arch on a USB stick.
>
was guessing that a version from a previous install was causing issues.

> I don't understand your second question - at what
> point would it have possibly prompted to run
> "apt-get -f install"? I don't remember anything
> like that, but there were a lot of prompts where I
> just answered Y or whatever seemed like the
> sensible choice.
>
usually after an error as you mentioned it will say to run "sudo apt-get -f install" to force the install

> To be clear, this error only happened after
> installing Lenny, reboot, install Squeeze, reboot,
> start to install Wheezy. All of that went without
> major incident (though I'm ignorant enough that I
> might not have known if something was wrong).
>

I was wondering if the location for wheezy may have changed (a problem I experienced previously) since stretch was released but on second thought that should have shown a different error.

> Speaking of my ignorance, can you give a
> total-noob instruction for "try aptitude and see
> the resolver recommendation"?
>

in a terminal window type "sudo aptitude" it has more options and a dos-like menu with an option to try and resolve issues. May have been easier than you uninstalling any/all problematic packages and rerunning "sudo apt-get update" and sudo apt-get upgrade".

> Thanks very much for your quick reply
> -huge

Are you still stuck or has it been resolved?

make sure all previous lines in the sources.list have been commented out with "#" at the beginning of each entry and only the new version is uncommented and states the version "wheezy" and not "stable".
if the file is good run "sudo apt-get remove (package)" and try update and upgrade again.

The aptitude program may fix it easier if the sources.list file is good though.
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 01:11AM
feas Wrote:
-------------------------------------------------------
> huge Wrote:
> -------------------------------------------------------
> > feas Wrote:
> >
> -------------------------------------------------------
...
> >
> usually after an error as you mentioned it will
> say to run "sudo apt-get -f install" to force the
> install
>

Yeah, not for me - the lines I posted were the very last lines on my console.

...
>
> in a terminal window type "sudo aptitude" it has
> more options and a dos-like menu with an option to
> try and resolve issues. May have been easier than
> you uninstalling any/all problematic packages and
> rerunning "sudo apt-get update" and sudo apt-get
> upgrade".
>
I ran aptitude but I don't exactly know what I'm looking at. When I went to the Resolver menu it listed 3 packages to be kept. I applied the Resolver solution but it just doesn't seem like that was my problem. I'll do some research to see if I can get a better grasp of how to use aptitude.


> Are you still stuck or has it been resolved?
>
> make sure all previous lines in the sources.list
> have been commented out with "#" at the beginning
> of each entry and only the new version is
> uncommented and states the version "wheezy" and
> not "stable".
> if the file is good run "sudo apt-get remove
> (package)" and try update and upgrade again.
>
> The aptitude program may fix it easier if the
> sources.list file is good though.

The only uncommented lines in my sources.list are

#------------------------------------------------------------------------------#
#                   OFFICIAL WHEEZY DEBIAN REPOS
#------------------------------------------------------------------------------#

###### Debian Main Repos
deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free

###### Debian Update Repos
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy-proposed-updates main contrib non-free

Does that look ok?

And sorry again for my ignorance, but what package should I apt-get remove?

Thanks again and again for helping - I realize I've got just enough knowledge of this stuff to get myself into trouble and not enough to get out.

-huge
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 03:10AM
huge Wrote:
-------------------------------------------------------
> feas Wrote:
> -------------------------------------------------------
> > huge Wrote:
> >
> -------------------------------------------------------
> > > feas Wrote:
> > >
> >
> -------------------------------------------------------
> ...
> > >
> > usually after an error as you mentioned it will
> > say to run "sudo apt-get -f install" to force
> the
> > install
> >
>
> Yeah, not for me - the lines I posted were the
> very last lines on my console.
>
> ...
> >
> > in a terminal window type "sudo aptitude" it
> has
> > more options and a dos-like menu with an option
> to
> > try and resolve issues. May have been easier
> than
> > you uninstalling any/all problematic packages
> and
> > rerunning "sudo apt-get update" and sudo
> apt-get
> > upgrade".
> >
> I ran aptitude but I don't exactly know what I'm
> looking at. When I went to the Resolver menu it
> listed 3 packages to be kept. I applied the
> Resolver solution but it just doesn't seem like
> that was my problem. I'll do some research to see
> if I can get a better grasp of how to use
> aptitude.
>
>
> > Are you still stuck or has it been resolved?
> >
> > make sure all previous lines in the
> sources.list
> > have been commented out with "#" at the
> beginning
> > of each entry and only the new version is
> > uncommented and states the version "wheezy" and
> > not "stable".
> > if the file is good run "sudo apt-get remove
> > (package)" and try update and upgrade again.
> >
> > The aptitude program may fix it easier if the
> > sources.list file is good though.
>
> The only uncommented lines in my sources.list are
>
>
> #------------------------------------------------------------------------------#
> #                   OFFICIAL WHEEZY DEBIAN REPOS
> #------------------------------------------------------------------------------#
> 
> ###### Debian Main Repos
> deb http://ftp.us.debian.org/debian/ wheezy main
> contrib non-free
> deb-src http://ftp.us.debian.org/debian/ wheezy
> main contrib non-free
> 
> ###### Debian Update Repos
> deb http://security.debian.org/ wheezy/updates
> main contrib non-free
> deb http://ftp.us.debian.org/debian/
> wheezy-proposed-updates main contrib non-free
> deb-src http://security.debian.org/ wheezy/updates
> main contrib non-free
> deb-src http://ftp.us.debian.org/debian/
> wheezy-proposed-updates main contrib non-free
> 
>
>
> Does that look ok?
>

yep looks good

> And sorry again for my ignorance, but what package
> should I apt-get remove?
>

list the output from the update and upgrade commands in entirety.


> Thanks again and again for helping - I realize
> I've got just enough knowledge of this stuff to
> get myself into trouble and not enough to get
> out.
>

We all start there and I know I am not out of the woods yet :)

Also, you may want to check Bodhi's rootfs/kernel and newer u-boot on another usb as it may be faster getting to the latest and greatest and really isn't that difficult, it just looks it since there is so much good detailed instruction.

rootfs/kernel

u-boot

Either way you want to go is fine.

> -huge
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 11:41AM
>
> list the output from the update and upgrade
> commands in entirety.
>

I'm not sure how to do that. My terminal window only has the last 100-ish lines saved, and because I have 3 other Putty/SSH windows open, my putty.log file is from another more recent screen. I have the term.log file which I think covers everything from the last reboot, but looking at it doesn't seem as complete/helpful (for example it doesn't have the final Error messages I posted).

Here are all the lines that haven't fallen off my screen (of course only a small fraction of what scrolled past):

Installing new version of config file /etc/updatedb.conf ...
Setting up ncurses-term (5.9-10) ...
Setting up patch (2.6.1-3) ...
Setting up procmail (3.22-20+deb7u1) ...
Setting up python-support (1.0.15) ...
Setting up texinfo (4.13a.dfsg.1-10) ...
Setting up time (1.7-24) ...
Setting up ucf (3.0025+nmu3) ...
Setting up wamerican (7.1-1) ...
Setting up whois (5.1.1~deb7u1) ...
Setting up apt-xapian-index (0.45) ...
Installing new version of config file /etc/dbus-1/system.d/org.debian.AptXapianIndex.conf ...
Installing new version of config file /etc/cron.weekly/apt-xapian-index ...
Setting up busybox (1:1.20.0-7) ...
Setting up dictionaries-common (1.12.11) ...
Installing new version of config file /etc/emacs/site-start.d/50dictionaries-common.el ...
Setting up ed (1.6-2) ...
Setting up libklibc (2.0.1-3.1) ...
Setting up klibc-utils (2.0.1-3.1) ...
Setting up initramfs-tools (0.109.1) ...
Installing new version of config file /etc/initramfs-tools/initramfs.conf ...
Installing new version of config file /etc/kernel/postrm.d/initramfs-tools ...
Installing new version of config file /etc/kernel/postinst.d/initramfs-tools ...
update-initramfs: deferring update (trigger activated)
Setting up linux-base (3.5) ...
Setting up flash-kernel (3.3+deb7u2) ...
Setting up gnupg-curl (1.4.12-7+deb7u9) ...
Setting up installation-report (2.49) ...
Setting up iso-codes (3.41-1) ...
Setting up libconsole (1:0.2.3dbs-70) ...
Setting up console-tools (1:0.2.3dbs-70) ...
[info] Setting console screen modes and fonts.
cannot (un)set powersave mode
Setting up libgeoip1 (1.4.8+dfsg-3) ...
Setting up libnfnetlink0 (1.0.0-1.1) ...
Setting up lockfile-progs (0.1.17) ...
Setting up lzma (9.22-2) ...
update-alternatives: using /usr/bin/lzmp to provide /usr/bin/lzma (lzma) in auto mode.
Setting up update-inetd (4.43) ...
Setting up tcpd (7.6.q-24) ...
Setting up openbsd-inetd (0.20091229-2) ...
[ ok ] Stopping internet superserver: inetd.
[info] Not starting internet superserver: no services enabled.
Setting up python-apt-common (0.8.8.2) ...
Setting up python-central (0.6.17) ...
Setting up linux-image-2.6-kirkwood (3.2+46) ...
Setting up makedev (2.3.1-92) ...
/run/udev or .udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.
/run/udev or .udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.
/run/udev or .udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.
Processing triggers for python-support ...
Processing triggers for dictionaries-common ...
Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-2.6.32-5-kirkwood
W: mdadm: /etc/mdadm/mdadm.conf defines no arrays.
W: mdadm: no arrays defined in configuration file.
flash-kernel: installing version 2.6.32-5-kirkwood
Generating kernel u-boot image... done.
Taking backup of uImage.
Installing new uImage.
Generating initramfs u-boot image... done.
Taking backup of uInitrd.
Installing new uInitrd.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
 initscripts : Recommends: psmisc but it is not going to be installed
               Breaks: nfs-common (< 1:1.2.5-3) but 1:1.2.2-4squeeze2 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.




Should I just run the update/upgrade again & make sure to capture all the output?


>
> Also, you may want to check Bodhi's rootfs/kernel
> and newer u-boot on another usb as it may be
> faster getting to the latest and greatest and
> really isn't that difficult, it just looks it
> since there is so much good detailed instruction.
>
> rootfs/kernel
>
> u-boot
>
> Either way you want to go is fine.
>

I guess I thought there was some benefit/need to go through all the intermediate steps - are you saying I should be able to just skip right to the current versions?
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 12:02PM
I went ahead and ran the update / upgrade / dist-upgrade commands again, this time separately, but of course now that most of the work has been done there's not so much output to look at. But just in case it's helpful:

debian:~# apt-get update
Hit http://ftp.us.debian.org wheezy Release.gpg
Hit http://ftp.us.debian.org/debian/ wheezy/contrib Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/contrib Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy/main Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/main Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy/non-free Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/non-free Translation-en_US
Get:1 http://ftp.us.debian.org wheezy-proposed-updates Release.gpg [1,601 B]
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/contrib Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/contrib Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/main Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/main Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/non-free Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/non-free Translation-en_US
Hit http://ftp.us.debian.org wheezy Release
Get:2 http://ftp.us.debian.org wheezy-proposed-updates Release [175 kB]
Hit http://ftp.us.debian.org wheezy/main Sources
Hit http://ftp.us.debian.org wheezy/contrib Sources
Hit http://ftp.us.debian.org wheezy/non-free Sources
Hit http://ftp.us.debian.org wheezy/main armel Packages
Hit http://ftp.us.debian.org wheezy/contrib armel Packages
Hit http://ftp.us.debian.org wheezy/non-free armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/main Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/contrib Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/non-free Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/main armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/contrib armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/non-free armel Packages
Get:3 http://security.debian.org wheezy/updates Release.gpg [1,554 B]
Hit http://security.debian.org/ wheezy/updates/contrib Translation-en
Ign http://security.debian.org/ wheezy/updates/contrib Translation-en_US
Hit http://security.debian.org/ wheezy/updates/main Translation-en
Ign http://security.debian.org/ wheezy/updates/main Translation-en_US
Hit http://security.debian.org/ wheezy/updates/non-free Translation-en
Ign http://security.debian.org/ wheezy/updates/non-free Translation-en_US
Get:4 http://security.debian.org wheezy/updates Release [39.0 kB]
Get:5 http://security.debian.org wheezy/updates/main Sources [318 kB]
Hit http://security.debian.org wheezy/updates/contrib Sources
Hit http://security.debian.org wheezy/updates/non-free Sources
Get:6 http://security.debian.org wheezy/updates/main armel Packages [539 kB]
Hit http://security.debian.org wheezy/updates/contrib armel Packages
Hit http://security.debian.org wheezy/updates/non-free armel Packages
Fetched 1,074 kB in 8s (131 kB/s)
Reading package lists... Done




debian:~# apt-get upgrade  |& tee upgrade-output.txt
Reading package lists... Done
Building dependency tree...
Reading state information... Done
The following packages have been kept back:
  apt apt-utils aptitude base-files bash bind9-host bsdmainutils bzip2
  ca-certificates coreutils dmsetup dnsutils dpkg e2fslibs e2fsprogs exim4
  exim4-base exim4-config exim4-daemon-light file gcc-4.4-base gettext-base
  iamerican ibritish ifupdown info initscripts iproute iptables iputils-ping
  ispell less libacl1 libapt-pkg-perl libattr1 libblkid1 libbsd0 libbz2-1.0
  libcap2 libcomerr2 libcurl3-gnutls libcwidget3 libdevmapper1.02.1 libedit2
  libexpat1 libgcc1 libgcrypt11 libgdbm3 libgnutls26 libgpg-error0 libgpgme11
  libgpm2 libgssapi-krb5-2 libgssglue1 libidn11 libk5crypto3 libkeyutils1
  libkrb5-3 libkrb5support0 libldap-2.4-2 liblocale-gettext-perl liblockfile1
  libmagic1 libncurses5 libncursesw5 libnewt0.52 libnfsidmap2 libpam-modules
  libpam0g libpci3 libpcre3 libpopt0 libreadline5 libreadline6 librpcsecgss3
  libsasl2-2 libsasl2-modules libselinux1 libsepol1 libsigc++-2.0-0c2a
  libslang2 libsqlite3-0 libss2 libstdc++6 libtasn1-3 libtext-charwidth-perl
  libtext-iconv-perl libudev0 libusb-0.1-4 libuuid-perl libuuid1 libwrap0
  libxapian22 libxml2 linux-image-kirkwood lsb-release man-db mdadm
  module-init-tools mount mutt nano ncurses-bin netbase nfs-common ntpdate
  openssh-client openssh-server openssl passwd pciutils perl perl-base
  perl-modules procps python python-apt python-chardet python-debian
  python-minimal python-reportbug python-xapian python2.6 python2.6-minimal
  reportbug rsyslog sysvinit tasksel uboot-mkimage udev usbutils util-linux
  vim-common vim-tiny w3m wget whiptail xz-utils zlib1g
0 upgraded, 0 newly installed, 0 to remove and 139 not upgraded.


debian:~#
debian:~# apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
 initscripts : Recommends: psmisc but it is not going to be installed
               Breaks: nfs-common (< 1:1.2.5-3) but 1:1.2.2-4squeeze2 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
debian:~#

Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 12:04PM
huge Wrote:
-------------------------------------------------------
> >
> > list the output from the update and upgrade
> > commands in entirety.
> >
>
> I'm not sure how to do that. My terminal window
> only has the last 100-ish lines saved, and because
> I have 3 other Putty/SSH windows open, my
> putty.log file is from another more recent screen.
> I have the term.log file which I think covers
> everything from the last reboot, but looking at it
> doesn't seem as complete/helpful (for example it
> doesn't have the final Error messages I posted).
>

No worries just wanted to see if anything else was erroring.

> Here are all the lines that haven't fallen off my
> screen (of course only a small fraction of what
> scrolled past):
>
>
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Failed
> The following packages have unmet dependencies:
>  initscripts : Recommends: psmisc but it is not
> going to be installed
>                Breaks: nfs-common (< 1:1.2.5-3)
> but 1:1.2.2-4squeeze2 is to be installed
> E: Error, pkgProblemResolver::Resolve generated
> breaks, this may be caused by held packages.
>
>
>

Here "sudo apt-get remove nfs-common" and rerun update an upgrade

>
>
> Should I just run the update/upgrade again & make
> sure to capture all the output?
>
>
> >
> > Also, you may want to check Bodhi's
> rootfs/kernel
> > and newer u-boot on another usb as it may be
> > faster getting to the latest and greatest and
> > really isn't that difficult, it just looks it
> > since there is so much good detailed
> instruction.
> >
> >
> rootfs/kernel
> >
> >
> u-boot
> >
> > Either way you want to go is fine.
> >
>
> I guess I thought there was some benefit/need to
> go through all the intermediate steps - are you
> saying I should be able to just skip right to the
> current versions?

yes. I probably should have tried to make it a bit clearer in my opening statement.

You can do it on another usb if you have one to save where you are here in-case you want to go continue this way also.

If you want to read through his post and type out all the commands to do it and post in a file i/we can look it over before you start if you like.
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 12:12PM
huge Wrote:
-------------------------------------------------------
> >
> > list the output from the update and upgrade
> > commands in entirety.
> >
>
> I'm not sure how to do that. My terminal window
> only has the last 100-ish lines saved, and because
> I have 3 other Putty/SSH windows open, my
> putty.log file is from another more recent screen.
> I have the term.log file which I think covers
> everything from the last reboot, but looking at it
> doesn't seem as complete/helpful (for example it
> doesn't have the final Error messages I posted).
>
> Here are all the lines that haven't fallen off my
> screen (of course only a small fraction of what
> scrolled past):
>
>
> Installing new version of config file
> /etc/updatedb.conf ...
> Setting up ncurses-term (5.9-10) ...
> Setting up patch (2.6.1-3) ...
> Setting up procmail (3.22-20+deb7u1) ...
> Setting up python-support (1.0.15) ...
> Setting up texinfo (4.13a.dfsg.1-10) ...
> Setting up time (1.7-24) ...
> Setting up ucf (3.0025+nmu3) ...
> Setting up wamerican (7.1-1) ...
> Setting up whois (5.1.1~deb7u1) ...
> Setting up apt-xapian-index (0.45) ...
> Installing new version of config file
> /etc/dbus-1/system.d/org.debian.AptXapianIndex.conf
> ...
> Installing new version of config file
> /etc/cron.weekly/apt-xapian-index ...
> Setting up busybox (1:1.20.0-7) ...
> Setting up dictionaries-common (1.12.11) ...
> Installing new version of config file
> /etc/emacs/site-start.d/50dictionaries-common.el
> ...
> Setting up ed (1.6-2) ...
> Setting up libklibc (2.0.1-3.1) ...
> Setting up klibc-utils (2.0.1-3.1) ...
> Setting up initramfs-tools (0.109.1) ...
> Installing new version of config file
> /etc/initramfs-tools/initramfs.conf ...
> Installing new version of config file
> /etc/kernel/postrm.d/initramfs-tools ...
> Installing new version of config file
> /etc/kernel/postinst.d/initramfs-tools ...
> update-initramfs: deferring update (trigger
> activated)
> Setting up linux-base (3.5) ...
> Setting up flash-kernel (3.3+deb7u2) ...
> Setting up gnupg-curl (1.4.12-7+deb7u9) ...
> Setting up installation-report (2.49) ...
> Setting up iso-codes (3.41-1) ...
> Setting up libconsole (1:0.2.3dbs-70) ...
> Setting up console-tools (1:0.2.3dbs-70) ...
> [info] Setting console screen modes and fonts.
> cannot (un)set powersave mode
> Setting up libgeoip1 (1.4.8+dfsg-3) ...
> Setting up libnfnetlink0 (1.0.0-1.1) ...
> Setting up lockfile-progs (0.1.17) ...
> Setting up lzma (9.22-2) ...
> update-alternatives: using /usr/bin/lzmp to
> provide /usr/bin/lzma (lzma) in auto mode.
> Setting up update-inetd (4.43) ...
> Setting up tcpd (7.6.q-24) ...
> Setting up openbsd-inetd (0.20091229-2) ...
> [ ok ] Stopping internet superserver: inetd.
> [info] Not starting internet superserver: no
> services enabled.
> Setting up python-apt-common (0.8.8.2) ...
> Setting up python-central (0.6.17) ...
> Setting up linux-image-2.6-kirkwood (3.2+46) ...
> Setting up makedev (2.3.1-92) ...
> /run/udev or .udevdb or .udev presence implies
> active udev.  Aborting MAKEDEV invocation.
> /run/udev or .udevdb or .udev presence implies
> active udev.  Aborting MAKEDEV invocation.
> /run/udev or .udevdb or .udev presence implies
> active udev.  Aborting MAKEDEV invocation.
> Processing triggers for python-support ...
> Processing triggers for dictionaries-common ...
> Processing triggers for initramfs-tools ...
> update-initramfs: Generating
> /boot/initrd.img-2.6.32-5-kirkwood
> W: mdadm: /etc/mdadm/mdadm.conf defines no
> arrays.
> W: mdadm: no arrays defined in configuration
> file.
> flash-kernel: installing version
> 2.6.32-5-kirkwood
> Generating kernel u-boot image... done.
> Taking backup of uImage.
> Installing new uImage.
> Generating initramfs u-boot image... done.
> Taking backup of uInitrd.
> Installing new uInitrd.
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Calculating upgrade... Failed
> The following packages have unmet dependencies:
>  initscripts : Recommends: psmisc but it is not
> going to be installed
>                Breaks: nfs-common (< 1:1.2.5-3)
> but 1:1.2.2-4squeeze2 is to be installed
> E: Error, pkgProblemResolver::Resolve generated
> breaks, this may be caused by held packages.
>
>
>
>
>
> Should I just run the update/upgrade again & make
> sure to capture all the output?
>
>
> >
> > Also, you may want to check Bodhi's
> rootfs/kernel
> > and newer u-boot on another usb as it may be
> > faster getting to the latest and greatest and
> > really isn't that difficult, it just looks it
> > since there is so much good detailed
> instruction.
> >
> >
> rootfs/kernel
> >
> >
> u-boot
> >
> > Either way you want to go is fine.
> >
>
> I guess I thought there was some benefit/need to
> go through all the intermediate steps - are you
> saying I should be able to just skip right to the
> current versions?


I am thinking maybe backports needs to be added to your sources.list file so please add:

deb http://ftp.us.debian.org/debian/ wheezy-backports main contrib non-free

and re-run update/upgrade.
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 01:26PM
I followed both of your suggestions (removing nfs-common & adding the backports line to sources.list)

Output from update:
debian:~# apt-get update
Get:1 http://security.debian.org wheezy/updates Release.gpg [1,554 B]
Hit http://security.debian.org/ wheezy/updates/contrib Translation-en
Ign http://security.debian.org/ wheezy/updates/contrib Translation-en_US
Hit http://security.debian.org/ wheezy/updates/main Translation-en
Ign http://security.debian.org/ wheezy/updates/main Translation-en_US
Hit http://security.debian.org/ wheezy/updates/non-free Translation-en
Ign http://security.debian.org/ wheezy/updates/non-free Translation-en_US
Get:2 http://security.debian.org wheezy/updates Release [39.0 kB]
Hit http://security.debian.org wheezy/updates/main Sources
Hit http://security.debian.org wheezy/updates/contrib Sources
Hit http://security.debian.org wheezy/updates/non-free Sources
Hit http://security.debian.org wheezy/updates/main armel Packages
Hit http://security.debian.org wheezy/updates/contrib armel Packages
Hit http://security.debian.org wheezy/updates/non-free armel Packages
Hit http://ftp.us.debian.org wheezy Release.gpg
Hit http://ftp.us.debian.org/debian/ wheezy/contrib Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/contrib Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy/main Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/main Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy/non-free Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy/non-free Translation-en_US
Hit http://ftp.us.debian.org wheezy-proposed-updates Release.gpg
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/contrib Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/contrib Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/main Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/main Translation-en_US
Hit http://ftp.us.debian.org/debian/ wheezy-proposed-updates/non-free Translation-en
Ign http://ftp.us.debian.org/debian/ wheezy-proposed-updates/non-free Translation-en_US
Get:3 http://ftp.us.debian.org wheezy-backports Release.gpg [1,601 B]
Get:4 http://ftp.us.debian.org/debian/ wheezy-backports/contrib Translation-en [6,350 B]
Ign http://ftp.us.debian.org/debian/ wheezy-backports/contrib Translation-en_US
Get:5 http://ftp.us.debian.org/debian/ wheezy-backports/main Translation-en [380 kB]
Ign http://ftp.us.debian.org/debian/ wheezy-backports/main Translation-en_US
Get:6 http://ftp.us.debian.org/debian/ wheezy-backports/non-free Translation-en [21.7 kB]
Ign http://ftp.us.debian.org/debian/ wheezy-backports/non-free Translation-en_US
Hit http://ftp.us.debian.org wheezy Release
Hit http://ftp.us.debian.org wheezy-proposed-updates Release
Get:7 http://ftp.us.debian.org wheezy-backports Release [168 kB]
Hit http://ftp.us.debian.org wheezy/main Sources
Hit http://ftp.us.debian.org wheezy/contrib Sources
Hit http://ftp.us.debian.org wheezy/non-free Sources
Hit http://ftp.us.debian.org wheezy/main armel Packages
Hit http://ftp.us.debian.org wheezy/contrib armel Packages
Hit http://ftp.us.debian.org wheezy/non-free armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/main Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/contrib Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/non-free Sources
Hit http://ftp.us.debian.org wheezy-proposed-updates/main armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/contrib armel Packages
Hit http://ftp.us.debian.org wheezy-proposed-updates/non-free armel Packages
Get:8 http://ftp.us.debian.org wheezy-backports/main armel Packages [581 kB]
Get:9 http://ftp.us.debian.org wheezy-backports/contrib armel Packages [3,147 B]
Get:10 http://ftp.us.debian.org wheezy-backports/non-free armel Packages [5,556 B]
Fetched 1,208 kB in 9s (133 kB/s)
Reading package lists... Done
debian:~#


Output from upgrade:
debian:~#
debian:~# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages have been kept back:
  apt apt-utils aptitude base-files bash bind9-host bsdmainutils bzip2 ca-certificates coreutils dmsetup dnsutils dpkg e2fslibs e2fsprogs exim4 exim4-base exim4-config
  exim4-daemon-light file gcc-4.4-base gettext-base iamerican ibritish ifupdown info initscripts iproute iptables iputils-ping ispell less libacl1 libapt-pkg-perl libattr1
  libblkid1 libbsd0 libbz2-1.0 libcap2 libcomerr2 libcurl3-gnutls libcwidget3 libdevmapper1.02.1 libedit2 libexpat1 libgcc1 libgcrypt11 libgdbm3 libgnutls26 libgpg-error0
  libgpgme11 libgpm2 libgssapi-krb5-2 libgssglue1 libidn11 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblocale-gettext-perl liblockfile1 libmagic1
  libncurses5 libncursesw5 libnewt0.52 libnfsidmap2 libpam-modules libpam0g libpci3 libpcre3 libpopt0 libreadline5 libreadline6 librpcsecgss3 libsasl2-2 libsasl2-modules
  libselinux1 libsepol1 libsigc++-2.0-0c2a libslang2 libsqlite3-0 libss2 libstdc++6 libtasn1-3 libtext-charwidth-perl libtext-iconv-perl libudev0 libusb-0.1-4 libuuid-perl
  libuuid1 libwrap0 libxapian22 libxml2 linux-image-kirkwood lsb-release man-db mdadm module-init-tools mount mutt nano ncurses-bin netbase ntpdate openssh-client
  openssh-server openssl passwd pciutils perl perl-base perl-modules procps python python-apt python-chardet python-debian python-minimal python-reportbug python-xapian
  python2.6 python2.6-minimal reportbug rsyslog sysvinit tasksel uboot-mkimage udev usbutils util-linux vim-common vim-tiny w3m wget whiptail xz-utils zlib1g
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.
debian:~#


And the very long output from dist-upgrade so far - if you scroll to the bottom you'll see it's asking me about a conflict on /etc/default/rcS and what I want to do about it (install the package version, keep my version, show diffs, start a shell). I'm guessing this isn't a big deal and I'm inclined to start a shell, make a backup of the file and then install the package version, but since you've been replying so fast I might as well ask you if that sounds reasonable (and if I'm right that this isn't likely a sign of a big problem):

debian:~# apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages will be REMOVED:
  libbind9-40 libbind9-50 libdns45 libdns58 libept1 libisccfg40 libisccfg50 libkrb53
The following NEW packages will be installed:
  aptitude-common firmware-linux-free gcc-4.7-base ienglish-common kmod krb5-locales libapt-inst1.5 libapt-pkg4.12 libasprintf0c2 libbind9-80 libboost-iostreams1.49.0
  libclass-isa-perl libdb5.1 libdns88 libept1.4.12 libisc84 libisccc80 libisccfg82 libkmod2 liblockfile-bin liblwres80 liblzma5 libmount1 libp11-kit0 libpam-modules-bin
  libpipeline1 libprocps0 librtmp0 libsemanage-common libsemanage1 libssh2-1 libssl1.0.0 libswitch-perl libtinfo5 libtokyocabinet9 libusb-1.0-0 libustr-1.0-1
  linux-image-3.2.0-4-kirkwood multiarch-support python-debianbts python-fpconst python-soappy python2.7 python2.7-minimal u-boot-tools
The following packages will be upgraded:
  apt apt-utils aptitude base-files bash bind9-host bsdmainutils bzip2 ca-certificates coreutils dmsetup dnsutils dpkg e2fslibs e2fsprogs exim4 exim4-base exim4-config
  exim4-daemon-light file gcc-4.4-base gettext-base iamerican ibritish ifupdown info initscripts iproute iptables iputils-ping ispell less libacl1 libapt-pkg-perl libattr1
  libblkid1 libbsd0 libbz2-1.0 libcap2 libcomerr2 libcurl3-gnutls libcwidget3 libdevmapper1.02.1 libedit2 libexpat1 libgcc1 libgcrypt11 libgdbm3 libgnutls26 libgpg-error0
  libgpgme11 libgpm2 libgssapi-krb5-2 libgssglue1 libidn11 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblocale-gettext-perl liblockfile1 libmagic1
  libncurses5 libncursesw5 libnewt0.52 libnfsidmap2 libpam-modules libpam0g libpci3 libpcre3 libpopt0 libreadline5 libreadline6 librpcsecgss3 libsasl2-2 libsasl2-modules
  libselinux1 libsepol1 libsigc++-2.0-0c2a libslang2 libsqlite3-0 libss2 libstdc++6 libtasn1-3 libtext-charwidth-perl libtext-iconv-perl libudev0 libusb-0.1-4 libuuid-perl
  libuuid1 libwrap0 libxapian22 libxml2 linux-image-kirkwood lsb-release man-db mdadm module-init-tools mount mutt nano ncurses-bin netbase ntpdate openssh-client
  openssh-server openssl passwd pciutils perl perl-base perl-modules procps python python-apt python-chardet python-debian python-minimal python-reportbug python-xapian
  python2.6 python2.6-minimal reportbug rsyslog sysvinit tasksel uboot-mkimage udev usbutils util-linux vim-common vim-tiny w3m wget whiptail xz-utils zlib1g
138 upgraded, 45 newly installed, 8 to remove and 0 not upgraded.
Need to get 83.8 MB of archives.
After this operation, 67.9 MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://security.debian.org/ wheezy/updates/main multiarch-support armel 2.13-38+deb7u12 [152 kB]
Get:2 http://ftp.us.debian.org/debian/ wheezy/main liblzma5 armel 5.1.1alpha+20120614-2 [199 kB]
Get:3 http://security.debian.org/ wheezy/updates/main libdb5.1 armel 5.1.29-5+deb7u1 [647 kB]
Get:4 http://security.debian.org/ wheezy/updates/main libssl1.0.0 armel 1.0.1t-1+deb7u2 [1,072 kB]
Get:5 http://ftp.us.debian.org/debian/ wheezy/main dpkg armel 1.16.18 [2,600 kB]
Get:6 http://security.debian.org/ wheezy/updates/main python2.7-minimal armel 2.7.3-6+deb7u3 [1,673 kB]
Get:7 http://security.debian.org/ wheezy/updates/main libexpat1 armel 2.1.0-1+deb7u5 [117 kB]
Get:8 http://security.debian.org/ wheezy/updates/main libsqlite3-0 armel 3.7.13-1+deb7u4 [415 kB]
Get:9 http://security.debian.org/ wheezy/updates/main python2.7 armel 2.7.3-6+deb7u3 [2,682 kB]
Get:10 http://security.debian.org/ wheezy/updates/main passwd armel 1:4.1.5.1-1+deb7u1 [1,178 kB]
Get:11 http://security.debian.org/ wheezy/updates/main perl-modules all 5.14.2-21+deb7u5 [3,441 kB]
Get:12 http://security.debian.org/ wheezy/updates/main perl armel 5.14.2-21+deb7u5 [3,655 kB]
Get:13 http://security.debian.org/ wheezy/updates/main perl-base armel 5.14.2-21+deb7u5 [1,474 kB]
Get:14 http://security.debian.org/ wheezy/updates/main bash armel 4.2+dfsg-0.1+deb7u4 [1,441 kB]
Get:15 http://security.debian.org/ wheezy/updates/main libtasn1-3 armel 2.13-2+deb7u5 [64.3 kB]
Get:16 http://security.debian.org/ wheezy/updates/main libgcrypt11 armel 1.5.0-5+deb7u6 [302 kB]
Get:17 http://security.debian.org/ wheezy/updates/main libgssapi-krb5-2 armel 1.10.1+dfsg-5+deb7u8 [134 kB]
Get:18 http://security.debian.org/ wheezy/updates/main libk5crypto3 armel 1.10.1+dfsg-5+deb7u8 [112 kB]
Get:19 http://security.debian.org/ wheezy/updates/main libkrb5-3 armel 1.10.1+dfsg-5+deb7u8 [342 kB]
Get:20 http://security.debian.org/ wheezy/updates/main libkrb5support0 armel 1.10.1+dfsg-5+deb7u8 [47.1 kB]
Get:21 http://security.debian.org/ wheezy/updates/main libidn11 armel 1.25-2+deb7u3 [176 kB]
Get:22 http://security.debian.org/ wheezy/updates/main file armel 5.11-2+deb7u9 [53.2 kB]
Get:23 http://security.debian.org/ wheezy/updates/main libmagic1 armel 5.11-2+deb7u9 [202 kB]
Get:24 http://security.debian.org/ wheezy/updates/main libldap-2.4-2 armel 2.4.31-2+deb7u3 [217 kB]
Get:25 http://security.debian.org/ wheezy/updates/main librtmp0 armel 2.4+20111222.git4e06e21-1+deb7u1 [58.9 kB]
Get:26 http://security.debian.org/ wheezy/updates/main libcurl3-gnutls armel 7.26.0-1+wheezy21 [310 kB]
Get:27 http://security.debian.org/ wheezy/updates/main libxml2 armel 2.8.0+dfsg1-7+wheezy9 [829 kB]
Get:28 http://security.debian.org/ wheezy/updates/main linux-image-3.2.0-4-kirkwood armel 3.2.93-1 [15.3 MB]
Get:29 http://ftp.us.debian.org/debian/ wheezy/main aptitude armel 0.6.8.2-1 [1,186 kB]
Get:30 http://security.debian.org/ wheezy/updates/main ntpdate armel 1:4.2.6.p5+dfsg-2+deb7u7 [81.3 kB]
Get:31 http://security.debian.org/ wheezy/updates/main vim-tiny armel 2:7.3.547-7+deb7u4 [280 kB]
Get:32 http://security.debian.org/ wheezy/updates/main vim-common armel 2:7.3.547-7+deb7u4 [162 kB]
Get:33 http://security.debian.org/ wheezy/updates/main wget armel 1.13.4-3+deb7u4 [755 kB]
Get:34 http://ftp.us.debian.org/debian/ wheezy/main aptitude-common all 0.6.8.2-1 [1,497 kB]
Get:35 http://security.debian.org/ wheezy/updates/main libisc84 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [170 kB]
Get:36 http://security.debian.org/ wheezy/updates/main libdns88 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [711 kB]
Get:37 http://security.debian.org/ wheezy/updates/main libisccc80 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [35.0 kB]
Get:38 http://security.debian.org/ wheezy/updates/main libisccfg82 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [56.6 kB]
Get:39 http://security.debian.org/ wheezy/updates/main libbind9-80 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [42.4 kB]
Get:40 http://security.debian.org/ wheezy/updates/main liblwres80 armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [53.0 kB]
Get:41 http://security.debian.org/ wheezy/updates/main bind9-host armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [72.4 kB]
Get:42 http://security.debian.org/ wheezy/updates/main dnsutils armel 1:9.8.4.dfsg.P1-6+nmu2+deb7u18 [161 kB]
Get:43 http://security.debian.org/ wheezy/updates/main exim4-daemon-light armel 4.80-7+deb7u5 [634 kB]
Get:44 http://security.debian.org/ wheezy/updates/main exim4-config all 4.80-7+deb7u5 [473 kB]
Get:45 http://security.debian.org/ wheezy/updates/main exim4-base armel 4.80-7+deb7u5 [1,028 kB]
Get:46 http://security.debian.org/ wheezy/updates/main exim4 all 4.80-7+deb7u5 [7,810 B]
Get:47 http://security.debian.org/ wheezy/updates/main krb5-locales all 1.10.1+dfsg-5+deb7u8 [1,504 kB]
Get:48 http://security.debian.org/ wheezy/updates/main openssh-server armel 1:6.0p1-4+deb7u6 [317 kB]
Get:49 http://security.debian.org/ wheezy/updates/main openssh-client armel 1:6.0p1-4+deb7u6 [961 kB]
Get:50 http://security.debian.org/ wheezy/updates/main openssl armel 1.0.1t-1+deb7u2 [703 kB]
Get:51 http://ftp.us.debian.org/debian/ wheezy/main gcc-4.7-base armel 4.7.2-5 [144 kB]
Get:52 http://ftp.us.debian.org/debian/ wheezy/main libgcc1 armel 1:4.7.2-5 [56.6 kB]
Get:53 http://ftp.us.debian.org/debian/ wheezy/main libstdc++6 armel 4.7.2-5 [288 kB]
Get:54 http://ftp.us.debian.org/debian/ wheezy/main libapt-inst1.5 armel 0.9.7.9+deb7u7 [165 kB]
Get:55 http://ftp.us.debian.org/debian/ wheezy/main zlib1g armel 1:1.2.7.dfsg-13 [87.5 kB]
Get:56 http://ftp.us.debian.org/debian/ wheezy/main libtinfo5 armel 5.9-10 [264 kB]
Get:57 http://ftp.us.debian.org/debian/ wheezy/main bzip2 armel 1.0.6-4 [50.8 kB]
Get:58 http://ftp.us.debian.org/debian/ wheezy/main libbz2-1.0 armel 1.0.6-4 [49.9 kB]
Get:59 http://ftp.us.debian.org/debian/ wheezy/main libncursesw5 armel 5.9-10 [120 kB]
Get:60 http://ftp.us.debian.org/debian/ wheezy/main libreadline6 armel 6.2+dfsg-0.1 [147 kB]
Get:61 http://ftp.us.debian.org/debian/ wheezy/main python-apt armel 0.8.8.2 [293 kB]
Get:62 http://ftp.us.debian.org/debian/ wheezy/main python-xapian armel 1.2.12-2 [576 kB]
Get:63 http://ftp.us.debian.org/debian/ wheezy/main python all 2.7.3-4+deb7u1 [181 kB]
Get:64 http://ftp.us.debian.org/debian/ wheezy/main python-minimal all 2.7.3-4+deb7u1 [42.8 kB]
Get:65 http://ftp.us.debian.org/debian/ wheezy/main libsemanage-common all 2.1.6-6 [23.2 kB]
Get:66 http://ftp.us.debian.org/debian/ wheezy/main libsepol1 armel 2.1.4-3 [126 kB]
Get:67 http://ftp.us.debian.org/debian/ wheezy/main libustr-1.0-1 armel 1.0.4-3 [72.6 kB]
Get:68 http://ftp.us.debian.org/debian/ wheezy/main libselinux1 armel 2.1.9-5 [84.0 kB]
Get:69 http://ftp.us.debian.org/debian/ wheezy/main libsemanage1 armel 2.1.6-6 [89.1 kB]
Get:70 http://ftp.us.debian.org/debian/ wheezy/main libpam0g armel 1.1.3-7.1 [123 kB]
Get:71 http://ftp.us.debian.org/debian/ wheezy/main libpam-modules-bin armel 1.1.3-7.1 [100 kB]
Get:72 http://ftp.us.debian.org/debian/ wheezy/main libpam-modules armel 1.1.3-7.1 [323 kB]
Get:73 http://ftp.us.debian.org/debian/ wheezy/main libuuid1 armel 2.20.1-5.3 [57.8 kB]
Get:74 http://ftp.us.debian.org/debian/ wheezy/main libxapian22 armel 1.2.12-2+deb7u1 [1,118 kB]
Get:75 http://ftp.us.debian.org/debian/ wheezy/main python2.6 armel 2.6.8-1.1 [2,453 kB]
Get:76 http://ftp.us.debian.org/debian/ wheezy/main python2.6-minimal armel 2.6.8-1.1 [1,414 kB]
Get:77 http://ftp.us.debian.org/debian/ wheezy/main apt-utils armel 0.9.7.9+deb7u7 [376 kB]
Get:78 http://ftp.us.debian.org/debian/ wheezy/main libswitch-perl all 2.16-2 [21.0 kB]
Get:79 http://ftp.us.debian.org/debian/ wheezy/main libclass-isa-perl all 0.36-3 [12.3 kB]
Get:80 http://ftp.us.debian.org/debian/ wheezy/main libgdbm3 armel 1.8.3-11 [45.1 kB]
Get:81 http://ftp.us.debian.org/debian/ wheezy/main libuuid-perl armel 0.02-5 [9,204 B]
Get:82 http://ftp.us.debian.org/debian/ wheezy/main libtext-charwidth-perl armel 0.04-7+b1 [10.8 kB]
Get:83 http://ftp.us.debian.org/debian/ wheezy/main libapt-pkg4.12 armel 0.9.7.9+deb7u7 [872 kB]
Get:84 http://ftp.us.debian.org/debian/ wheezy/main apt armel 0.9.7.9+deb7u7 [1,249 kB]
Get:85 http://ftp.us.debian.org/debian/ wheezy/main libapt-pkg-perl armel 0.1.26+b1 [80.7 kB]
Get:86 http://ftp.us.debian.org/debian/ wheezy/main libtext-iconv-perl armel 1.7-5 [16.8 kB]
Get:87 http://ftp.us.debian.org/debian/ wheezy/main liblocale-gettext-perl armel 1.05-7+b1 [19.8 kB]
Get:88 http://ftp.us.debian.org/debian/ wheezy/main libboost-iostreams1.49.0 armel 1.49.0-3.2 [54.1 kB]
Get:89 http://ftp.us.debian.org/debian/ wheezy/main libsigc++-2.0-0c2a armel 2.2.10-0.2 [41.0 kB]
Get:90 http://ftp.us.debian.org/debian/ wheezy/main libcwidget3 armel 0.5.16-3.4 [373 kB]
Get:91 http://ftp.us.debian.org/debian/ wheezy/main libept1.4.12 armel 1.0.9 [175 kB]
Get:92 http://ftp.us.debian.org/debian/ wheezy/main netbase all 5.0 [20.1 kB]
Get:93 http://ftp.us.debian.org/debian/ wheezy/main ifupdown armel 0.7.8 [62.0 kB]
Get:94 http://ftp.us.debian.org/debian/ wheezy/main iproute armel 20120521-3+b3 [451 kB]
Get:95 http://ftp.us.debian.org/debian/ wheezy/main udev armel 175-7.2 [362 kB]
Get:96 http://ftp.us.debian.org/debian/ wheezy/main libudev0 armel 175-7.2 [124 kB]
Get:97 http://ftp.us.debian.org/debian/ wheezy/main libblkid1 armel 2.20.1-5.3 [120 kB]
Get:98 http://ftp.us.debian.org/debian/ wheezy/main libslang2 armel 2.2.4-15 [523 kB]
Get:99 http://ftp.us.debian.org/debian/ wheezy/main util-linux armel 2.20.1-5.3 [669 kB]
Get:100 http://ftp.us.debian.org/debian/ wheezy/main libprocps0 armel 1:3.3.3-3 [57.1 kB]
Get:101 http://ftp.us.debian.org/debian/ wheezy/main libncurses5 armel 5.9-10 [96.0 kB]
Get:102 http://ftp.us.debian.org/debian/ wheezy/main procps armel 1:3.3.3-3 [260 kB]
Get:103 http://ftp.us.debian.org/debian/ wheezy/main mdadm armel 3.2.5-5 [546 kB]
Get:104 http://ftp.us.debian.org/debian/ wheezy/main rsyslog armel 5.8.11-3+deb7u2 [511 kB]
Get:105 http://ftp.us.debian.org/debian/ wheezy/main libattr1 armel 1:2.4.46-8 [18.5 kB]
Get:106 http://ftp.us.debian.org/debian/ wheezy/main libacl1 armel 2.2.51-8 [27.6 kB]
Get:107 http://ftp.us.debian.org/debian/ wheezy/main coreutils armel 8.13-3.5 [5,312 kB]
Get:108 http://ftp.us.debian.org/debian/ wheezy/main initscripts armel 2.88dsf-41+deb7u1 [91.5 kB]
Get:109 http://ftp.us.debian.org/debian/ wheezy/main base-files armel 7.1wheezy11 [67.1 kB]
Get:110 http://ftp.us.debian.org/debian/ wheezy/main libcomerr2 armel 1.42.5-1.1+deb7u1 [54.9 kB]
Get:111 http://ftp.us.debian.org/debian/ wheezy/main e2fslibs armel 1.42.5-1.1+deb7u1 [187 kB]
Get:112 http://ftp.us.debian.org/debian/ wheezy/main e2fsprogs armel 1.42.5-1.1+deb7u1 [996 kB]
Get:113 http://ftp.us.debian.org/debian/ wheezy/main libmount1 armel 2.20.1-5.3 [112 kB]
Get:114 http://ftp.us.debian.org/debian/ wheezy/main mount armel 2.20.1-5.3 [215 kB]
Get:115 http://ftp.us.debian.org/debian/ wheezy/main ncurses-bin armel 5.9-10 [330 kB]
Get:116 http://ftp.us.debian.org/debian/ wheezy/main sysvinit armel 2.88dsf-41+deb7u1 [130 kB]
Get:117 http://ftp.us.debian.org/debian/ wheezy/main libusb-0.1-4 armel 2:0.1.12-20+nmu1 [22.0 kB]
Get:118 http://ftp.us.debian.org/debian/ wheezy/main libss2 armel 1.42.5-1.1+deb7u1 [59.2 kB]
Get:119 http://ftp.us.debian.org/debian/ wheezy/main libp11-kit0 armel 0.12-3 [48.7 kB]
Get:120 http://ftp.us.debian.org/debian/ wheezy/main libgnutls26 armel 2.12.20-8+deb7u5 [596 kB]
Get:121 http://ftp.us.debian.org/debian/ wheezy/main libgpg-error0 armel 1.10-3.1 [78.4 kB]
Get:122 http://ftp.us.debian.org/debian/ wheezy/main libkmod2 armel 9-3 [46.2 kB]
Get:123 http://ftp.us.debian.org/debian/ wheezy/main libnewt0.52 armel 0.52.14-11.1 [71.5 kB]
Get:124 http://ftp.us.debian.org/debian/ wheezy/main libpipeline1 armel 1.2.1-1 [34.9 kB]
Get:125 http://ftp.us.debian.org/debian/ wheezy/main libpopt0 armel 1.16-7 [56.4 kB]
Get:126 http://ftp.us.debian.org/debian/ wheezy/main tasksel all 3.14.1 [94.8 kB]
Get:127 http://ftp.us.debian.org/debian/ wheezy/main gettext-base armel 0.18.1.1-9 [138 kB]
Get:128 http://ftp.us.debian.org/debian/ wheezy/main libasprintf0c2 armel 0.18.1.1-9 [26.4 kB]
Get:129 http://ftp.us.debian.org/debian/ wheezy/main libcap2 armel 1:2.22-1.2 [12.4 kB]
Get:130 http://ftp.us.debian.org/debian/ wheezy/main libbsd0 armel 0.4.2-1 [58.1 kB]
Get:131 http://ftp.us.debian.org/debian/ wheezy/main libedit2 armel 2.11-20080614-5 [62.1 kB]
Get:132 http://ftp.us.debian.org/debian/ wheezy/main libgpm2 armel 1.20.4-6 [35.1 kB]
Get:133 http://ftp.us.debian.org/debian/ wheezy/main libgssglue1 armel 0.4-2 [22.8 kB]
Get:134 http://ftp.us.debian.org/debian/ wheezy/main libkeyutils1 armel 1.5.5-3+deb7u1 [7,872 B]
Get:135 http://ftp.us.debian.org/debian/ wheezy/main liblockfile1 armel 1.09-5 [14.4 kB]
Get:136 http://ftp.us.debian.org/debian/ wheezy/main liblockfile-bin armel 1.09-5 [17.9 kB]
Get:137 http://ftp.us.debian.org/debian/ wheezy/main libsasl2-modules armel 2.1.25.dfsg1-6+deb7u1 [104 kB]
Get:138 http://ftp.us.debian.org/debian/ wheezy/main libsasl2-2 armel 2.1.25.dfsg1-6+deb7u1 [110 kB]
Get:139 http://ftp.us.debian.org/debian/ wheezy/main libnfsidmap2 armel 0.25-4 [35.3 kB]
Get:140 http://ftp.us.debian.org/debian/ wheezy/main pciutils armel 1:3.1.9-6 [281 kB]
Get:141 http://ftp.us.debian.org/debian/ wheezy/main libpci3 armel 1:3.1.9-6 [52.8 kB]
Get:142 http://ftp.us.debian.org/debian/ wheezy/main libpcre3 armel 1:8.30-5 [241 kB]
Get:143 http://ftp.us.debian.org/debian/ wheezy/main librpcsecgss3 armel 0.19-5 [32.5 kB]
Get:144 http://ftp.us.debian.org/debian/ wheezy/main libtokyocabinet9 armel 1.4.47-2 [272 kB]
Get:145 http://ftp.us.debian.org/debian/ wheezy/main libwrap0 armel 7.6.q-24 [59.7 kB]
Get:146 http://ftp.us.debian.org/debian/ wheezy/main libssh2-1 armel 1.4.2-1.1+deb7u2 [125 kB]
Get:147 http://ftp.us.debian.org/debian/ wheezy/main dmsetup armel 2:1.02.74-8 [67.3 kB]
Get:148 http://ftp.us.debian.org/debian/ wheezy/main libdevmapper1.02.1 armel 2:1.02.74-8 [133 kB]
Get:149 http://ftp.us.debian.org/debian/ wheezy/main libreadline5 armel 5.2+dfsg-2~deb7u1 [131 kB]
Get:150 http://ftp.us.debian.org/debian/ wheezy/main libusb-1.0-0 armel 2:1.0.11-1 [36.4 kB]
Get:151 http://ftp.us.debian.org/debian/ wheezy/main module-init-tools all 9-3 [1,796 B]
Get:152 http://ftp.us.debian.org/debian/ wheezy/main kmod armel 9-3 [60.4 kB]
Get:153 http://ftp.us.debian.org/debian/ wheezy/main xz-utils armel 5.1.1alpha+20120614-2 [239 kB]
Get:154 http://ftp.us.debian.org/debian/ wheezy/main bsdmainutils armel 9.0.3 [208 kB]
Get:155 http://ftp.us.debian.org/debian/ wheezy/main info armel 4.13a.dfsg.1-10 [212 kB]
Get:156 http://ftp.us.debian.org/debian/ wheezy/main iptables armel 1.4.14-3.1 [361 kB]
Get:157 http://ftp.us.debian.org/debian/ wheezy/main iputils-ping armel 3:20101006-1+b1 [61.9 kB]
Get:158 http://ftp.us.debian.org/debian/ wheezy/main man-db armel 2.6.2-1 [1,025 kB]
Get:159 http://ftp.us.debian.org/debian/ wheezy/main nano armel 2.2.6-1+b1 [574 kB]
Get:160 http://ftp.us.debian.org/debian/ wheezy/main whiptail armel 0.52.14-11.1 [33.1 kB]
Get:161 http://ftp.us.debian.org/debian/ wheezy/main less armel 444-4 [127 kB]
Get:162 http://ftp.us.debian.org/debian/ wheezy/main libgpgme11 armel 1.2.0-1.4+deb7u1 [303 kB]
Get:163 http://ftp.us.debian.org/debian/ wheezy/main mutt armel 1.5.21-6.2+deb7u3 [1,333 kB]
Get:164 http://ftp.us.debian.org/debian/ wheezy/main reportbug all 6.4.4+deb7u1 [128 kB]
Get:165 http://ftp.us.debian.org/debian/ wheezy/main python-chardet all 2.0.1-2 [177 kB]
Get:166 http://ftp.us.debian.org/debian/ wheezy/main python-debian all 0.1.21 [61.3 kB]
Get:167 http://ftp.us.debian.org/debian/ wheezy/main python-fpconst all 0.7.2-5 [5,538 B]
Get:168 http://ftp.us.debian.org/debian/ wheezy/main python-soappy all 0.12.0-4 [129 kB]
Get:169 http://ftp.us.debian.org/debian/ wheezy/main python-debianbts all 1.11 [8,256 B]
Get:170 http://ftp.us.debian.org/debian/ wheezy/main python-reportbug all 6.4.4+deb7u1 [136 kB]
Get:171 http://ftp.us.debian.org/debian/ wheezy/main w3m armel 0.5.3-8 [1,221 kB]
Get:172 http://ftp.us.debian.org/debian/ wheezy/main ca-certificates all 20130119+deb7u1 [210 kB]
Get:173 http://ftp.us.debian.org/debian/ wheezy/main firmware-linux-free all 3.2 [20.7 kB]
Get:174 http://ftp.us.debian.org/debian/ wheezy/main gcc-4.4-base armel 4.4.7-2 [127 kB]
Get:175 http://ftp.us.debian.org/debian/ wheezy/main ibritish all 3.3.02-6 [188 kB]
Get:176 http://ftp.us.debian.org/debian/ wheezy/main iamerican all 3.3.02-6 [188 kB]
Get:177 http://ftp.us.debian.org/debian/ wheezy/main ispell armel 3.3.02-6 [171 kB]
Get:178 http://ftp.us.debian.org/debian/ wheezy/main ienglish-common all 3.3.02-6 [32.0 kB]
Get:179 http://ftp.us.debian.org/debian/ wheezy/main linux-image-kirkwood armel 3.2+46 [5,606 B]
Get:180 http://ftp.us.debian.org/debian/ wheezy/main lsb-release all 4.1+Debian8+deb7u1 [27.2 kB]
Get:181 http://ftp.us.debian.org/debian/ wheezy/main uboot-mkimage all 2012.04.01-2 [16.2 kB]
Get:182 http://ftp.us.debian.org/debian/ wheezy/main u-boot-tools armel 2012.04.01-2 [58.1 kB]
Get:183 http://ftp.us.debian.org/debian/ wheezy/main usbutils armel 1:005-3 [224 kB]
Fetched 83.8 MB in 1min 9s (1,199 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
(Reading database ... 21333 files and directories currently installed.)
Removing libbind9-40 ...
Removing libbind9-50 ...
Removing libisccfg40 ...
Removing libdns45 ...
Removing libisccfg50 ...
Removing libdns58 ...
Selecting previously deselected package multiarch-support.
(Reading database ... 21303 files and directories currently installed.)
Unpacking multiarch-support (from .../multiarch-support_2.13-38+deb7u12_armel.deb) ...
Setting up multiarch-support (2.13-38+deb7u12) ...
Selecting previously deselected package liblzma5.
(Reading database ... 21307 files and directories currently installed.)
Unpacking liblzma5 (from .../liblzma5_5.1.1alpha+20120614-2_armel.deb) ...
Setting up liblzma5 (5.1.1alpha+20120614-2) ...
(Reading database ... 21316 files and directories currently installed.)
Preparing to replace dpkg 1.15.11 (using .../dpkg_1.16.18_armel.deb) ...
Unpacking replacement dpkg ...
Processing triggers for man-db ...
Setting up dpkg (1.16.18) ...
(Reading database ... 21337 files and directories currently installed.)
Preparing to replace aptitude 0.6.3-3.2+squeeze1 (using .../aptitude_0.6.8.2-1_armel.deb) ...
Unpacking replacement aptitude ...
Selecting previously unselected package aptitude-common.
Unpacking aptitude-common (from .../aptitude-common_0.6.8.2-1_all.deb) ...
Selecting previously unselected package gcc-4.7-base:armel.
Unpacking gcc-4.7-base:armel (from .../gcc-4.7-base_4.7.2-5_armel.deb) ...
Processing triggers for man-db ...
Setting up gcc-4.7-base:armel (4.7.2-5) ...
(Reading database ... 21359 files and directories currently installed.)
Preparing to replace libgcc1 1:4.4.5-8 (using .../libgcc1_1%3a4.7.2-5_armel.deb) ...
Unpacking replacement libgcc1:armel ...
Setting up libgcc1:armel (1:4.7.2-5) ...
(Reading database ... 21359 files and directories currently installed.)
Preparing to replace libstdc++6 4.4.5-8 (using .../libstdc++6_4.7.2-5_armel.deb) ...
Unpacking replacement libstdc++6:armel ...
Setting up libstdc++6:armel (4.7.2-5) ...
Selecting previously unselected package libapt-inst1.5:armel.
(Reading database ... 21359 files and directories currently installed.)
Unpacking libapt-inst1.5:armel (from .../libapt-inst1.5_0.9.7.9+deb7u7_armel.deb) ...
Selecting previously unselected package libdb5.1:armel.
Unpacking libdb5.1:armel (from .../libdb5.1_5.1.29-5+deb7u1_armel.deb) ...
Setting up libdb5.1:armel (5.1.29-5+deb7u1) ...
(Reading database ... 21413 files and directories currently installed.)
Preparing to replace zlib1g 1:1.2.3.4.dfsg-3 (using .../zlib1g_1%3a1.2.7.dfsg-13_armel.deb) ...
Unpacking replacement zlib1g:armel ...
Setting up zlib1g:armel (1:1.2.7.dfsg-13) ...
Selecting previously unselected package libssl1.0.0:armel.
(Reading database ... 21413 files and directories currently installed.)
Unpacking libssl1.0.0:armel (from .../libssl1.0.0_1.0.1t-1+deb7u2_armel.deb) ...
Selecting previously unselected package python2.7-minimal.
Unpacking python2.7-minimal (from .../python2.7-minimal_2.7.3-6+deb7u3_armel.deb) ...
Preparing to replace libexpat1 2.0.1-7+squeeze1 (using .../libexpat1_2.1.0-1+deb7u5_armel.deb) ...
Unpacking replacement libexpat1:armel ...
Selecting previously unselected package libtinfo5:armel.
Unpacking libtinfo5:armel (from .../libtinfo5_5.9-10_armel.deb) ...
Processing triggers for man-db ...
Setting up libtinfo5:armel (5.9-10) ...
(Reading database ... 21625 files and directories currently installed.)
Preparing to replace bzip2 1.0.5-6+squeeze1 (using .../bzip2_1.0.6-4_armel.deb) ...
Unpacking replacement bzip2 ...
Preparing to replace libbz2-1.0 1.0.5-6+squeeze1 (using .../libbz2-1.0_1.0.6-4_armel.deb) ...
Unpacking replacement libbz2-1.0:armel ...
Processing triggers for man-db ...
Setting up libbz2-1.0:armel (1.0.6-4) ...
(Reading database ... 21625 files and directories currently installed.)
Preparing to replace libncursesw5 5.7+20100313-5 (using .../libncursesw5_5.9-10_armel.deb) ...
Unpacking replacement libncursesw5:armel ...
Preparing to replace libreadline6 6.1-3 (using .../libreadline6_6.2+dfsg-0.1_armel.deb) ...
Unpacking replacement libreadline6:armel ...
Setting up libreadline6:armel (6.2+dfsg-0.1) ...
(Reading database ... 21620 files and directories currently installed.)
Preparing to replace libsqlite3-0 3.7.3-1 (using .../libsqlite3-0_3.7.13-1+deb7u4_armel.deb) ...
Unpacking replacement libsqlite3-0:armel ...
Selecting previously unselected package python2.7.
Unpacking python2.7 (from .../python2.7_2.7.3-6+deb7u3_armel.deb) ...
Preparing to replace python-apt 0.7.100.1+squeeze1 (using .../python-apt_0.8.8.2_armel.deb) ...
Unpacking replacement python-apt ...
Preparing to replace python-xapian 1.2.3-3 (using .../python-xapian_1.2.12-2_armel.deb) ...
INFO: using unknown version '/usr/bin/python2.7' (debian_defaults not up-to-date?)
Unpacking replacement python-xapian ...
Preparing to replace python 2.6.6-3+squeeze7 (using .../python_2.7.3-4+deb7u1_all.deb) ...
Unpacking replacement python ...
Preparing to replace python-minimal 2.6.6-3+squeeze7 (using .../python-minimal_2.7.3-4+deb7u1_all.deb) ...
Unpacking replacement python-minimal ...
Selecting previously unselected package libsemanage-common.
Unpacking libsemanage-common (from .../libsemanage-common_2.1.6-6_all.deb) ...
Processing triggers for man-db ...
Setting up libsemanage-common (2.1.6-6) ...
(Reading database ... 22168 files and directories currently installed.)
Preparing to replace libsepol1 2.0.41-1 (using .../libsepol1_2.1.4-3_armel.deb) ...
Unpacking replacement libsepol1:armel ...
Setting up libsepol1:armel (2.1.4-3) ...
Selecting previously unselected package libustr-1.0-1:armel.
(Reading database ... 22168 files and directories currently installed.)
Unpacking libustr-1.0-1:armel (from .../libustr-1.0-1_1.0.4-3_armel.deb) ...
Setting up libustr-1.0-1:armel (1.0.4-3) ...
(Reading database ... 22179 files and directories currently installed.)
Preparing to replace libselinux1 2.0.96-1 (using .../libselinux1_2.1.9-5_armel.deb) ...
Unpacking replacement libselinux1:armel ...
Setting up libselinux1:armel (2.1.9-5) ...
Selecting previously unselected package libsemanage1:armel.
(Reading database ... 22179 files and directories currently installed.)
Unpacking libsemanage1:armel (from .../libsemanage1_2.1.6-6_armel.deb) ...
Setting up libsemanage1:armel (2.1.6-6) ...
(Reading database ... 22184 files and directories currently installed.)
Preparing to replace libpam0g 1.1.1-6.1+squeeze1 (using .../libpam0g_1.1.3-7.1_armel.deb) ...
Unpacking replacement libpam0g:armel ...
Setting up libpam0g:armel (1.1.3-7.1) ...
Checking for services that may need to be restarted...Checking init scripts...

Restarting services possibly affected by the upgrade:
  exim4: stopping...starting...done.
  cron: stopping...starting...done.
  atd: stopping...starting...done.

Services restarted successfully.

Selecting previously unselected package libpam-modules-bin.
(Reading database ... 22184 files and directories currently installed.)
Unpacking libpam-modules-bin (from .../libpam-modules-bin_1.1.3-7.1_armel.deb) ...
Replacing files in old package libpam-modules ...
Processing triggers for man-db ...
Setting up libpam-modules-bin (1.1.3-7.1) ...
(Reading database ... 22190 files and directories currently installed.)
Preparing to replace libpam-modules 1.1.1-6.1+squeeze1 (using .../libpam-modules_1.1.3-7.1_armel.deb) ...
Unpacking replacement libpam-modules:armel ...
Processing triggers for man-db ...
Setting up libpam-modules:armel (1.1.3-7.1) ...
Installing new version of config file /etc/security/group.conf ...
(Reading database ... 22189 files and directories currently installed.)
Preparing to replace passwd 1:4.1.4.2+svn3283-2+squeeze1 (using .../passwd_1%3a4.1.5.1-1+deb7u1_armel.deb) ...
Unpacking replacement passwd ...
Processing triggers for man-db ...
Setting up passwd (1:4.1.5.1-1+deb7u1) ...
(Reading database ... 22205 files and directories currently installed.)
Preparing to replace libuuid1 2.17.2-9 (using .../libuuid1_2.20.1-5.3_armel.deb) ...
Unpacking replacement libuuid1:armel ...
Setting up libuuid1:armel (2.20.1-5.3) ...
(Reading database ... 22206 files and directories currently installed.)
Preparing to replace libxapian22 1.2.3-2 (using .../libxapian22_1.2.12-2+deb7u1_armel.deb) ...
Unpacking replacement libxapian22 ...
Preparing to replace python2.6 2.6.6-8+b1 (using .../python2.6_2.6.8-1.1_armel.deb) ...
Unpacking replacement python2.6 ...
Preparing to replace python2.6-minimal 2.6.6-8+b1 (using .../python2.6-minimal_2.6.8-1.1_armel.deb) ...
Unpacking replacement python2.6-minimal ...
Preparing to replace apt-utils 0.8.10.3+squeeze1 (using .../apt-utils_0.9.7.9+deb7u7_armel.deb) ...
Unpacking replacement apt-utils ...
Selecting previously unselected package libswitch-perl.
Unpacking libswitch-perl (from .../libswitch-perl_2.16-2_all.deb) ...
Selecting previously unselected package libclass-isa-perl.
Unpacking libclass-isa-perl (from .../libclass-isa-perl_0.36-3_all.deb) ...
Preparing to replace perl-modules 5.10.1-17squeeze6 (using .../perl-modules_5.14.2-21+deb7u5_all.deb) ...
Unpacking replacement perl-modules ...
Preparing to replace libgdbm3 1.8.3-9 (using .../libgdbm3_1.8.3-11_armel.deb) ...
Unpacking replacement libgdbm3:armel ...
Preparing to replace perl 5.10.1-17squeeze6 (using .../perl_5.14.2-21+deb7u5_armel.deb) ...
Unpacking replacement perl ...
Preparing to replace libuuid-perl 0.02-4 (using .../libuuid-perl_0.02-5_armel.deb) ...
Unpacking replacement libuuid-perl ...
Preparing to replace libtext-charwidth-perl 0.04-6 (using .../libtext-charwidth-perl_0.04-7+b1_armel.deb) ...
Unpacking replacement libtext-charwidth-perl ...
Processing triggers for man-db ...
Processing triggers for install-info ...
(Reading database ... 22360 files and directories currently installed.)
Removing libept1 ...
Selecting previously unselected package libapt-pkg4.12:armel.
dpkg: considering deconfiguration of apt, which would be broken by installation of libapt-pkg4.12:armel ...
dpkg: yes, will deconfigure apt (broken by libapt-pkg4.12:armel)
(Reading database ... 22353 files and directories currently installed.)
Unpacking libapt-pkg4.12:armel (from .../libapt-pkg4.12_0.9.7.9+deb7u7_armel.deb) ...
De-configuring apt ...
Setting up libapt-pkg4.12:armel (0.9.7.9+deb7u7) ...
(Reading database ... 22401 files and directories currently installed.)
Preparing to replace apt 0.8.10.3+squeeze1 (using .../apt_0.9.7.9+deb7u7_armel.deb) ...
Unpacking replacement apt ...
Processing triggers for man-db ...
Setting up apt (0.9.7.9+deb7u7) ...
Installing new version of config file /etc/cron.daily/apt ...
Installing new version of config file /etc/apt/apt.conf.d/01autoremove ...
gpg: key B98321F9: "Squeeze Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 473041FA: "Debian Archive Automatic Signing Key (6.0/squeeze) <ftpmaster@debian.org>" not changed
gpg: key 65FFB764: "Wheezy Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 46925553: "Debian Archive Automatic Signing Key (7.0/wheezy) <ftpmaster@debian.org>" not changed
gpg: key 518E17E1: "Jessie Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 2B90D010: "Debian Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>" not changed
gpg: key C857C906: "Debian Security Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>" not changed
gpg: Total number processed: 7
gpg:              unchanged: 7
gpg: checking the trustdb
gpg: WARNING: digest algorithm MD5 is deprecated
gpg: please see http://www.gnupg.org/faq/weak-digest-algos.html for more information
gpg: no ultimately trusted keys found
(Reading database ... 22311 files and directories currently installed.)
Preparing to replace libapt-pkg-perl 0.1.24+b2 (using .../libapt-pkg-perl_0.1.26+b1_armel.deb) ...
Unpacking replacement libapt-pkg-perl ...
Preparing to replace libtext-iconv-perl 1.7-2 (using .../libtext-iconv-perl_1.7-5_armel.deb) ...
Unpacking replacement libtext-iconv-perl ...
Preparing to replace perl-base 5.10.1-17squeeze6 (using .../perl-base_5.14.2-21+deb7u5_armel.deb) ...
Unpacking replacement perl-base ...
Processing triggers for man-db ...
Setting up perl-base (5.14.2-21+deb7u5) ...
(Reading database ... 22723 files and directories currently installed.)
Preparing to replace liblocale-gettext-perl 1.05-6 (using .../liblocale-gettext-perl_1.05-7+b1_armel.deb) ...
Unpacking replacement liblocale-gettext-perl ...
Selecting previously unselected package libboost-iostreams1.49.0.
Unpacking libboost-iostreams1.49.0 (from .../libboost-iostreams1.49.0_1.49.0-3.2_armel.deb) ...
Preparing to replace libsigc++-2.0-0c2a 2.2.4.2-1 (using .../libsigc++-2.0-0c2a_2.2.10-0.2_armel.deb) ...
Unpacking replacement libsigc++-2.0-0c2a:armel ...
Preparing to replace libcwidget3 0.5.16-3 (using .../libcwidget3_0.5.16-3.4_armel.deb) ...
Unpacking replacement libcwidget3 ...
Selecting previously unselected package libept1.4.12.
Unpacking libept1.4.12 (from .../libept1.4.12_1.0.9_armel.deb) ...
Processing triggers for man-db ...
(Reading database ... 22777 files and directories currently installed.)
Removing libkrb53 ...
dpkg: considering deconfiguration of ifupdown, which would be broken by installation of netbase ...
dpkg: yes, will deconfigure ifupdown (broken by netbase)
(Reading database ... 22771 files and directories currently installed.)
Preparing to replace netbase 4.45 (using .../archives/netbase_5.0_all.deb) ...
De-configuring ifupdown ...
Unpacking replacement netbase ...
Preparing to replace ifupdown 0.6.10 (using .../ifupdown_0.7.8_armel.deb) ...
Moving obsolete conffile /etc/default/ifupdown out of the way...
Moving obsolete conffile /etc/init.d/ifupdown out of the way...
Moving obsolete conffile /etc/init.d/ifupdown-clean out of the way...
Unpacking replacement ifupdown ...
Preparing to replace iproute 20100519-3 (using .../iproute_20120521-3+b3_armel.deb) ...
Unpacking replacement iproute ...
Preparing to replace udev 164-3 (using .../udev_175-7.2_armel.deb) ...
Unpacking replacement udev ...
Preparing to replace libudev0 164-3 (using .../libudev0_175-7.2_armel.deb) ...
Unpacking replacement libudev0:armel ...
Preparing to replace libblkid1 2.17.2-9 (using .../libblkid1_2.20.1-5.3_armel.deb) ...
Unpacking replacement libblkid1:armel ...
Processing triggers for man-db ...
Setting up libblkid1:armel (2.20.1-5.3) ...
(Reading database ... 22806 files and directories currently installed.)
Preparing to replace libslang2 2.2.2-4 (using .../libslang2_2.2.4-15_armel.deb) ...
Unpacking replacement libslang2:armel ...
Setting up libslang2:armel (2.2.4-15) ...
(Reading database ... 22804 files and directories currently installed.)
Preparing to replace util-linux 2.17.2-9 (using .../util-linux_2.20.1-5.3_armel.deb) ...
Removing obsolete conffile /etc/init.d/hwclockfirst.sh ...
Unpacking replacement util-linux ...
Processing triggers for mime-support ...
Processing triggers for install-info ...
Processing triggers for man-db ...
Setting up util-linux (2.20.1-5.3) ...
Installing new version of config file /etc/init.d/hwclock.sh ...
Selecting previously unselected package libprocps0:armel.
(Reading database ... 22799 files and directories currently installed.)
Unpacking libprocps0:armel (from .../libprocps0_1%3a3.3.3-3_armel.deb) ...
Preparing to replace libncurses5 5.7+20100313-5 (using .../libncurses5_5.9-10_armel.deb) ...
Unpacking replacement libncurses5:armel ...
Setting up libncurses5:armel (5.9-10) ...
(Reading database ... 22798 files and directories currently installed.)
Preparing to replace procps 1:3.2.8-9squeeze1 (using .../procps_1%3a3.3.3-3_armel.deb) ...
Unpacking replacement procps ...
Preparing to replace mdadm 3.1.4-1+8efb9d1+squeeze1 (using .../mdadm_3.2.5-5_armel.deb) ...
[ ok ] Stopping MD monitoring service: mdadm --monitor.
Unpacking replacement mdadm ...
Preparing to replace rsyslog 4.6.4-2 (using .../rsyslog_5.8.11-3+deb7u2_armel.deb) ...
Unpacking replacement rsyslog ...
Preparing to replace libattr1 1:2.4.44-2 (using .../libattr1_1%3a2.4.46-8_armel.deb) ...
Unpacking replacement libattr1:armel ...
Processing triggers for man-db ...
Setting up libattr1:armel (1:2.4.46-8) ...
(Reading database ... 22817 files and directories currently installed.)
Preparing to replace libacl1 2.2.49-4 (using .../libacl1_2.2.51-8_armel.deb) ...
Unpacking replacement libacl1:armel ...
Setting up libacl1:armel (2.2.51-8) ...
(Reading database ... 22817 files and directories currently installed.)
Preparing to replace coreutils 8.5-1 (using .../coreutils_8.13-3.5_armel.deb) ...
Unpacking replacement coreutils ...
Processing triggers for install-info ...
Processing triggers for man-db ...
Setting up coreutils (8.13-3.5) ...
(Reading database ... 22740 files and directories currently installed.)
Preparing to replace initscripts 2.88dsf-13.1+squeeze1 (using .../initscripts_2.88dsf-41+deb7u1_armel.deb) ...
Removing unmodified and obsolete conffile /etc/default/bootlogd ...
Removing unmodified and obsolete conffile /etc/init.d/mountoverflowtmp ...
Unpacking replacement initscripts ...
dpkg: warning: unable to delete old directory '/lib/init/rw': Device or resource busy
Processing triggers for man-db ...
Setting up initscripts (2.88dsf-41+deb7u1) ...
Installing new version of config file /etc/init.d/bootlogs ...
Installing new version of config file /etc/init.d/bootmisc.sh ...
Installing new version of config file /etc/init.d/checkfs.sh ...
Installing new version of config file /etc/init.d/checkroot.sh ...
Installing new version of config file /etc/init.d/mountall.sh ...
Installing new version of config file /etc/init.d/mountall-bootclean.sh ...
Installing new version of config file /etc/init.d/mountnfs.sh ...
Installing new version of config file /etc/init.d/mountnfs-bootclean.sh ...
Installing new version of config file /etc/init.d/mountdevsubfs.sh ...
Installing new version of config file /etc/init.d/mountkernfs.sh ...
Installing new version of config file /etc/init.d/mtab.sh ...
Installing new version of config file /etc/init.d/rc.local ...
Installing new version of config file /etc/init.d/sendsigs ...
Installing new version of config file /etc/init.d/umountfs ...
Installing new version of config file /etc/init.d/umountnfs.sh ...
Installing new version of config file /etc/init.d/umountroot ...
Installing new version of config file /etc/init.d/urandom ...

Configuration file `/etc/default/rcS'
 ==> File on system created by you or by a script.
 ==> File also in package provided by package maintainer.
   What would you like to do about it ?  Your options are:
    Y or I  : install the package maintainer's version
    N or O  : keep your currently-installed version
      D     : show the differences between the versions
      Z     : start a shell to examine the situation
 The default action is to keep your current version.
*** rcS (Y/I/N/O/D/Z) [default=N] ?



There are a few things in there that look to me like at least minor hiccups:

(Reading database ... 22360 files and directories currently installed.)
Removing libept1 ...
Selecting previously unselected package libapt-pkg4.12:armel.
dpkg: considering deconfiguration of apt, which would be broken by installation of libapt-pkg4.12:armel ...
dpkg: yes, will deconfigure apt (broken by libapt-pkg4.12:armel)
(Reading database ... 22353 files and directories currently installed.)
Unpacking libapt-pkg4.12:armel (from .../libapt-pkg4.12_0.9.7.9+deb7u7_armel.deb) ...
De-configuring apt ...
Setting up libapt-pkg4.12:armel (0.9.7.9+deb7u7) ...
(Reading database ... 22401 files and directories currently installed.)
Preparing to replace apt 0.8.10.3+squeeze1 (using .../apt_0.9.7.9+deb7u7_armel.deb) ...
Unpacking replacement apt ...
Processing triggers for man-db ...
Setting up apt (0.9.7.9+deb7u7) ...
Installing new version of config file /etc/cron.daily/apt ...
Installing new version of config file /etc/apt/apt.conf.d/01autoremove ...
gpg: key B98321F9: "Squeeze Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 473041FA: "Debian Archive Automatic Signing Key (6.0/squeeze) <ftpmaster@debian.org>" not changed
gpg: key 65FFB764: "Wheezy Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 46925553: "Debian Archive Automatic Signing Key (7.0/wheezy) <ftpmaster@debian.org>" not changed
gpg: key 518E17E1: "Jessie Stable Release Key <debian-release@lists.debian.org>" not changed
gpg: key 2B90D010: "Debian Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>" not changed
gpg: key C857C906: "Debian Security Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org>" not changed
gpg: Total number processed: 7
gpg:              unchanged: 7
gpg: checking the trustdb
gpg: WARNING: digest algorithm MD5 is deprecated
gpg: please see http://www.gnupg.org/faq/weak-digest-algos.html for more information
gpg: no ultimately trusted keys found
(Reading database ... 22311 files and directories currently installed.)

And near the bottom:
(Reading database ... 22740 files and directories currently installed.)
Preparing to replace initscripts 2.88dsf-13.1+squeeze1 (using .../initscripts_2.88dsf-41+deb7u1_armel.deb) ...
Removing unmodified and obsolete conffile /etc/default/bootlogd ...
Removing unmodified and obsolete conffile /etc/init.d/mountoverflowtmp ...
Unpacking replacement initscripts ...
dpkg: warning: unable to delete old directory '/lib/init/rw': Device or resource busy
Processing triggers for man-db ...

Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 01:32PM
All small stuff. Going with the defaults is fine. Glad it progressing so far.
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 02:04PM
feas Wrote:
-------------------------------------------------------
> All small stuff. Going with the defaults is fine.
> Glad it progressing so far.


dist-upgrade finished without nasty errors this time (there are a couple of warnings but they don't look serious to me). For completeness' sake I'll post the rest of the output...

Installing new version of config file /etc/default/rcS ...
Installing new version of config file /etc/default/tmpfs ...
Installing new version of config file /etc/network/if-up.d/mountnfs ...
(Reading database ... 22740 files and directories currently installed.)
Preparing to replace base-files 6.0squeeze10 (using .../base-files_7.1wheezy11_armel.deb) ...
Unpacking replacement base-files ...
Processing triggers for man-db ...
Processing triggers for install-info ...
Setting up base-files (7.1wheezy11) ...
Installing new version of config file /etc/debian_version ...
Installing new version of config file /etc/issue ...
Installing new version of config file /etc/issue.net ...
Updating /etc/profile to current default.
(Reading database ... 22743 files and directories currently installed.)
Preparing to replace bash 4.1-3 (using .../bash_4.2+dfsg-0.1+deb7u4_armel.deb) ...
Unpacking replacement bash ...
Processing triggers for man-db ...
Setting up bash (4.2+dfsg-0.1+deb7u4) ...
Installing new version of config file /etc/bash.bashrc ...
Installing new version of config file /etc/skel/.bashrc ...
update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode
(Reading database ... 22746 files and directories currently installed.)
Preparing to replace libcomerr2 1.41.12-4stable1 (using .../libcomerr2_1.42.5-1.1+deb7u1_armel.deb) ...
Unpacking replacement libcomerr2:armel ...
Setting up libcomerr2:armel (1.42.5-1.1+deb7u1) ...
(Reading database ... 22746 files and directories currently installed.)
Preparing to replace e2fslibs 1.41.12-4stable1 (using .../e2fslibs_1.42.5-1.1+deb7u1_armel.deb) ...
Unpacking replacement e2fslibs:armel ...
Setting up e2fslibs:armel (1.42.5-1.1+deb7u1) ...
(Reading database ... 22746 files and directories currently installed.)
Preparing to replace e2fsprogs 1.41.12-4stable1 (using .../e2fsprogs_1.42.5-1.1+deb7u1_armel.deb) ...
Unpacking replacement e2fsprogs ...
Processing triggers for man-db ...
Setting up e2fsprogs (1.42.5-1.1+deb7u1) ...
Installing new version of config file /etc/mke2fs.conf ...
Selecting previously unselected package libmount1.
(Reading database ... 22742 files and directories currently installed.)
Unpacking libmount1 (from .../libmount1_2.20.1-5.3_armel.deb) ...
Setting up libmount1 (2.20.1-5.3) ...
(Reading database ... 22748 files and directories currently installed.)
Preparing to replace mount 2.17.2-9 (using .../mount_2.20.1-5.3_armel.deb) ...
Unpacking replacement mount ...
Processing triggers for man-db ...
Setting up mount (2.20.1-5.3) ...
(Reading database ... 22750 files and directories currently installed.)
Preparing to replace ncurses-bin 5.7+20100313-5 (using .../ncurses-bin_5.9-10_armel.deb) ...
Unpacking replacement ncurses-bin ...
Processing triggers for man-db ...
Setting up ncurses-bin (5.9-10) ...
(Reading database ... 22752 files and directories currently installed.)
Preparing to replace sysvinit 2.88dsf-13.1+squeeze1 (using .../sysvinit_2.88dsf-41+deb7u1_armel.deb) ...
Unpacking replacement sysvinit ...
Processing triggers for man-db ...
Setting up sysvinit (2.88dsf-41+deb7u1) ...
sysvinit: creating /run/initctl
sysvinit: restarting... done.
(Reading database ... 22752 files and directories currently installed.)
Preparing to replace libusb-0.1-4 2:0.1.12-16 (using .../libusb-0.1-4_2%3a0.1.12-20+nmu1_armel.deb) ...
Unpacking replacement libusb-0.1-4:armel ...
Setting up libusb-0.1-4:armel (2:0.1.12-20+nmu1) ...
(Reading database ... 22751 files and directories currently installed.)
Preparing to replace libss2 1.41.12-4stable1 (using .../libss2_1.42.5-1.1+deb7u1_armel.deb) ...
Unpacking replacement libss2:armel ...
Setting up libss2:armel (1.42.5-1.1+deb7u1) ...
Selecting previously unselected package libp11-kit0:armel.
(Reading database ... 22751 files and directories currently installed.)
Unpacking libp11-kit0:armel (from .../libp11-kit0_0.12-3_armel.deb) ...
Preparing to replace libtasn1-3 2.7-1+squeeze+1 (using .../libtasn1-3_2.13-2+deb7u5_armel.deb) ...
Unpacking replacement libtasn1-3:armel ...
Preparing to replace libgnutls26 2.8.6-1+squeeze3 (using .../libgnutls26_2.12.20-8+deb7u5_armel.deb) ...
Unpacking replacement libgnutls26:armel ...
Preparing to replace libgpg-error0 1.6-1 (using .../libgpg-error0_1.10-3.1_armel.deb) ...
Unpacking replacement libgpg-error0:armel ...
Preparing to replace libgcrypt11 1.4.5-2+squeeze1 (using .../libgcrypt11_1.5.0-5+deb7u6_armel.deb) ...
Unpacking replacement libgcrypt11:armel ...
Selecting previously unselected package libkmod2:armel.
Unpacking libkmod2:armel (from .../libkmod2_9-3_armel.deb) ...
Preparing to replace libnewt0.52 0.52.11-1 (using .../libnewt0.52_0.52.14-11.1_armel.deb) ...
Unpacking replacement libnewt0.52 ...
Selecting previously unselected package libpipeline1:armel.
Unpacking libpipeline1:armel (from .../libpipeline1_1.2.1-1_armel.deb) ...
Preparing to replace libpopt0 1.16-1 (using .../libpopt0_1.16-7_armel.deb) ...
Unpacking replacement libpopt0:armel ...
Preparing to replace tasksel 2.88 (using .../tasksel_3.14.1_all.deb) ...
Unpacking replacement tasksel ...
Preparing to replace gettext-base 0.18.1.1-3 (using .../gettext-base_0.18.1.1-9_armel.deb) ...
Unpacking replacement gettext-base ...
Selecting previously unselected package libasprintf0c2:armel.
Unpacking libasprintf0c2:armel (from .../libasprintf0c2_0.18.1.1-9_armel.deb) ...
Preparing to replace libcap2 1:2.19-3 (using .../libcap2_1%3a2.22-1.2_armel.deb) ...
Unpacking replacement libcap2:armel ...
Preparing to replace libbsd0 0.2.0-1 (using .../libbsd0_0.4.2-1_armel.deb) ...
Unpacking replacement libbsd0:armel ...
Preparing to replace libedit2 2.11-20080614-2 (using .../libedit2_2.11-20080614-5_armel.deb) ...
Unpacking replacement libedit2:armel ...
Preparing to replace libgpm2 1.20.4-3.3 (using .../libgpm2_1.20.4-6_armel.deb) ...
Unpacking replacement libgpm2:armel ...
Preparing to replace libgssglue1 0.1-4 (using .../libgssglue1_0.4-2_armel.deb) ...
Unpacking replacement libgssglue1:armel ...
Preparing to replace libkeyutils1 1.4-1 (using .../libkeyutils1_1.5.5-3+deb7u1_armel.deb) ...
Unpacking replacement libkeyutils1:armel ...
Preparing to replace libgssapi-krb5-2 1.8.3+dfsg-4squeeze7 (using .../libgssapi-krb5-2_1.10.1+dfsg-5+deb7u8_armel.deb) ...
Unpacking replacement libgssapi-krb5-2:armel ...
Preparing to replace libk5crypto3 1.8.3+dfsg-4squeeze7 (using .../libk5crypto3_1.10.1+dfsg-5+deb7u8_armel.deb) ...
Unpacking replacement libk5crypto3:armel ...
Preparing to replace libkrb5-3 1.8.3+dfsg-4squeeze7 (using .../libkrb5-3_1.10.1+dfsg-5+deb7u8_armel.deb) ...
Unpacking replacement libkrb5-3:armel ...
Preparing to replace libkrb5support0 1.8.3+dfsg-4squeeze7 (using .../libkrb5support0_1.10.1+dfsg-5+deb7u8_armel.deb) ...
Unpacking replacement libkrb5support0:armel ...
Preparing to replace libidn11 1.15-2 (using .../libidn11_1.25-2+deb7u3_armel.deb) ...
Unpacking replacement libidn11:armel ...
Preparing to replace liblockfile1 1.08-4 (using .../liblockfile1_1.09-5_armel.deb) ...
Unpacking replacement liblockfile1:armel ...
Selecting previously unselected package liblockfile-bin.
Unpacking liblockfile-bin (from .../liblockfile-bin_1.09-5_armel.deb) ...
Preparing to replace file 5.04-5+squeeze5 (using .../file_5.11-2+deb7u9_armel.deb) ...
Unpacking replacement file ...
Preparing to replace libmagic1 5.04-5+squeeze5 (using .../libmagic1_5.11-2+deb7u9_armel.deb) ...
Unpacking replacement libmagic1:armel ...
Preparing to replace libsasl2-modules 2.1.23.dfsg1-7 (using .../libsasl2-modules_2.1.25.dfsg1-6+deb7u1_armel.deb) ...
Unpacking replacement libsasl2-modules:armel ...
Preparing to replace libsasl2-2 2.1.23.dfsg1-7 (using .../libsasl2-2_2.1.25.dfsg1-6+deb7u1_armel.deb) ...
Unpacking replacement libsasl2-2:armel ...
Preparing to replace libldap-2.4-2 2.4.23-7.3 (using .../libldap-2.4-2_2.4.31-2+deb7u3_armel.deb) ...
Unpacking replacement libldap-2.4-2:armel ...
Preparing to replace libnfsidmap2 0.23-2 (using .../libnfsidmap2_0.25-4_armel.deb) ...
Unpacking replacement libnfsidmap2:armel ...
Preparing to replace pciutils 1:3.1.7-6 (using .../pciutils_1%3a3.1.9-6_armel.deb) ...
Unpacking replacement pciutils ...
Preparing to replace libpci3 1:3.1.7-6 (using .../libpci3_1%3a3.1.9-6_armel.deb) ...
Unpacking replacement libpci3:armel ...
Preparing to replace libpcre3 8.02-1.1 (using .../libpcre3_1%3a8.30-5_armel.deb) ...
Unpacking replacement libpcre3:armel ...
Preparing to replace librpcsecgss3 0.19-2 (using .../librpcsecgss3_0.19-5_armel.deb) ...
Unpacking replacement librpcsecgss3:armel ...
Selecting previously unselected package libtokyocabinet9:armel.
Unpacking libtokyocabinet9:armel (from .../libtokyocabinet9_1.4.47-2_armel.deb) ...
Preparing to replace libwrap0 7.6.q-19 (using .../libwrap0_7.6.q-24_armel.deb) ...
Unpacking replacement libwrap0:armel ...
Selecting previously unselected package librtmp0:armel.
Unpacking librtmp0:armel (from .../librtmp0_2.4+20111222.git4e06e21-1+deb7u1_armel.deb) ...
Selecting previously unselected package libssh2-1:armel.
Unpacking libssh2-1:armel (from .../libssh2-1_1.4.2-1.1+deb7u2_armel.deb) ...
Preparing to replace libcurl3-gnutls 7.21.0-2.1+squeeze8 (using .../libcurl3-gnutls_7.26.0-1+wheezy21_armel.deb) ...
Unpacking replacement libcurl3-gnutls:armel ...
Preparing to replace dmsetup 2:1.02.48-5 (using .../dmsetup_2%3a1.02.74-8_armel.deb) ...
Unpacking replacement dmsetup ...
Preparing to replace libdevmapper1.02.1 2:1.02.48-5 (using .../libdevmapper1.02.1_2%3a1.02.74-8_armel.deb) ...
Unpacking replacement libdevmapper1.02.1:armel ...
Preparing to replace libreadline5 5.2-7 (using .../libreadline5_5.2+dfsg-2~deb7u1_armel.deb) ...
Unpacking replacement libreadline5:armel ...
Selecting previously unselected package libusb-1.0-0:armel.
Unpacking libusb-1.0-0:armel (from .../libusb-1.0-0_2%3a1.0.11-1_armel.deb) ...
Preparing to replace libxml2 2.7.8.dfsg-2+squeeze8 (using .../libxml2_2.8.0+dfsg1-7+wheezy9_armel.deb) ...
Unpacking replacement libxml2:armel ...
Preparing to replace module-init-tools 3.12-2 (using .../module-init-tools_9-3_all.deb) ...
Moving obsolete conffile /etc/init.d/module-init-tools out of the way...
Moving obsolete conffile /etc/modprobe.d/aliases.conf out of the way...
Unpacking replacement module-init-tools ...
Selecting previously unselected package kmod.
Unpacking kmod (from .../archives/kmod_9-3_armel.deb) ...
Selecting previously unselected package linux-image-3.2.0-4-kirkwood.
Unpacking linux-image-3.2.0-4-kirkwood (from .../linux-image-3.2.0-4-kirkwood_3.2.93-1_armel.deb) ...
Preparing to replace ntpdate 1:4.2.6.p2+dfsg-1+b1 (using .../ntpdate_1%3a4.2.6.p5+dfsg-2+deb7u7_armel.deb) ...
Unpacking replacement ntpdate ...
Preparing to replace xz-utils 5.0.0-2 (using .../xz-utils_5.1.1alpha+20120614-2_armel.deb) ...
Unpacking replacement xz-utils ...
Processing triggers for man-db ...
Setting up xz-utils (5.1.1alpha+20120614-2) ...
(Reading database ... 25229 files and directories currently installed.)
Preparing to replace bsdmainutils 8.0.13 (using .../bsdmainutils_9.0.3_armel.deb) ...
Unpacking replacement bsdmainutils ...
Preparing to replace info 4.13a.dfsg.1-6 (using .../info_4.13a.dfsg.1-10_armel.deb) ...
Unpacking replacement info ...
Preparing to replace iptables 1.4.8-3 (using .../iptables_1.4.14-3.1_armel.deb) ...
Unpacking replacement iptables ...
Preparing to replace iputils-ping 3:20100418-3 (using .../iputils-ping_3%3a20101006-1+b1_armel.deb) ...
Unpacking replacement iputils-ping ...
Preparing to replace man-db 2.5.7-8 (using .../man-db_2.6.2-1_armel.deb) ...
Unpacking replacement man-db ...
Preparing to replace nano 2.2.4-1 (using .../nano_2.2.6-1+b1_armel.deb) ...
Unpacking replacement nano ...
Preparing to replace vim-tiny 2:7.2.445+hg~cb94c42c0e1a-1 (using .../vim-tiny_2%3a7.3.547-7+deb7u4_armel.deb) ...
Unpacking replacement vim-tiny ...
Preparing to replace vim-common 2:7.2.445+hg~cb94c42c0e1a-1 (using .../vim-common_2%3a7.3.547-7+deb7u4_armel.deb) ...
Unpacking replacement vim-common ...
Preparing to replace wget 1.12-2.1 (using .../wget_1.13.4-3+deb7u4_armel.deb) ...
Unpacking replacement wget ...
Preparing to replace whiptail 0.52.11-1 (using .../whiptail_0.52.14-11.1_armel.deb) ...
Unpacking replacement whiptail ...
Selecting previously unselected package libisc84.
Unpacking libisc84 (from .../libisc84_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Selecting previously unselected package libdns88.
Unpacking libdns88 (from .../libdns88_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Selecting previously unselected package libisccc80.
Unpacking libisccc80 (from .../libisccc80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Selecting previously unselected package libisccfg82.
Unpacking libisccfg82 (from .../libisccfg82_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Selecting previously unselected package libbind9-80.
Unpacking libbind9-80 (from .../libbind9-80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Selecting previously unselected package liblwres80.
Unpacking liblwres80 (from .../liblwres80_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Preparing to replace bind9-host 1:9.7.3.dfsg-1~squeeze11 (using .../bind9-host_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Unpacking replacement bind9-host ...
Preparing to replace dnsutils 1:9.7.3.dfsg-1~squeeze11 (using .../dnsutils_1%3a9.8.4.dfsg.P1-6+nmu2+deb7u18_armel.deb) ...
Unpacking replacement dnsutils ...
Preparing to replace exim4-daemon-light 4.72-6+squeeze4 (using .../exim4-daemon-light_4.80-7+deb7u5_armel.deb) ...
[ ok ] Stopping MTA: exim4_listener.
Unpacking replacement exim4-daemon-light ...
Preparing to replace exim4-config 4.72-6+squeeze4 (using .../exim4-config_4.80-7+deb7u5_all.deb) ...
Unpacking replacement exim4-config ...
Preparing to replace exim4-base 4.72-6+squeeze4 (using .../exim4-base_4.80-7+deb7u5_armel.deb) ...
Unpacking replacement exim4-base ...
dpkg: warning: unable to delete old directory '/var/spool/exim4': Directory not empty
Preparing to replace exim4 4.72-6+squeeze4 (using .../exim4_4.80-7+deb7u5_all.deb) ...
Unpacking replacement exim4 ...
Selecting previously unselected package krb5-locales.
Unpacking krb5-locales (from .../krb5-locales_1.10.1+dfsg-5+deb7u8_all.deb) ...
Preparing to replace less 436-1+b1 (using .../archives/less_444-4_armel.deb) ...
Unpacking replacement less ...
Preparing to replace libgpgme11 1.2.0-1.2 (using .../libgpgme11_1.2.0-1.4+deb7u1_armel.deb) ...
Unpacking replacement libgpgme11 ...
Preparing to replace mutt 1.5.20-9+squeeze3 (using .../mutt_1.5.21-6.2+deb7u3_armel.deb) ...
Unpacking replacement mutt ...
Preparing to replace openssh-server 1:5.5p1-6+squeeze5 (using .../openssh-server_1%3a6.0p1-4+deb7u6_armel.deb) ...
Unpacking replacement openssh-server ...
Preparing to replace openssh-client 1:5.5p1-6+squeeze5 (using .../openssh-client_1%3a6.0p1-4+deb7u6_armel.deb) ...
Unpacking replacement openssh-client ...
Preparing to replace reportbug 4.12.6 (using .../reportbug_6.4.4+deb7u1_all.deb) ...
Unpacking replacement reportbug ...
Preparing to replace python-chardet 2.0.1-1 (using .../python-chardet_2.0.1-2_all.deb) ...
Unpacking replacement python-chardet ...
Preparing to replace python-debian 0.1.18+squeeze1 (using .../python-debian_0.1.21_all.deb) ...
Unpacking replacement python-debian ...
Selecting previously unselected package python-fpconst.
Unpacking python-fpconst (from .../python-fpconst_0.7.2-5_all.deb) ...
Selecting previously unselected package python-soappy.
Unpacking python-soappy (from .../python-soappy_0.12.0-4_all.deb) ...
Selecting previously unselected package python-debianbts.
Unpacking python-debianbts (from .../python-debianbts_1.11_all.deb) ...
Preparing to replace python-reportbug 4.12.6 (using .../python-reportbug_6.4.4+deb7u1_all.deb) ...
Unpacking replacement python-reportbug ...
Preparing to replace w3m 0.5.2-9 (using .../archives/w3m_0.5.3-8_armel.deb) ...
Unpacking replacement w3m ...
Preparing to replace openssl 0.9.8o-4squeeze14 (using .../openssl_1.0.1t-1+deb7u2_armel.deb) ...
Unpacking replacement openssl ...
Preparing to replace ca-certificates 20090814+nmu3squeeze1 (using .../ca-certificates_20130119+deb7u1_all.deb) ...
Unpacking replacement ca-certificates ...
Selecting previously unselected package firmware-linux-free.
Unpacking firmware-linux-free (from .../firmware-linux-free_3.2_all.deb) ...
Preparing to replace gcc-4.4-base 4.4.5-8 (using .../gcc-4.4-base_4.4.7-2_armel.deb) ...
Unpacking replacement gcc-4.4-base:armel ...
Preparing to replace ibritish 3.1.20.0-7 (using .../ibritish_3.3.02-6_all.deb) ...
Unpacking replacement ibritish ...
Preparing to replace iamerican 3.1.20.0-7 (using .../iamerican_3.3.02-6_all.deb) ...
Unpacking replacement iamerican ...
Preparing to replace ispell 3.1.20.0-7 (using .../ispell_3.3.02-6_armel.deb) ...
Unpacking replacement ispell ...
Selecting previously unselected package ienglish-common.
Unpacking ienglish-common (from .../ienglish-common_3.3.02-6_all.deb) ...
Preparing to replace linux-image-kirkwood 2.6.32+29 (using .../linux-image-kirkwood_3.2+46_armel.deb) ...
Unpacking replacement linux-image-kirkwood ...
Preparing to replace lsb-release 3.2-23.2squeeze1 (using .../lsb-release_4.1+Debian8+deb7u1_all.deb) ...
Unpacking replacement lsb-release ...
Preparing to replace uboot-mkimage 0.4 (using .../uboot-mkimage_2012.04.01-2_all.deb) ...
Unpacking replacement uboot-mkimage ...
Selecting previously unselected package u-boot-tools.
Unpacking u-boot-tools (from .../u-boot-tools_2012.04.01-2_armel.deb) ...
Preparing to replace usbutils 0.87-5squeeze1 (using .../usbutils_1%3a005-3_armel.deb) ...
Unpacking replacement usbutils ...
Processing triggers for install-info ...
Processing triggers for mime-support ...
Processing triggers for python-support ...
Setting up aptitude-common (0.6.8.2-1) ...
Setting up libboost-iostreams1.49.0 (1.49.0-3.2) ...
Setting up libncursesw5:armel (5.9-10) ...
Setting up libsigc++-2.0-0c2a:armel (2.2.10-0.2) ...
Setting up libcwidget3 (0.5.16-3.4) ...
Setting up libxapian22 (1.2.12-2+deb7u1) ...
Setting up libept1.4.12 (1.0.9) ...
Setting up libsqlite3-0:armel (3.7.13-1+deb7u4) ...
Setting up aptitude (0.6.8.2-1) ...
update-alternatives: warning: forcing reinstallation of alternative /usr/bin/aptitude-curses because link group aptitude is broken
Setting up libapt-inst1.5:armel (0.9.7.9+deb7u7) ...
Setting up libssl1.0.0:armel (1.0.1t-1+deb7u2) ...
Setting up python2.7-minimal (2.7.3-6+deb7u3) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up libexpat1:armel (2.1.0-1+deb7u5) ...
Setting up bzip2 (1.0.6-4) ...
Setting up python2.7 (2.7.3-6+deb7u3) ...
Setting up python-minimal (2.7.3-4+deb7u1) ...
Setting up python (2.7.3-4+deb7u1) ...
Linking and byte-compiling packages for runtime python2.7...
running python rtupdate hooks for python2.7...
running python post-rtupdate hooks for python2.7...
Linking and byte-compiling packages for runtime python2.7...
Setting up python-apt (0.8.8.2) ...
Setting up python2.6-minimal (2.6.8-1.1) ...
Setting up python2.6 (2.6.8-1.1) ...
Setting up python-xapian (1.2.12-2) ...
Setting up apt-utils (0.9.7.9+deb7u7) ...
Setting up libclass-isa-perl (0.36-3) ...
Setting up libgdbm3:armel (1.8.3-11) ...
Setting up libuuid-perl (0.02-5) ...
Setting up libtext-charwidth-perl (0.04-7+b1) ...
Setting up libapt-pkg-perl (0.1.26+b1) ...
Setting up libtext-iconv-perl (1.7-5) ...
Setting up liblocale-gettext-perl (1.05-7+b1) ...
Setting up netbase (5.0) ...
Installing new version of config file /etc/protocols ...
Installing new version of config file /etc/services ...
Setting up iproute (20120521-3+b3) ...
Setting up ifupdown (0.7.8) ...
Installing new version of config file /etc/init.d/networking ...
Migrating network state directory from /etc/network/run to /run/network...
Moving /etc/network/run/ifstate to /run/network/ifstate
Removing obsolete conffile /etc/default/ifupdown ...
Removing obsolete conffile /etc/init.d/ifupdown ...
Removing obsolete conffile /etc/init.d/ifupdown-clean ...
Setting up libudev0:armel (175-7.2) ...
Setting up libprocps0:armel (1:3.3.3-3) ...
Setting up procps (1:3.3.3-3) ...
Installing new version of config file /etc/init.d/procps ...
[ ok ] Setting kernel variables ...done.
Setting up udev (175-7.2) ...
Installing new version of config file /etc/modprobe.d/fbdev-blacklist.conf ...
Installing new version of config file /etc/init.d/udev ...
Installing new version of config file /etc/init.d/udev-mtab ...
Installing new version of config file /etc/udev/udev.conf ...
[ ok ] Stopping the hotplug events dispatcher: udevd.
[ ok ] Starting the hotplug events dispatcher: udevd.
update-initramfs: deferring update (trigger activated)
Setting up mdadm (3.2.5-5) ...
Installing new version of config file /etc/init.d/mdadm-raid ...
Installing new version of config file /etc/init.d/mdadm ...
Installing new version of config file /etc/logcheck/ignore.d.server/mdadm ...
Generating array device nodes... done.
update-initramfs: deferring update (trigger activated)
[ ok ] Assembling MD arrays...done (no arrays found in config file or automatically).
[ ok ] Starting MD monitoring service: mdadm --monitor.
Setting up rsyslog (5.8.11-3+deb7u2) ...
Installing new version of config file /etc/rsyslog.conf ...
Installing new version of config file /etc/init.d/rsyslog ...
Installing new version of config file /etc/logrotate.d/rsyslog ...
Installing new version of config file /etc/default/rsyslog ...
Installing new version of config file /etc/logcheck/ignore.d.server/rsyslog ...
[ ok ] Stopping enhanced syslogd: rsyslogd.
[ ok ] Starting enhanced syslogd: rsyslogd.
Setting up libp11-kit0:armel (0.12-3) ...
Setting up libtasn1-3:armel (2.13-2+deb7u5) ...
Setting up libgpg-error0:armel (1.10-3.1) ...
Setting up libgcrypt11:armel (1.5.0-5+deb7u6) ...
Setting up libgnutls26:armel (2.12.20-8+deb7u5) ...
Setting up libkmod2:armel (9-3) ...
Setting up libnewt0.52 (0.52.14-11.1) ...
Setting up libpipeline1:armel (1.2.1-1) ...
Setting up libpopt0:armel (1.16-7) ...
Setting up tasksel (3.14.1) ...
Setting up libasprintf0c2:armel (0.18.1.1-9) ...
Setting up gettext-base (0.18.1.1-9) ...
Setting up libcap2:armel (1:2.22-1.2) ...
Setting up libbsd0:armel (0.4.2-1) ...
Setting up libedit2:armel (2.11-20080614-5) ...
Setting up libgpm2:armel (1.20.4-6) ...
Setting up libgssglue1:armel (0.4-2) ...
Installing new version of config file /etc/gssapi_mech.conf ...
Setting up libkeyutils1:armel (1.5.5-3+deb7u1) ...
Setting up libkrb5support0:armel (1.10.1+dfsg-5+deb7u8) ...
Setting up libk5crypto3:armel (1.10.1+dfsg-5+deb7u8) ...
Setting up libkrb5-3:armel (1.10.1+dfsg-5+deb7u8) ...
Setting up libgssapi-krb5-2:armel (1.10.1+dfsg-5+deb7u8) ...
Setting up libidn11:armel (1.25-2+deb7u3) ...
Setting up liblockfile-bin (1.09-5) ...
Setting up liblockfile1:armel (1.09-5) ...
Setting up libmagic1:armel (5.11-2+deb7u9) ...
Setting up file (5.11-2+deb7u9) ...
Setting up libsasl2-2:armel (2.1.25.dfsg1-6+deb7u1) ...
Setting up libsasl2-modules:armel (2.1.25.dfsg1-6+deb7u1) ...
Setting up libldap-2.4-2:armel (2.4.31-2+deb7u3) ...
Installing new version of config file /etc/ldap/ldap.conf ...
Setting up libnfsidmap2:armel (0.25-4) ...
Setting up libpci3:armel (1:3.1.9-6) ...
Setting up pciutils (1:3.1.9-6) ...
Setting up libpcre3:armel (1:8.30-5) ...
Setting up librpcsecgss3:armel (0.19-5) ...
Setting up libtokyocabinet9:armel (1.4.47-2) ...
Setting up libwrap0:armel (7.6.q-24) ...
Setting up librtmp0:armel (2.4+20111222.git4e06e21-1+deb7u1) ...
Setting up libssh2-1:armel (1.4.2-1.1+deb7u2) ...
Setting up libcurl3-gnutls:armel (7.26.0-1+wheezy21) ...
Setting up libreadline5:armel (5.2+dfsg-2~deb7u1) ...
Setting up libusb-1.0-0:armel (2:1.0.11-1) ...
Setting up libxml2:armel (2.8.0+dfsg1-7+wheezy9) ...
Setting up kmod (9-3) ...
Setting up module-init-tools (9-3) ...
Removing obsolete conffile /etc/init.d/module-init-tools ...
Removing obsolete conffile /etc/modprobe.d/aliases.conf ...
Setting up linux-image-3.2.0-4-kirkwood (3.2.93-1) ...
Running depmod.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.2.0-4-kirkwood /boot/vmlinuz-3.2.0-4-kirkwood
update-initramfs: Generating /boot/initrd.img-3.2.0-4-kirkwood
W: mdadm: /etc/mdadm/mdadm.conf defines no arrays.
W: mdadm: no arrays defined in configuration file.
flash-kernel: deferring update (trigger activated)
run-parts: executing /etc/kernel/postinst.d/zz-flash-kernel 3.2.0-4-kirkwood /boot/vmlinuz-3.2.0-4-kirkwood
flash-kernel: deferring update (trigger activated)
Setting up ntpdate (1:4.2.6.p5+dfsg-2+deb7u7) ...
Setting up bsdmainutils (9.0.3) ...
Installing new version of config file /etc/cron.daily/bsdmainutils ...
Setting up info (4.13a.dfsg.1-10) ...
Setting up iptables (1.4.14-3.1) ...
Setting up iputils-ping (3:20101006-1+b1) ...
Setting up man-db (2.6.2-1) ...
Installing new version of config file /etc/cron.daily/man-db ...
Installing new version of config file /etc/cron.weekly/man-db ...
Updating database of manual pages ...
Setting up nano (2.2.6-1+b1) ...
Setting up vim-common (2:7.3.547-7+deb7u4) ...
Setting up vim-tiny (2:7.3.547-7+deb7u4) ...
Installing new version of config file /etc/vim/vimrc.tiny ...
Setting up wget (1.13.4-3+deb7u4) ...
Setting up whiptail (0.52.14-11.1) ...
Setting up libisc84 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up libdns88 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up libisccc80 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up libisccfg82 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up libbind9-80 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up liblwres80 (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up bind9-host (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up dnsutils (1:9.8.4.dfsg.P1-6+nmu2+deb7u18) ...
Setting up exim4-config (4.80-7+deb7u5) ...
Installing new version of config file /etc/exim4/conf.d/acl/40_exim4-config_check_data ...
Installing new version of config file /etc/exim4/conf.d/acl/30_exim4-config_check_rcpt ...
Installing new version of config file /etc/exim4/conf.d/retry/30_exim4-config ...
Installing new version of config file /etc/exim4/conf.d/transport/30_exim4-config_remote_smtp_smarthost ...
Installing new version of config file /etc/exim4/conf.d/transport/30_exim4-config_remote_smtp ...
Installing new version of config file /etc/exim4/conf.d/main/02_exim4-config_options ...
Installing new version of config file /etc/exim4/exim4.conf.template ...
Setting up exim4-base (4.80-7+deb7u5) ...
Installing new version of config file /etc/init.d/exim4 ...
Installing new version of config file /etc/cron.daily/exim4-base ...
exim: DB upgrade, deleting hints-db
Setting up exim4-daemon-light (4.80-7+deb7u5) ...
[ ok ] Starting MTA: exim4.
Setting up exim4 (4.80-7+deb7u5) ...
Setting up krb5-locales (1.10.1+dfsg-5+deb7u8) ...
Setting up less (444-4) ...
Setting up libgpgme11 (1.2.0-1.4+deb7u1) ...
Setting up mutt (1.5.21-6.2+deb7u3) ...
Installing new version of config file /etc/Muttrc.d/compressed-folders.rc ...
Installing new version of config file /etc/Muttrc ...
Setting up openssh-client (1:6.0p1-4+deb7u6) ...
Installing new version of config file /etc/ssh/moduli ...
Setting up openssh-server (1:6.0p1-4+deb7u6) ...
Installing new version of config file /etc/pam.d/sshd ...
Installing new version of config file /etc/init.d/ssh ...
[ ok ] Restarting OpenBSD Secure Shell server: sshd.
Setting up python-chardet (2.0.1-2) ...
Setting up python-debian (0.1.21) ...
Setting up python-fpconst (0.7.2-5) ...
Setting up python-soappy (0.12.0-4) ...
Setting up python-debianbts (1.11) ...
Setting up python-reportbug (6.4.4+deb7u1) ...
Setting up reportbug (6.4.4+deb7u1) ...
Installing new version of config file /etc/reportbug.conf ...
Setting up w3m (0.5.3-8) ...
Setting up openssl (1.0.1t-1+deb7u2) ...
Installing new version of config file /etc/ssl/openssl.cnf ...
Setting up ca-certificates (20130119+deb7u1) ...
Setting up firmware-linux-free (3.2) ...
update-initramfs: deferring update (trigger activated)
Setting up gcc-4.4-base:armel (4.4.7-2) ...
Setting up ispell (3.3.02-6) ...
Setting up linux-image-kirkwood (3.2+46) ...
Setting up lsb-release (4.1+Debian8+deb7u1) ...
Setting up u-boot-tools (2012.04.01-2) ...
Setting up uboot-mkimage (2012.04.01-2) ...
Setting up usbutils (1:005-3) ...
Processing triggers for dictionaries-common ...
ispell-autobuildhash: Processing 'american' dict.
ispell-autobuildhash: Processing 'british' dict.
Setting up ienglish-common (3.3.02-6) ...
Setting up ibritish (3.3.02-6) ...
Setting up iamerican (3.3.02-6) ...
Processing triggers for dictionaries-common ...
Setting up libdevmapper1.02.1:armel (2:1.02.74-8) ...
Setting up dmsetup (2:1.02.74-8) ...
update-initramfs: deferring update (trigger activated)
Setting up perl-modules (5.14.2-21+deb7u5) ...
Setting up perl (5.14.2-21+deb7u5) ...
Setting up libswitch-perl (2.16-2) ...
Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-3.2.0-4-kirkwood
W: mdadm: /etc/mdadm/mdadm.conf defines no arrays.
W: mdadm: no arrays defined in configuration file.
flash-kernel: installing version 3.2.0-4-kirkwood
Generating kernel u-boot image... done.
Taking backup of uImage.
Installing new uImage.
Generating initramfs u-boot image... done.
Taking backup of uInitrd.
Installing new uInitrd.
Processing triggers for flash-kernel ...
flash-kernel: installing version 3.2.0-4-kirkwood
Generating kernel u-boot image... done.
Taking backup of uImage.
Installing new uImage.
Generating initramfs u-boot image... done.
Taking backup of uInitrd.
Installing new uInitrd.
Processing triggers for python-support ...
Processing triggers for ca-certificates ...
Clearing symlinks in /etc/ssl/certs...done.
Updating certificates in /etc/ssl/certs... 171 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
debian:~#
debian:~#
debian:~# uname -a
Linux debian 2.6.32-5-kirkwood #1 Tue May 13 17:59:08 UTC 2014 armv5tel GNU/Linux
debian:~#


I'm guessing that means one or both of your suggestions got me past whatever was hanging me up before. So thanks! I'll continue with the instructions...
Re: Pogoplug E02 Debian Linux Installation Guide
October 19, 2017 02:13PM
I am thinking it was the lack of backports that was causing the issue before but glad it is progressing.

Sorry for any confusion I caused about using Bodhi's method. I have edited my post to try and make it clearer.
Author:

Subject:


Spam prevention:
Please, enter the code that you see below in the input field. This is for blocking bots that try to post this form automatically. If the code is hard to read, then just try to guess it right. If you enter the wrong code, a new image is created and you get another chance to enter it right.
Message: