-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Required a tutorial to how to install this #47
Comments
You can see #42 to install an unstable version which would be more recent, or read the README.md file in the main branch for a stable but obsolete version |
@Maxbrewgithub write the "wii-jessie-sd.img.xz" file to an SD card in Linux, you can use the dd command along with the xz and pv commands for decompression and progress monitoring. Make sure you have the necessary tools installed. If they are not installed, you can install them using your package manager. For example, on Debian-based systems, you can use:
sudo apt-get install xz-utils pv Decompress the Image: bash xz -d wii-jessie-sd.img.xz This will create a file named "wii-jessie-sd.img" in the same directory. Identify the SD Card: bash lsblk or bash fdisk -l Look for your SD card, it will typically be something like "/dev/sdX" where "X" is a letter (e.g., "/dev/sdb", "/dev/sdc", etc.). Write the Image to the SD Card: bash sudo dd if=wii-jessie-sd.img of=/dev/sdX bs=4M status=progress
Be patient, as writing to an SD card may take some time. Sync and Eject: bash sync Then safely eject the SD card: bash
Now your SD card should be ready with the contents of the "wii-jessie-sd.img" file. You can insert it into your device and boot from it. Make sure to replace "/dev/sdX" with the actual device path of your SD card throughout the process. Double-check your commands and the device path to avoid data loss. |
Hey y'all, after a year I figured it out (I lost access to my account now but this is my account) |
You didn't, silly |
Could I know a way to install this?
The text was updated successfully, but these errors were encountered: