3

SysPeek is a system monitor indicator that displays CPU usage, memory usage, swap usage, disk usage and network traffic.

Is there a version of Syspeek for Ubuntu 13.04?

Mitch
  • 107,631
Lisa
  • 31
  • 2

2 Answers2

6

I would strongly suggest against using dpkg -i to directly install packages since this has the potential to leave your system with unresolved dependencies.

Instead, I rebuilt the Oneiric package for Raring and copied it to my PPA:

ppa:george-edison55/george-edison Launchpad logo (Click here for instructions on using PPAs.)

Unfortunately the Launchpad builders are extremely busy right now and it looks like the package won't be built for another four hours or so. Once it completes, however, you will be able to simply run:

sudo apt-add-repository ppa:george-edison55/george-edison
sudo apt-get update
sudo apt-get install syspeek
Nathan Osman
  • 32,155
1

To install, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the commands below:

wget -O syspeek_0.2_all.deb https://launchpadlibrarian.net/83623660/syspeek_0.2~oneiric1_all.deb
sudo dpkg -i syspeek_0.2_all.deb 

When done search for syspeek in dash, and you will get:

enter image description here

enter image description here

Source:Upubuntu

Mitch
  • 107,631
  • 1
    Please don't provide shortened URLs to tell people to wget and install. Please use the full URL, or if it's in a PPA on Launchpad, specify how to add a PPA and install the package using the PPA. – dobey May 04 '13 at 18:05
  • 1
    Also, running dpkg -i directly can be dangerous, since dpkg does not take care of install dependencies. – Nathan Osman May 04 '13 at 18:20