アットウィキロゴ

カーネルビルドするとき
Fedora/CentOS
$ su
yum -y groupinstall "development tools"
した後、ncurses-develを入れる

Ubuntu/Debian
build-essentialとlibcurses-devを入れる

make config
1つずつ順に表示

make menuconfig
テキストベースでの設定画面表示

make xconfig
Qt使ったGUIでの設定画面表示

make gconfig
GTK+使ったGUIでの設定画面表示

複数スレッドを使ってのカーネルビルド
makeのオプションに-j (スレッド数)を指定

カーネルビルド
make -j 4 # 4は並列処理数
# 以下、root権限
make modules_install
make firmeware_install
make install
# 以下、Debianだけ(Ubuntuでは不要?)
update-initramfs -c -k `make kernelrelease`
update-grub2

  1. Ubuntu 12.04へのRedisインストール
    1. aptitude install rubygems
    2. gem install fpm
    3. wget http://redis.googlecode.com/files/redis-2.4.17.tar.gz
    4. tar xzf redis-2.4.17.tar.gz
    5. cd redis-2.4.17
    6. make
    7. mkdir -p /tmp/redis-2.4.17.$$/usr/bin
    8. cp src/{redis-benchmark,redis-check-aof,redis-check-dump,redis-cli,redis-server} /tmp/redis-2.4.17.$$/usr/bin
    9. fpm -s dir -t deb -n redis-server -v 2.4.17 -C /tmp/redis-2.4.17.5187/ -p redis-server-2.4.17_amd64.deb usr/bin/
    10. service redis_6379 stop
    11. dpkg -i redis-server-2.4.17_amd64.deb

DartEditor Eclipse pluginをjunoに入れるとおかしくなる
CoffeeScript plugin for Eclipse using XTextは、junoで動きそう。Xtextが要るっぽい。

NG01B0 は非静音タイプ
NG01BS は静音タイプ(Realforce91UBK-S)

CentOSは「/etc/sysconfig/network-scripts/ifcfg-ethX」、Ubuntuは「/etc/network/interfaces」
最終更新:2012年11月08日 15:57