It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
gpu0.value [sudo] password for nobody:
[gpu_temperature]
user root
gpu0.value No protocol specified
gpu0.value No protocol specified
aticonfig: This program must be run as root when no X server is active
sudo munin-run gpu_temperature
root@nmc-GA-790FXTA-UD5:/etc/munin/plugins# ls -lh
total 12K
lrwxrwxrwx 1 root root 28 2011-06-02 00:56 cpu -> /usr/share/munin/plugins/cpu
lrwxrwxrwx 1 root root 33 2011-06-02 00:56 cpuspeed -> /usr/share/munin/plugins/cpuspeed
lrwxrwxrwx 1 root root 27 2011-06-02 00:56 df -> /usr/share/munin/plugins/df
-rwxrwxrwx 1 root root 418 2011-06-02 09:53 gpu_fans
-rwxrwxrwx 1 root root 388 2011-06-02 09:56 gpu_load
-rwxrwxrwx 1 root root 361 2011-06-02 09:55 gpu_temperature
lrwxrwxrwx 1 root root 32 2011-06-02 00:56 if_err_eth0 -> /usr/share/munin/plugins/if_err_
lrwxrwxrwx 1 root root 28 2011-06-02 00:56 if_eth0 -> /usr/share/munin/plugins/if_
lrwxrwxrwx 1 root root 29 2011-06-02 00:56 load -> /usr/share/munin/plugins/load
lrwxrwxrwx 1 root root 31 2011-06-02 00:56 memory -> /usr/share/munin/plugins/memory
lrwxrwxrwx 1 root root 29 2011-06-02 00:56 swap -> /usr/share/munin/plugins/swap
lrwxrwxrwx 1 root root 31 2011-06-02 00:56 uptime -> /usr/share/munin/plugins/uptime
lrwxrwxrwx 1 root root 30 2011-06-02 00:56 users -> /usr/share/munin/plugins/users
root@nmc-GA-790FXTA-UD5:/etc/munin/plugins#
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title fan speed
graph_vlabel percent
gpu0.label 5830_0
gpu1.label 5830_1
gpu2.label 5830_2
gpu3.label 6870
EOM
exit 0;;
esac
echo -n "gpu0.value "; DISPLAY=:0.0 aticonfig --pplib-cmd "get fanspeed 0" | awk '/Result/ {print $4}' | cut -d "%" -f1
echo -n "gpu1.value "; DISPLAY=:0.1 aticonfig --pplib-cmd "get fanspeed 0" | awk '/Result/ {print $4}' | cut -d "%" -f1
echo -n "gpu2.value "; DISPLAY=:0.2 aticonfig --pplib-cmd "get fanspeed 0" | awk '/Result/ {print $4}' | cut -d "%" -f1
echo -n "gpu3.value "; DISPLAY=:0.3 aticonfig --pplib-cmd "get fanspeed 0" | awk '/Result/ {print $4}' | cut -d "%" -f1
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title temperature
graph_vlabel celsius
gpu0.label 5830_0
gpu1.label 5830_1
gpu2.label 5830_2
gpu3.label 6870
EOM
exit 0;;
esac
echo -n "gpu0.value "; DISPLAY=:0 aticonfig --odgt --adapter=0 | awk '/Sensor/ {print $5}'
echo -n "gpu1.value "; DISPLAY=:0 aticonfig --odgt --adapter=1 | awk '/Sensor/ {print $5}'
echo -n "gpu2.value "; DISPLAY=:0 aticonfig --odgt --adapter=2 | awk '/Sensor/ {print $5}'
echo -n "gpu3.value "; DISPLAY=:0 aticonfig --odgt --adapter=3 | awk '/Sensor/ {print $5}'
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title current load
graph_vlabel load
gpu0.label 5830_0
gpu1.label 5830_1
gpu2.label 5830_2
gpu3.label 6870
EOM
exit 0;;
esac
echo -n "gpu0.value "; DISPLAY=:0 aticonfig --odgc --adapter=0 | awk '/load/ {print $4}' | cut -d "%" -f1
echo -n "gpu1.value "; DISPLAY=:0 aticonfig --odgc --adapter=1 | awk '/load/ {print $4}' | cut -d "%" -f1
echo -n "gpu2.value "; DISPLAY=:0 aticonfig --odgc --adapter=2 | awk '/load/ {print $4}' | cut -d "%" -f1
echo -n "gpu3.value "; DISPLAY=:0 aticonfig --odgc --adapter=3 | awk '/load/ {print $4}' | cut -d "%" -f1
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title hashrate
graph_vlabel hashrate
rate.label hashrate
EOM
exit 0;;
esac
echo -n "rate.value "; curl -s http://deepbit.net/api/| awk -F, '{print $2}' | cut -d":" -f2