How to install indicator Netspeed in Ubuntu 16.10? - Ask Ubuntu
i trying install indicator netspeed in ubuntu 16.10 using following commands:
sudo apt-get install build-essential libgtop2-dev libgtk-3-dev libappindicator3-dev git-core git clone https://github.com/ggleb/indicator-netspeed-unity.git cd indicator-netspeed-unity make sudo make install indicator-netspeed-unity &
unfortunately, returns error...
** (indicator-netspeed-unity:6641): warning **: couldn't register accessibility bus: did not receive reply. possible causes include: remote application did not send reply, message bus security policy blocked reply, reply timeout expired, or network connection broken.
(indicator-netspeed-unity:6641): glib-gio-error **: settings schema 'apps.indicators.netspeed-unity' not installed
have considered try indicator netspeed unity ? fork of mgedmin's netspeed indicator. despite name, should work panel supports appindicators.
quote webupd8 article.
indicator netspeed unity heavily modified indicator netspeed, adds following features:
- four panel display modes: download, upload or total (either merged or separated) network speed;
- configurable bit rate prefix;
- shows total downloaded , uploaded data current session in indicator menu ("all" item);
enable/disable padding - when enabled, preserves indentation of indicator text (i recommend disabling or else you'll end up
gap between icons , text);supports using custom icons (available via dconf);
- added settings menu allows changing upload/download prefix, change theme dark/light or current (system) theme , run nethogs more detailed analysis.
how install ?
you can either use apt-get install
command adding ppa first.
sudo apt-add-repository ppa:fixnix/netspeed sudo apt-get update sudo apt-get install indicator-netspeed-unity
otherwise, can install .deb
files
32 bit
wget http://ppa.launchpad.net/fixnix/netspeed/ubuntu/pool/main/i/indicator-netspeed-unity/indicator-netspeed-unity_1.04-yakkety0_i386.deb sudo dpkg -i indicator-netspeed-unity_1.04-yakkety0_i386.deb
64 bit
wget http://ppa.launchpad.net/fixnix/netspeed/ubuntu/pool/main/i/indicator-netspeed-unity/indicator-netspeed-unity_1.04-yakkety0_amd64.deb sudo dpkg -i indicator-netspeed-unity_1.04-yakkety0_amd64.deb
Comments
Post a Comment