guake icon indicating copy to clipboard operation
guake copied to clipboard

How to install latest 3.9.0 from PPA/apt?

Open sylvioalves opened this issue 2 years ago • 4 comments

Be sure to check the existing issues (both open and closed!), and make sure you are running the latest version of Guake.

For how to run the latest Guake in your computer, please refer to Install from source.

Describe the bug

A clear and concise description of what the bug is.

Expected behavior

A clear and concise description of what you expected to happen.

Actual behavior

What you actually get.

To Reproduce

Provide the steps to reproduce the behavior


Please run $ guake --support, and paste the results here. Don't put backticks (`) around it! The output already contains Markdown formatting. And make sure you run the command OUTSIDE the Guake.

sylvioalves avatar Jan 19 '23 16:01 sylvioalves

The ppa at https://launchpad.net/~linuxuprising/+archive/ubuntu/guake should have what you need.

Davidy22 avatar Feb 13 '23 13:02 Davidy22

Hi. Try this (works for 3.9.0 on my Ubuntu 22.04.2).

#!/bin/bash

if [ ! -f /etc/apt/sources.list.d/linuxuprising-ubuntu-guake-jammy.list ]; then
        sudo add-apt-repository ppa:linuxuprising/guake
        sudo apt-get update
fi

sudo apt install guake

carlosromel avatar Mar 15 '23 14:03 carlosromel

Not works for me

lsb_release -a
No LSB modules are available.
Distributor ID:	Zorin
Description:	Zorin OS 16.3
Release:	16
Codename:	focal

sudo apt install guake
Reading package lists... Done
Building dependency tree       
Reading state information... Done
guake is already the newest version (3.8.1-1~ppa~focal1).
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

Koc avatar Jun 05 '24 13:06 Koc