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
| curl -L http://toolbelt.treasuredata.com/sh/install-redhat.sh | sh | |
| yum install zeromq zeromq-devel | |
| /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-zmq-pub |
- これを見たので試してみたくなった http://cards.hateblo.jp/entry/card-number-kakunin/
- IP-PBX
http://www.raspberry-asterisk.org/
- Cryptocurrency Mining Controller
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
| wget http://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.gz?r=&ts=1399443444&use_mirror=jaist | |
| tar zxvf boost_1_55_0.tar.gz | |
| cd boost_1_55_0 | |
| ./bootstrap.sh | |
| ./b2 install -j1 link=static address-model=64 install | |
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
| http://tips.hecomi.com/entry/20130108/1357653054 | |
| npm search phantomjs | |
| npm install phantom cheerio |
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
| FROM centos:6.4 | |
| MAINTAINER you21979 "[email protected]" | |
| RUN echo 'root:hogehoge' | /usr/sbin/chpasswd | |
| RUN yum install openssh openssh-clients openssh-server vim -y | |
| RUN mkdir -p /var/run/sshd ; chmod -rx /var/run/sshd | |
| RUN ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key |