玄箱HG(lenny) Apache2 再起動時にでる警告を消す

玄箱HG(lenny) Apache2 再起動時に警告がでる apache2 再起動やら設定リロードなどで下記エラーが出る場合の対処 エラー内容 以下のようなログがでる Could not reliably determine the server's fully qualified domain name, using 192.168.24.2 for ServerName ... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.24.2 for ServerName ...done. 対処 cd /etc/apache2 vi apache2.conf ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files....

2012-05-28 ·  2012-05-28 · 1 分 · 98 文字

Ubuntu11.10 chromeでyoutubeを見ると、どれを見ても青いバグを解消する

Ubuntu11.10 chromeでyoutubeを見ると、どれを見ても青いバグを解消する という現状が起きた時の対処があった http://ameblo.jp/newcomer-t/entry-11244836873.html 解決方法? sudo mkdir /etc/adobe echo -e "EnableLinuxHWVideoDecode=1\nOverrideGPUValidation=true" | sudo tee /etc/adobe/mms.cfg > /dev/null

2012-05-20 ·  2012-05-20 · 1 分 · 17 文字

mysql で sql ファイルを流し実行する

mysql で sql ファイルを流し実行する sql の記載されたファイルの中身を mysql で実行する mysql -u [username] -h [hostname] -p # パスワード入力 use [database_name] SET AUTOCOMMIT=0; # auto commit 無効化 START TRANSACTION; # 明示的にトランザクション開始 source /path/to/sqlファイル; commit; 参考

2012-05-04 ·  2012-05-04 · 1 分 · 32 文字

Ubuntu geditショートカットキーを変更する

Ubuntu geditショートカットキーを変更する 設定ファイル 設定ファイルの先頭のコメント外し設定する vim ~/.config/gedit/accels

2012-03-31 ·  2012-03-31 · 1 分 · 6 文字

android メモリリーク調査

android メモリリーク調査 Eclise 新規ソフトウェアーより、以下を追加 BIRT http://download.eclipse.org/birt/update-site/3.7 BIRT 3.7 Engine OSGi Runtime SDK 0.0.0 mat http://download.eclipse.org/mat/1.1.1/update-site/ DDMS、Deviceより。Heapを選択。↓矢印のついているheapアイコンでhprofファイルが作成される できたhprofファイルは現状バグっているらしいので、hprofツールで再度加工しなおす。 /env/gb234/android/out/host/linux-x86/bin/hprof-conv system_process.hprof ./TMP/temp.hprof eclipseファイルを開くから、できたhprofを選択すると、展開され、hprof取得タイミングでのメモリ情報が表示される。

2011-12-01 ·  2011-12-01 · 1 分 · 21 文字