1

** PLEASE HELP **

i attempted to install the JUPITER app on 3 different occasions an all i keep getting as end result is ..... Cannot add PPA: 'ppa:webupd8team/jupiter'. Please check that the PPA name or format is correct.

does anyone hav a link to solve my problem ?

  • 2
    http://sourceforge.net/projects/jupiter/ "As of 2013-06-25, this project is no longer under active development." Since I couldn't find the PPA you mention I asume such PPA no longer exist because of the project's death. – xangua Jul 09 '15 at 05:09
  • maybe this could help anyway: https://askubuntu.com/questions/285434/is-there-a-power-saving-application-similar-to-jupiter – DJCrashdummy Jul 09 '15 at 05:35

1 Answers1

1

According to the WebUpd8 website:

Update: Jupiter has been discontinued. I suggest trying TLP instead.

To install it, open a terminal (press Ctrl+Alt+T) and run:

sudo -i
add-apt-repository ppa:linrunner/tlp
apt-get update
apt-get install tlp tlp-rdw
tlp start

Make sure to read what the WebUpd8 website has to say about TLP or what the TLP FAQ says.


If you absolutely must have Jupiter, it's available via the JoliCloud PPA repository.

Note that the following assumes:

  • You're using Ubuntu 13.04 or later.
  • You're OK with completely unsupported software.
  • You realize the software is discontinued.

To install it, open a terminal and run:

sudo -i
add-apt-repository -y ppa:jolicloud-team/ppa
cd /etc/apt/sources.list.d
mv jolicloud-team-ubuntu-ppa-*.list jolicloud-team-ubuntu-ppa.list
sed -i "s/$(lsb_release -cs)/raring/g" jolicloud-team-ubuntu-ppa.list
cd -
apt-get update
apt-fast install jupiter

If you're installing to an Asus Eee PC, run the following as well:

sudo apt-get install jupiter-support-eee
Olathe
  • 4,240