[RESOLVED] Installing .deb on Unbuntu 8.1 errors

General support for problems installing or using Deluge
Post Reply
pyc
Member
Member
Posts: 11
Joined: Thu Dec 18, 2008 11:07 am

[RESOLVED] Installing .deb on Unbuntu 8.1 errors

Post by pyc »

Code: Select all

Preparing to replace deluge-torrent 1.0.7-1 (using deluge-torrent_1.0.7-1_amd64.intrepid.deb) ...
Unpacking replacement deluge-torrent ...
dpkg: dependency problems prevent configuration of deluge-torrent:
 deluge-torrent depends on libboost-date-time1.34.1 (>= 1.34.1-8); however:
  Package libboost-date-time1.34.1 is not installed.
 deluge-torrent depends on libboost-filesystem1.34.1 (>= 1.34.1-8); however:
  Package libboost-filesystem1.34.1 is not installed.
 deluge-torrent depends on libboost-iostreams1.34.1 (>= 1.34.1-8); however:
  Package libboost-iostreams1.34.1 is not installed.
 deluge-torrent depends on libboost-python1.34.1 (>= 1.34.1-8); however:
  Package libboost-python1.34.1 is not installed.
 deluge-torrent depends on libboost-thread1.34.1 (>= 1.34.1-8); however:
  Package libboost-thread1.34.1 is not installed.
 deluge-torrent depends on python-gtk2; however:
  Package python-gtk2 is not installed.
 deluge-torrent depends on python-glade2; however:
  Package python-glade2 is not installed.
 deluge-torrent depends on python-xdg; however:
  Package python-xdg is not installed.
 deluge-torrent depends on python-notify; however:
  Package python-notify is not installed.
 deluge-torrent depends on notification-daemon | notification-daemon-xfce; however:
  Package notification-daemon is not installed.
  Package notification-daemon-xfce is not installed.
 deluge-torrent depends on python-dbus; however:
  Package python-dbus is not installed.
 deluge-torrent depends on librsvg2-common; however:
  Package librsvg2-common is not installed.
 deluge-torrent depends on python-pyopenssl; however:
  Package python-pyopenssl is not installed.
 deluge-torrent depends on python-setuptools; however:
  Package python-setuptools is not installed.
dpkg: error processing deluge-torrent (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 deluge-torrent
Can someone please help me telling me what I have to install?
Last edited by johnnyg on Fri Dec 19, 2008 9:15 am, edited 1 time in total.
Reason: wrong package
johnnyg
Top Bloke
Top Bloke
Posts: 1522
Joined: Sun Oct 28, 2007 4:00 am
Location: Sydney, Australia

Re: Installing .deb on Unbuntu 8.1 errors

Post by johnnyg »

run the .deb by double clicking instead of from the command line - it should install all the necessary dependencies.
pyc
Member
Member
Posts: 11
Joined: Thu Dec 18, 2008 11:07 am

Re: Installing .deb on Unbuntu 8.1 errors

Post by pyc »

I'm using dpkg from the command line (got no GUI) ... How can I do it then?
pyc
Member
Member
Posts: 11
Joined: Thu Dec 18, 2008 11:07 am

Re: Installing .deb on Unbuntu 8.1 errors

Post by pyc »

solved half of dependencies by using apt-get install deluge-torrent-common, but there's still:

Code: Select all

The following packages have unmet dependencies:
  deluge-torrent: Depends: libboost-date-time1.34.1 (>= 1.34.1-8) but 1.34.1-4ubuntu3 is to be installed
                  Depends: libboost-filesystem1.34.1 (>= 1.34.1-8) but 1.34.1-4ubuntu3 is to be installed
                  Depends: libboost-iostreams1.34.1 (>= 1.34.1-8) but 1.34.1-4ubuntu3 is to be installed
                  Depends: libboost-python1.34.1 (>= 1.34.1-8) but 1.34.1-4ubuntu3 is to be installed
                  Depends: libboost-thread1.34.1 (>= 1.34.1-8) but 1.34.1-4ubuntu3 is to be installed
markybob
Compulsive Poster
Compulsive Poster
Posts: 1230
Joined: Thu May 24, 2007 11:27 pm
Location: Chicago, IL, USA
Contact:

Re: Installing .deb on Unbuntu 8.1 errors

Post by markybob »

you downloaded the wrong package. you're using hardy but downloaded intrepid
pyc
Member
Member
Posts: 11
Joined: Thu Dec 18, 2008 11:07 am

Re: Installing .deb on Unbuntu 8.1 errors

Post by pyc »

i was always having problems with ubuntu names..... why they do it that way, really annoying and stupid.
jesperl
Moderator
Moderator
Posts: 89
Joined: Sun Dec 14, 2008 10:03 pm
Location: Copenhagen

Re: Installing .deb on Unbuntu 8.1 errors

Post by jesperl »

pyc wrote:I'm using dpkg from the command line (got no GUI) ... How can I do it then?
I recently installed the 1.0.7 .deb on Ubuntu Server 8.04 (no GUI). I wasn't sure how to handle the dependencies with the .deb, but as far as I remember, I used the following three-step procedure

1) sudo dpkg --install <file>.deb (which listed a screenful of dependencies...)
2) sudo apt-get update (which told me to run apt-get install -f to fix dependencies)
3) sudo apt-get install -f

I'm not sure the second step is necessary, since apt-get install -f installed the required dependencies.
johnnyg
Top Bloke
Top Bloke
Posts: 1522
Joined: Sun Oct 28, 2007 4:00 am
Location: Sydney, Australia

Re: Installing .deb on Unbuntu 8.1 errors

Post by johnnyg »

pyc wrote:I'm using dpkg from the command line (got no GUI) ... How can I do it then?

Code: Select all

sudo apt-get install libboost-date-time1.34.1 libboost-filesystem1.34.1 libboost-iostreams1.34.1 libboost-python1.34.1 libboost-thread1.34.1 librsvg2-common python-dbus python-glade2 python-notify python-pyopenssl python-setuptools python-xdg
Post Reply