adwaita
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Perform installation as root | |
| # Install prereqs | |
| yum -y install libcurl libcurl-devel rrdtool rrdtool-devel rrdtool-prel libgcrypt-devel gcc make gcc-c++ | |
| # Get Collectd, untar it, make it and install | |
| cd /tmp/ | |
| wget http://collectd.org/files/collectd-5.4.2.tar.gz | |
| tar zxvf collectd-5.4.2.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Images List | |
| +--------------------------------------+--------------------------------------------------------------+ | |
| | ID | Name | | |
| +--------------------------------------+--------------------------------------------------------------+ | |
| | f70ed7c7-b42e-4d77-83d8-40fa29825b85 | CentOS 6.4 | | |
| | ea8fdf8a-c0e4-4a1f-b17f-f5a421cda051 | CentOS 6.5 | | |
| | 41e59c5f-530b-423c-86ec-13b23de49288 | CentOS 6.5 (PVHVM) | | |
| | c6e2fed0-75bf-420d-a744-7cfc75a1889e | Red Hat Enterprise Linux 6.4 | | |
| | 1705c794-5d7e-44d6-87da-596e3cf92144 | Red Hat Enterprise Linux 6.5 | | |
| | 046832f9-4549-4b38-a903-11acecac8cb9 | Red Hat Enterprise Linux 6.5 (PVHVM) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.prochera.gist.typed; | |
| import scala.concurrent.Future; | |
| public interface Named { | |
| public Future<String> name(); | |
| } |
https://bbs.archlinux.org/viewtopic.php?pid=1482240#p1482240
sudo patch /usr/share/wicd/curses/wicd-curses.py < /tmp/wicd.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import RPi.GPIO as GPIO | |
| GPIO.setmode(GPIO.BCM) | |
| GPIO.setup(17,GPIO.OUT) | |
| GPIO.output(17,0) | |
| GPIO.setup(15,GPIO.OUT) | |
| GPIO.output(15,0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Disable power mgt | |
| sudo su | |
| echo "wireless-power off" >> /etc/network/interfaces | |
| echo "options 8188eu rtw_power_mgnt=0" > /etc/modprobe.d/8188eu.conf | |
| echo "0" > /sys/module/8192cu/parameters/rtw_power_mgnt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 76 wget https://dl.dropboxusercontent.com/u/80256631/8188eu-20140616.tar.gz | |
| 77 tar -zxvf 8188eu-20140616.tar.gz | |
| 78 sudo install -p -m 644 8188eu.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless | |
| 79 sudo insmod /lib/modules/$(uname -r)/kernel/drivers/net/wireless/8188eu.ko | |
| ------------------------------------ | |
| Linux pi-node1 3.12.26+ | |
| 8188eu-20140705.tar.gz |