Results 1 to 5 of 5

Thread: Guake will not launch

  1. #1
    Join Date
    Dec 2009
    Location
    Texas
    Beans
    33
    Distro
    Ubuntu 11.04 Natty Narwhal

    Guake will not launch

    I'm running ubuntu 11.04, when I attempt to start guake I get the spinner and I see the starting guake in the menu bar and then nothing....is it not compatible with my version yet?

    Code:
    helium01# guake
    Traceback (most recent call last):
      File "/usr/lib/guake/guake.py", line 1353, in <module>
        if not main():
      File "/usr/lib/guake/guake.py", line 1296, in main
        instance = Guake()
      File "/usr/lib/guake/guake.py", line 620, in __init__
        self.add_tab()
      File "/usr/lib/guake/guake.py", line 1137, in add_tab
        final_params = self.get_fork_params(default_params)
      File "/usr/lib/guake/guake.py", line 1086, in get_fork_params
        self.update_proxy_vars()
      File "/usr/lib/guake/guake.py", line 1102, in update_proxy_vars
        ssl_port = self.client.get_string('/system/proxy/secure_port')
    glib.GError: Type mismatch: Expected `string' got `int' for key /system/proxy/secure_port

  2. #2
    Join Date
    Dec 2009
    Location
    Texas
    Beans
    33
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Guake will not launch

    I've fixed this issue....in /usr/lib/guake/guake.py

    Code:
    proxy = '/system/http_proxy/'
                    ssl_host = self.client.get_string('/system/proxy/secure_host')
                    #ssl_port = self.client.get_string('/system/proxy/secure_port')
                    ssl_port = self.client.get_int('/system/proxy/secure_port')
    I commented out the get_string section and added the the get_int section below it

    I found this fix on the guake website for anybody interested...

  3. #3
    Join Date
    Dec 2009
    Location
    Texas
    Beans
    33
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Guake will not launch

    I've fixed this issue....in /usr/lib/guake/guake.py

    Code:
    proxy = '/system/http_proxy/'
                    ssl_host = self.client.get_string('/system/proxy/secure_host')
                    #ssl_port = self.client.get_string('/system/proxy/secure_port')
                    ssl_port = self.client.get_int('/system/proxy/secure_port')
    I commented out the get_string section and added the the get_int section below it

  4. #4
    Join Date
    Aug 2009
    Beans
    26
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Exclamation Re: Guake will not launch

    I tried your suggestion, but guake still won't appear for more than half a second after I turn it on.
    54 48 45 20 47 41 4D 45 0A

  5. #5
    Join Date
    Sep 2009
    Beans
    1

    Re: Guake will not launch

    i'm solved by:

    Code:
    cd /usr/share/pixmaps/guake/
    cp guake-tray.default.png guake-tray.png

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •