元々、debian使いではないのでraspberry pi b+とraspbianでapache2の構築に一苦労
Logの変えたろうと思って一苦労するわ
vi /etc/apache2/apache2.conf
.
ErrorLog ${APACHE_LOG_DIR}/error.log
vi /etc/apache2/envvars
スクリプトの環境変数を変えるみたいやけど、後々面倒な事に成りそうなのでリンクを変える
cd /var/log/apache2
ln -s /www/logs/error.log error.log
ln -s /www/logs/access.log access.log
ln -s /www/logs/other_vhosts_access.log other_vhosts_access.log
ll
lrwxrwxrwx 1 root root 20 11月 16 06:27 access.log -> /www/logs/access.log
lrwxrwxrwx 1 root root 19 11月 16 06:27 error.log -> /www/logs/error.log
lrwxrwxrwx 1 root root 33 11月 16 06:27 other_vhosts_access.log -> /www/logs/other_vhosts_access.log
pepoと
元々、debian使いではないのでraspberry pi b+とraspbianでremote-handを再構築中だけど
いやー、まいったちゃん、なんでここまで複雑なん
apt-get install vim
vi /root/.bashrc
# ~/.bashrc:
# alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
# alias l='ls $LS_OPTIONS -lA'
#
# Some more alias to avoid making mistakes:
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
vi /etc/network/interfaces
iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1
apt-get install lrzsz
apt-get install daemontools daemontools-run
apt-get install automake
apt-get install libtool
aptitude install iptables-persistent
apt-get install apache2
pepoと
JavaScriptの圧縮を久々にしようとしたら新VerのMicrosoft Ajax Minifieが出ているので
早速Microsoft Ajax Minifier (version 5.11.5295.12304)をインストール
ところが以前のVerではコマンドプロント画面にファイル名のドラッグ&ドロップが出来たのに
新バージョンでは出来なくなっている
なのでcd C:\Users\papa\Desktop\ぱぱのもの\rasberry_pi
ディレクトリを変更せなあかんようになったそんでもって
ajaxminifier inputfile.js -o outputfile.min.js
C:\Users\papa\Desktop\ぱぱのもの\rasberry_pi>ajaxminifier remote-hand_pi.js -o remote-hand_pi.min.js
Microsoft Ajax Minifier (version 5.11.5295.12304)
JavaScript and CSS minification and verification command-line utility
Copyright 2013 Microsoft Corporation
Minifying 'C:\Users\papa\Desktop\ぱぱのもの\rasberry_pi\remote-hand_pi.js'
Original Size: 84651 bytes; reduced size: 43662 bytes (48.4% minification)
Gzip of source input approx. 13641 bytes (83.9% compression)
Gzip of minified output approx. 10241 bytes (87.9% compression)
C:\Users\papa\Desktop\ぱぱのもの\rasberry_pi>
見たいなコマンド圧縮せあかん
pepoと