Superkaramba unter GNOME

nomax

nomax

Eroberer
>>heyho, hab mir heute mal Superkaramba eingerichtet, ist soweit auch alles stimmig mit den Designs bzw Themes.

Ich hab Superkaramba auch jeweils über die theme-Datei konfiguriert, die Anzeige klappt bisher ohne Probleme, bei mir macht nur die Aktualisierung Terz. Ich hab die Intervalltimings auf 100 (1s) eingestellt, aber trotzdem muss ich selbst aktualisieren und aktuelle Wert zu erhalten. Scheint als würde die Daten nicht von selber angefordert werden.

Hier mal mein Script:

Code:
# by Sadox... no other comments #

karamba x=100 y=210 w=280 h=960 interval=1000 locked=true right=true
defaultfont color=255,255,255 fontsize=9 font="Bitstream Vera Sans" shadow=1 bgcolor=0,0,0

image x=105 y=0 path="image/comp.png"
image x=113 y=250 path="image/DDR.png"
image x=125 y=475 path="image/hdd1.png"
image x=109 y=120 path="image/intel.png"
image x=125 y=360 path="image/net.png.alt"

text x=15 y=6 value="User:" fontsize=11
text x=180 y=6 sensor=program program="echo $USER" fontsize=11
text x=15 y=25 value="Hostname:" fontsize=11
text x=180 y=25 sensor=program program=hostname fontsize=11
text x=15 y=44 value="Kernel:" fontsize=11
text x=180 y=44 sensor=program program="uname -r" fontsize=11
text x=15 y=63 value="Machine:" fontsize=11
text x=180 y=63 sensor=program program="uname -m" fontsize=11

text x=15 y=80 value="Uptime:" fontsize=11
text x=180 y=80 sensor=uptime format="%dd %Hh:%Mm" fontsize=11

#text x=15 y=85 value="CPU Type:" fontsize=11
#text x=180 y=158 sensor=program program="uname -p" fontsize=11

#text x=15 y=177 value="CPU Cache:" fontsize=11
#text x=180 y=177 sensor=program program="cat /proc/cpuinfo |grep 'cache size' |awk '{print $4 $5}'" fontsize=11

#text x=15 y=196 value="CPU Bogomips:" fontsize=11
#text x=180 y=196 sensor=program program="cat /proc/cpuinfo |grep bogomips |awk '{print $3}'" fontsize=11

text x=15 y=97 value="CPU Freq:" fontsize=11
text x=180 y=97 sensor=program program="cat /proc/cpuinfo |grep 'cpu MHz' |awk '{print $4}'" fontsize=11

#text x=15 y=234 value="CPU Temp:" fontsize=11
#text x=180 y=234 sensor=program program="/usr/bin/sensors |grep 'CPU Temp' |awk '{print $3}'" fontsize=11 interval=10000

text x=45 y=170 sensor=program program="cat /proc/cpuinfo |grep 'model name' |sed -e 's/.*: //'"
graph x=15 y=200 w=250 h=50 sensor=cpu points=100 color=1,247,1

text x=15 y=185 value="CPU Work:" color=1,247,1 fontsize=11
text x=235 y=185 sensor=cpu format="%v%" color=1,247,1 fontsize=11
text x=165 y=200 sensor=program program="cat /proc/cpuinfo | grep 'fake' | sed -e 's/.*: //'| sed -e 's/\..../ MHz/'" interval=1000 color=1,247,2

text x=15 y=260 value="RAM Memory:" fontsize=11
text x=72 y=280 value="Used:" fontsize=11
text x=180 y=280 sensor=memory format="%umb MB" fontsize=11
text x=72 y=300 value="Free:" fontsize=11
text x=180 y=300 sensor=memory format="%tm MB" fontsize=11
bar  x=55  y=320 path="image/barra.png" sensor=memory format="%umb" interval=1000
image x=55  y=320 path="image/barrab.png"

#text x=123 y=360 value="Buffer:" fontsize=11
#text x=80 y=380 sensor=memory format="%um MB from %tm MB" fontsize=11
#bar  x=55  y=400 path="image/barra.png" sensor=memory format="%um" interval=10000
#image x=55  y=400 path="image/barrab.png"

text x=15 y=340 value="Net Info:" fontsize=11
text x=180 y=340 sensor=program program="/sbin/ifconfig eth0 | grep 'inet' | cut -d : -f2 | cut -d ' ' -f1" interval=600000 fontsize=11
graph x=15 y=360 w=150 h=50 color=255,255,0 points=100 sensor=network format="%out" device="eth0"  max=40
graph x=15 y=360 w=250 h=50 color=1,247,1 points=100 sensor=network format="%in" device="eth0"  max=300

text x=15 y=420 value="Download:" color=1,247,1 fontsize=11
text x=109 y=420 sensor=network device="eth0" format="%in kB/s" decimals=1 color=1,247,1 fontsize=11
text x=180 y=420 sensor=program program="/sbin/ifconfig eth0 | grep 'RX byte' | awk '{print $3 $4}'" color=1,247,1 fontsize=11

text x=15 y=445 value="Upload:" color=255,255,0 fontsize=11
text x=109 y=446 sensor=network device="eth0" format="%out kB/s" decimals=1 color=255,255,0 fontsize=11
text x=180 y=445 sensor=program program="/sbin/ifconfig eth0 | grep 'TX byte' | awk '{print $7 $4}'" color=255,255,0 fontsize=11



text x=15 y=468 value="Drives:" fontsize=11

text x=15 y=510 value="/:" fontsize=11
text x=180 y=510 sensor=disk format="Used: %up%" mountpoint="/" fontsize=11
bar  x=55  y=525 path="image/barra.png" sensor=disk mountpoint="/" interval=10000
image x=55  y=525 path="image/barrab.png"
text x=143 y=535 value="of" fontsize=11
text x=60 y=535 sensor=disk format="%u MB" mountpoint="/" fontsize=11
text x=180 y=535 sensor=disk format="%t MB" mountpoint="/" fontsize=11


text x=15 y=560 value="/home:" fontsize=11
text x=180 y=560 sensor=disk format="Used: %up%" mountpoint="/home" fontsize=11
bar  x=55  y=575 path="image/barra.png" sensor=disk mountpoint="/home" interval=10000
image x=55  y=575 path="image/barrab.png"
text x=143 y=585 value="of" fontsize=11
text x=60 y=585 sensor=disk format="%u MB" mountpoint="/home" fontsize=11
text x=180 y=585 sensor=disk format="%t MB" mountpoint="/home" fontsize=11


text x=15 y=610 value="/media/medien:" fontsize=11
text x=180 y=610 sensor=disk format="Used: %up%" mountpoint="/media/medien" fontsize=11
bar  x=55  y=625 path="image/barra.png" sensor=disk mountpoint="/media/medien" interval=10000
image x=55  y=625 path="image/barrab.png"
text x=143 y=635 value="of" fontsize=11
text x=60 y=635 sensor=disk format="%u MB" mountpoint="/media/medien" fontsize=11
text x=180 y=635 sensor=disk format="%t MB" mountpoint="/media/medien" fontsize=11





text x=15 y=710 value="/media/filme:" fontsize=11
text x=180 y=710 sensor=disk format="Used: %up%" mountpoint="/media/filme" fontsize=11
bar  x=55  y=725 path="image/barra.png" sensor=disk mountpoint="/media/filme" interval=10000
image x=55  y=725 path="image/barrab.png"
text x=143 y=735 value="of" fontsize=11
text x=60 y=735 sensor=disk format="%u MB" mountpoint="/media/filme" fontsize=11
text x=180 y=735 sensor=disk format="%t MB" mountpoint="/media/filme" fontsize=11


text x=15 y=760 value="/media/musik:" fontsize=11
text x=180 y=760 sensor=disk format="Used: %up%" mountpoint="/media/musik" fontsize=11
bar  x=55  y=775 path="image/barra.png" sensor=disk mountpoint="/media/musik" interval=10000
image x=55  y=775 path="image/barrab.png"
text x=143 y=785 value="of" fontsize=11
text x=60 y=785 sensor=disk format="%u MB" mountpoint="/media/musik" fontsize=11
text x=180 y=785 sensor=disk format="%t MB" mountpoint="/media/musik" fontsize=11


text x=15 y=810 value="/media/games:" fontsize=11
text x=180 y=810 sensor=disk format="Used: %up%" mountpoint="/media/games" fontsize=11
bar  x=55  y=825 path="image/barra.png" sensor=disk mountpoint="/media/games" interval=10000
image x=55  y=825 path="image/barrab.png"
text x=143 y=835 value="of" fontsize=11
text x=60 y=835 sensor=disk format="%u MB" mountpoint="/media/games" fontsize=11
text x=180 y=835 sensor=disk format="%t MB" mountpoint="/media/games" fontsize=11


text x=15 y=860 value="/media/speicher:" fontsize=11
text x=180 y=860 sensor=disk format="Used: %up%" mountpoint="/media/speicher" fontsize=11
bar  x=55  y=875 path="image/barra.png" sensor=disk mountpoint="/media/speicher" interval=10000
image x=55  y=875 path="image/barrab.png"
text x=143 y=885 value="of" fontsize=11
text x=60 y=885 sensor=disk format="%u MB" mountpoint="/media/speicher" fontsize=11
text x=180 y=885 sensor=disk format="%t MB" mountpoint="/media/speicher" fontsize=11


text x=15 y=910 value="/media/reserve:" fontsize=11
text x=180 y=910 sensor=disk format="Used: %up%" mountpoint="/media/reserve" fontsize=11
bar  x=55  y=925 path="image/barra.png" sensor=disk mountpoint="/media/reserve" interval=10000
image x=55  y=925 path="image/barrab.png"
text x=143 y=935 value="of" fontsize=11
text x=60 y=935 sensor=disk format="%u MB" mountpoint="/media/reserve" fontsize=11
text x=180 y=935 sensor=disk format="%t MB" mountpoint="/media/reserve" fontsize=11

Kann es sein dass ich zusätzliche KDE-Pakete unter Gnome nachinstallieren muss ?

Danke für die Hilfe,
 
>>Naja...hat trotzdem Jemand eine bessere Lösung als gdesklets oder gkrellm ;-) ?
 
Kannst ja Superkaramba mal per Konsole starten und schauen, ob die irgendwelche Fehler ausspuckt ...
 

Ähnliche Themen

Zugriff Ubuntu 16.04. auf Freigabe 18.04. LTS nicht möglich

NagiosGrapher 1.7.1 funktioniert nicht

rsnapshot und ein Rechteproblem?

dovecot und postfix Konfiguration Problem

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

Zurück
Oben