So, they didn't word that particular post properly.  What they're
saying is to run one of the two following commands.

$ sudo dpkg --configure -a;sudo aptitude full-upgrade
*OR*
$ sudo dpkg --configure --pending; sudo aptitude full-upgrade
*NOT*
$ sudo dpkg --configure -a or sudo dpkg --configure --pending; sudo
aptitude full-upgrade

The command just above is what's causing your error.

Also, when they say to add `exit 0` after `set -e` they mean as a
separate command.

set -e
exit 0

This will cause the post install script to exit without doing
anything, but `exit 0` must be on a new line.

Try making those two changes & see if it helps.

On Mon, Dec 27, 2010 at 7:38 PM, Horst <[email protected]> wrote:
>
> > w...@kathy:~$ sudo dpkg --configure -a or sudo dpkg --configure --pending; 
> > sudo aptitude full-upgrade
> > [sudo] password for wes:
> > dpkg: --configure --pending does not take any non-option arguments
>
> I haven't been following the entire thread, but "does not take any non-option 
> arguments" indicates to me the 'or sudo dpkg' is considered as non-option 
> argument, and dpkg flags that something isn't right.
>
>  - Horst, just cruising by...
>
> ________________________________
> From: Joseph Weston Morgan <[email protected]>
> To: Eugene Unix and Gnu/Linux User Group <[email protected]>
> Sent: Mon, December 27, 2010 4:38:00 PM
> Subject: Re: [Eug-lug] Ubuntu 10.10
>
> Unfortunately it did not work.  I changed to the set -e exit 0 and reran the 
> configure and still got an error.
>
> w...@kathy:~$ sudo dpkg --configure -a or sudo dpkg --configure --pending; 
> sudo aptitude full-upgrade
> [sudo] password for wes:
> dpkg: --configure --pending does not take any non-option arguments
>
> Type dpkg --help for help about installing and deinstalling packages [*];
> Use `dselect' or `aptitude' for user-friendly package management;
> Type dpkg -Dhelp for a list of dpkg debug flag values;
> Type dpkg --force-help for a list of forcing options;
> Type dpkg-deb --help for help about manipulating *.deb files;
> ...
>
>
> _______________________________________________
> EUGLUG mailing list
> [email protected]
> http://www.euglug.org/mailman/listinfo/euglug
>
_______________________________________________
EUGLUG mailing list
[email protected]
http://www.euglug.org/mailman/listinfo/euglug

Reply via email to