Deluge blank screen

General support for problems installing or using Deluge
Post Reply
Haier

Deluge blank screen

Post by Haier »

I'm getting a blank screen in deluge after rebooting it (server crashed) and I'm using unbuntu 10.04 and my deluge ic currently 1.3.2

When I try to update it I get this error,

Code: Select all

Reading package lists... Done
W: GPG error: http://ppa.launchpad.net lucid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C5E6A5ED249AD24C
When trying to run deluge-console - deluge-gtk I get a deluge-console command not found and it used to work before the crash...

also when I run deluge-web --fork

Code: Select all

sar@sar:~$ Traceback (most recent call last):
  File "/usr/bin/deluge-web", line 9, in <module>
    load_entry_point('deluge==1.3.3', 'console_scripts', 'deluge-web')()
  File "/usr/lib/pymodules/python2.6/deluge/ui/web/web.py", line 138, in start
    web.start()
  File "/usr/lib/pymodules/python2.6/deluge/ui/web/web.py", line 125, in start
    self.server.start()
  File "/usr/lib/pymodules/python2.6/deluge/ui/web/server.py", line 663, in start
    self.start_ssl()
  File "/usr/lib/pymodules/python2.6/deluge/ui/web/server.py", line 679, in start_ssl
    self.socket = reactor.listenSSL(self.port, self.site, ServerContextFactory())
  File "/usr/lib/python2.6/dist-packages/twisted/internet/posixbase.py", line 371, in listenSSL
    p.startListening()
  File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 855, in startListening
    raise CannotListenError, (self.interface, self.port, le)
twisted.internet.error.CannotListenError: Couldn't listen on any:8112: [Errno 98] Address already in use.

Anyone got any idea what might be wrong?


Edit:

Another thing, I used to use this in sudo nano /etc/apt/sources.list
deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu lucid main
But it doesn't seem to work anymore, has it changed? Thanks!
funnel
Member
Member
Posts: 30
Joined: Fri Dec 09, 2011 9:31 pm

Re: Deluge blank screen

Post by funnel »

According to the download page, your PPA repository source is correct. To double-check, you could delete the line from
/etc/apt/sources.list
/etc/apt/sources.list.d

Then, do the usual:
sudo apt-get update
sudo apt-get upgrade

If there are no errors, re-add the PPA (adds GPG key automatically) and check for broken dependencies:
sudo add-apt-repository ppa:deluge-team/ppa
sudo apt-get update
sudo apt-get upgrade
sudo apt-get check

Then, test deluge again.

If you still get callback errors, look more closely at them:
Haier wrote:my deluge ic currently 1.3.2
yet...
Haier wrote:$ deluge-web --fork
File "/usr/bin/deluge-web", line 9, in <module>
load_entry_point('deluge==1.3.3', 'console_scripts', 'deluge-web')() ...
Before fixing the PPA and upgrading, your versions didn't match. If they still don't, you may have to reinstall or purge/install the deluge package (and maybe libtorrent-rasterbar). If you purge, you might want to backup your torrents beforehand:
~/.config/deluge/state

Also weird:
Haier wrote:twisted.internet.error.CannotListenError: Couldn't listen on any:8112: [Errno 98] Address already in use.
Try:
sudo killall deluge*
Post Reply