表示言語を英語にする

# dpkg-reconfigure locales
# reboot

ホスト名を設定する

# vi /etc/hostname
KUROBOX-PRO
:wq
# vi /etc/hosts
127.0.0.1       localhost KUROBOX-PRO
:wq

df 実行時に root device disk が UUID で出力されるのを止める

# vi /etc/initramfs-tools/scripts/local-premount/rootdevice

#!/bin/sh
#  Mimic a "normal" mount of root device by translating the device link 
#  (UUID or LABEL) to the actual device.

set -e

[ "$1" = prereqs ] && exit 0

REALROOT=`readlink -f ${ROOT}`
[ "${REALROOT}" ] && echo "ROOT=${REALROOT}" >> /conf/param.conf

exit 0

# chmod +x /etc/initramfs-tools/scripts/local-premount/rootdevice
# update-initramfs -u
update-initramfs: Generating /boot/initrd.img-3.2.0-4-orion5x
flash-kernel: installing version 3.2.0-4-orion5x
Generating kernel u-boot image... done.
Taking backup of uImage.buffalo.
Installing new uImage.buffalo.
Generating initramfs u-boot image... done.
Taking backup of initrd.buffalo.
Installing new initrd.buffalo.

# reboot
# df
Filesystem     1K-blocks    Used Available Use% Mounted on
rootfs         239758888 1019300 226560492   1% /
udev               10240       0     10240   0% /dev
tmpfs              12560     116     12444   1% /run
/dev/sda2      239758888 1019300 226560492   1% /
tmpfs               5120       0      5120   0% /run/lock
tmpfs              98220       0     98220   0% /run/shm
/dev/sda1         233191   12534    208216   6% /boot
更に / がふたつ出力されるのが気になるなら
# vi .bashrc
alias df='df -x rootfs -x tmpfs'
# df
Filesystem     1K-blocks    Used Available Use% Mounted on
/dev/sda2      239758888 1019300 226560492   1% /
/dev/sda1         233191   12534    208216   6% /boot
こうなる
最終更新:2015年03月12日 09:01