3rd Party Repository: GetDeb Apps
This repository is available for: Lucid Natty Oneiric Precise Quantal Raring
| Title: | Latest open source and freeware applications - Apps |
| Description: | GetDeb is an unofficial project with the mission to provide the latest open source and freeware applications for the current Ubuntu Linux release, in an easy to install manner. The GetDeb repository extends the official repositories by providing latest versions and new applications. Unlike the official packages, GetDeb packages do not have a predefined release schedule - new software versions are provided as they become available from their authors. There is a short and limited testing phase instead of a full testing cycle to ensure packaging quality, however it is less strict than Ubuntu's official requirements. |
| Daily Build: | no |
To setup the GetDeb Apps repositories:
wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add - sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu precise-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
Links
| External PPA Homepage | PPA History | All Versions of "ubuntu-tweak" |
Most recent updates in GetDeb Apps PPA (Precise)
| Date | Package | Version |
|---|---|---|
| 2013-06-17 21:08:39 UTC | fritzing | 0.8.0b-1~getdeb1 |
| 2013-06-17 20:08:20 UTC | bluegriffon | 1.7.1-1~getdeb1 |
| 2013-06-17 17:08:25 UTC | transmission-remote-gtk | 1.1.1-1~getdeb1 |
| 2013-06-12 20:10:14 UTC | synergy | 1.4.12-1~getdeb1 |
| 2013-06-12 20:10:14 UTC | frostwire | 5.6.0-1~getdeb1 |
Ubuntu-tweak Versions in GetDeb Apps PPA
UbuntuUpdates arbitrarily picked ubuntu-tweak as the main package of this PPA.
| Package | Release | Latest Version | Latest Update |
|---|---|---|---|
| ubuntu-tweak | raring | 0.8.5-1~getdeb1 | 2013-06-05 20:09:27 UTC |
| ubuntu-tweak | quantal | 0.8.3-1~getdeb1 | 2013-02-14 20:08:54 UTC |
| ubuntu-tweak | precise | 0.8.5-1~getdeb1 | 2013-06-05 20:09:26 UTC |
| ubuntu-tweak | oneiric | 0.6.2-1~getdeb1 | 2012-03-25 10:08:08 UTC |
| ubuntu-tweak | natty | 0.5.14-1~getdeb2~natty | 2011-11-27 10:09:46 UTC |
| ubuntu-tweak | lucid | 0.5.14-1~getdeb1~lucid | 2011-11-27 10:09:23 UTC |
Packages in PPA for Precise
See packages for selected release: Lucid Natty Oneiric Precise Quantal Raring
Deleted packages are displayed in grey.

Older Comments
I get this error message.
$ echo "deb http://archive.getdeb.net/ubuntu lucid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list bash: /etc/apt/sources.list.d/getdeb.list: Permission denied
@kolosh, sorry I should have mentioned that you either need to be root before running this or prefix the echo line with 'sudo'.
I've tried the puppes package and it didn't work. It installed and I can connect to the web UI, but the page is blank and I can't see the upnp device on both my windows-pc and my xbox.
I'm not sure if you already fixed in meantime, but for other people who will end up on this page:
Editing the repositories requires root privileges.
So you have several options to execute this correctly, I'll put down 2 of them:
1:
sudo bash -c "echo "deb http://archive.getdeb.net/ubuntu lucid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list"
2:
sudo -i; echo "deb http://archive.getdeb.net/ubuntu lucid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list
DONT use:
sudo echo "deb http://archive.getdeb.net/ubuntu lucid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list
because that will fail, since only the first part will be executed as root but the append write (the part after >>) will be done as the current user, that's why I added the bash -c part, that will make sure the entire command will be executed as root
I hope someone finds it useful!