玄箱ProにDebian Lennyをインストール (その2)

玄箱ProにHDDをくくりつけたので、実際にDebian Lennyをインストール。

といっても、

 

に書かれている手順に沿って作業するだけ。

LANと電源をつないで、電源をいれて起動。

telnet 192.168.11.150

のようにtelnetで接続。ルーターの設定画面に、どんなデバイスがつながっているのかの一覧表示があったので、それを見て、IPアドレスを確認すれば簡単。

User名 root、 Password kuroadminがデフォルト。

玄箱Proのは、通常DNSを引かない設定になっているので、ネットワークで外にでられない。これを出られるようにするために、/etc/nsswitch.confにhosts: files ndsと記載する。

/etc # echo "hosts: files dns" > /etc/nsswitch.conf

次に時計をあわせる。

Martin Michlmayrさんのページでは、rdateを使って設定しているが、うまくいかなかったので、dateコマンドで更新。

/etc # date
Thu Feb  3 02:51:04 JST 2022
/etc # rdate -s pool.ntp.org
rdate: timeout connecting to time server
/etc # date 071900142009
Sun Jul 19 00:14:00 JST 2009
/etc # hwclock -w

次にインストール用のテンポラリの領域をHDD内に確保。

/etc # fdisk /dev/sda
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won’t be recoverable.
The number of cylinders for this disk is set to 121601.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-121601, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-121601, default 121601): +256M
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
/etc # mkfs.ext2 /dev/sda1
mke2fs 1.27 (8-Mar-2002)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
64256 inodes, 257008 blocks
12850 blocks (5.00%) reserved for the super user
First data block=1
32 block groups
8192 blocks per group, 8192 fragments per group
2008 inodes per group
Superblock backups stored on blocks:
        8193, 24577, 40961, 57345, 73729, 204801, 221185
Writing inode tables: done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 34 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
/etc # mount -t ext2 /dev/sda1 /mnt/disk1

256MほどをHDD内に確保して、ext2でフォーマット、/mnt/disk1にマウントする。この領域は、インストールが始まったら、すぐにぶっ壊して作りなおすから、適当に。

では、インストールパッケージを/mnt/disk1にダウンロード。

/etc # cd /mnt/disk1
/mnt/disk1 # ls
lost+found
/mnt/disk1 # wget http://ftp.nl.debian.org/debian/dists/lenny/main/installer-armel/current/images/orion5x/netboot/buffalo/kuroboxpro/config-debian
Connecting to ftp.nl.debian.org[130.89.149.21]:80
config-debian        100% |***********************************************|  1535       00:00 ETA
/mnt/disk1 # wget http://ftp.nl.debian.org/debian/dists/lenny/main/installer-armel/current/images/orion5x/netboot/buffalo/kuroboxpro/initrd.buffalo
Connecting to ftp.nl.debian.org[130.89.149.21]:80
initrd.buffalo       100% |***********************************************|  3837 KB    00:00 ETA
/mnt/disk1 # wget http://ftp.nl.debian.org/debian/dists/lenny/main/installer-armel/current/images/orion5x/netboot/buffalo/kuroboxpro/uImage.buffalo
Connecting to ftp.nl.debian.org[130.89.149.21]:80
uImage.buffalo       100% |***********************************************|  1350 KB    00:00 ETA
/mnt/disk1 # ls -la
drwxr-xr-x    3 root     root         1024 Jul 19 00:23 .
drwxr-xr-x   10 root     root            0 Feb  3  2022 ..
-rw-r–r–    1 root     root         1535 Jul 19 00:22 config-debian
-rw-r–r–    1 root     root      3929611 Jul 19 00:23 initrd.buffalo
drwx——    2 root     root        12288 Jul 19 00:21 lost+found
-rw-r–r–    1 root     root      1383208 Jul 19 00:23 uImage.buffalo
/mnt/disk1 #

最後に、Shellコマンドを実行し、起動パラメータを変更して、HDDから起動するように変更する。

/mnt/disk1 # sh config-debian

Martin Michlmayrさんのページでは、ubootenv.bakをUSBにつないだメモリステイックに

コメントを残す

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください