More actions
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
|website= | |website= | ||
|source= | |source= | ||
}} | }}0 | ||
'''Boot | '''Boot It''' is a Linux loader that allows users to run disc images from an SD card or USB device without the need for partitioning. It functions similarly to a Linux live CD, but with the added ability to make changes to the "disc" during the Linux session. In addition, it is also capable of booting normal Linux partitions. | ||
== Minimum Requirements == | == Minimum Requirements == | ||
*1 GB SD card | *1 GB SD card | ||
*USB Keyboard | *USB Keyboard | ||
Line 63: | Line 62: | ||
you want to reconfigure "boot it", delete that file. | you want to reconfigure "boot it", delete that file. | ||
== | ==Screenshot== | ||
[[Image:bootitwii.jpg]] | [[Image:bootitwii.jpg]] | ||
Line 86: | Line 85: | ||
== Known Problems == | == Known Problems == | ||
*If you have a USB mouse plugged in, it could interfere with the USB keyboard. If the keyboard doesn't work, then interchange the usb ports where they are plugged, or unplug the mouse. | *If you have a USB mouse plugged in, it could interfere with the USB keyboard. If the keyboard doesn't work, then interchange the usb ports where they are plugged, or unplug the mouse. | ||
Revision as of 07:01, 27 Ocak 2023
Boot it | |
---|---|
File:Bootitwii.jpg | |
General | |
Author | nuvalo |
Type | Operating systems |
Version | 2009 |
License | Apache License 2.0 |
Last Updated | 2009/01/11 |
Links | |
Download | |
0 Boot It is a Linux loader that allows users to run disc images from an SD card or USB device without the need for partitioning. It functions similarly to a Linux live CD, but with the added ability to make changes to the "disc" during the Linux session. In addition, it is also capable of booting normal Linux partitions.
Minimum Requirements
- 1 GB SD card
- USB Keyboard
- Wii with TPHack or Homebrew Channel Wii
- Wii Linux disc image, such as
- Xwhiite Linux Wii or
- Bliight (requires 2GB card)
Installation
- Copy the "apps" directory to the root of your SDCard
- If you want to boot a preinstalled wiilinux filesystem (using whiite or whiite installer), copy the "pivot_root" and "chroot" files into the "extra" directory to your filesystem "/bin" directory, and create a directory called "/old-root" in the root of your filesystem.
- If you want to boot any of the filesystem images (bliight.img or xwhiite.img), copy them to the root of your device (SDCard or USB hard disk)
Usage
1) Launch "boot-it" using the Homebrew Channel. The first time it will show you a menu:
Boot installed system lets you access the boot menu
Return to Wii menu lets you reboot
2) Use the keyboad arrows to move up/down the selected option, ad press "Enter". If you selected
"Boot installed system" you will see a new menu:
Select USB to boot a filesystem installed on a USB hard disk partition.
Select SDCard to boot a filesystem installed on a SDCard partition.
Select Disc image to boot a filesystem image file on a USB or SDCard.
If you select USB or SDCard, you will see a menu to select the partition (1,2,3...). Introduce the partition number. and press enter.
If everything is OK, it will start to boot that filesystem
If you select "Disc image", It will ask you the device where it is installed (USB o SDCard), and then you will have to introduce
the filename (bliight.img, xwhiite.img, etc...).
If everything is OK, a file called "wiilinux.cfg" will be created in the root of your SDCard. There will be saved the configuration. If
you want to reconfigure "boot it", delete that file.
Screenshot
Creating compatible filesystem images
These steps show how to create a new uncompressed filesystem image under Linux:
Step 1: Create an empty file:
dd if=/dev/zero of=<filename> count=<number of MB> bs=1M
Step 2: Format it in ext2/3
mkfs.ext2 <filename>
Step 3: Mount the file and copy the filesystem
mount -o loop,rw <filename> <path_to_mount>
cp -r <path_to_filesystem>/* <path_to_mount>
Step 4: Umount it, and detach it from /dev/loop
umount <path_to_mount>
losetup -d /dev/loop0 (ususally /dev/loop0, might be loop1,2...etc)
Step 5: Copy it to the root of the first partition of the SDCard/USB
Known Problems
- If you have a USB mouse plugged in, it could interfere with the USB keyboard. If the keyboard doesn't work, then interchange the usb ports where they are plugged, or unplug the mouse.
- If you are booting a previously installed wiilinux (xwhiite or bliight installed in the second partition of your sdcard) you will have to copy the contents of the "extras" directory to the root of your wiilinux filesystem or it will give you a message that some files are missing (pivot_root, chroot, old-root).
External links
- Wiibrew - https://wiibrew.org/wiki/Boot_it