| Instructions and Notes working with a KuroBox | |||
|---|---|---|---|
| <<< Previous | Next >>> | Blog | |
After installing a new HDD into the KuroBox (or perhaps one from another machine) the KuroBox will boot into a reserved mode. This reserved mode will run a telnet daemon and an ftp daemon which you can use to transfer your new image to the disk.
After you've telnet'ed into your KuroBox, the first thing to do is to prepare the HDD to accept an image. For this we will run the mfdisk -c command on our HDD:
# mfdisk -c /dev/hda
|
For example purposes for my own use I simply created two partitions:
After you've created all your partitions you then have to format them. I'm not 100% sure of all the formats that are supported by the KuroBox kernel, but I do know that ext3 works and is a good filesystem for most purposes. The command to format your partitions with ext3 is mkfs -j:
# mkfs -j /dev/hda1
|
Be sure create and format your swap partition too:
# mkswap /dev/hda2
|
Now that your partitions are ready to go, mount them:
# mkdir /mnt/root
# mount /dev/hda1 /mnt/root
|
| <<< Previous | Home | Next >>> |
| Conclusion | Installation |