-
Notifications
You must be signed in to change notification settings - Fork 58
/
0098.html
130 lines (123 loc) · 7.08 KB
/
0098.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>BlueBomb Wii Homebrew Method from Linux Virtualbox VM</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
<meta name="keywords" content="Wii,Linux,Virtualbox,BlueBomb,VM,Virtual Machine,Bluetooth,VirtualBox,19.04,Lubuntu,Install Guide,Home Lab,Lubuntu 19.04,VirtualBox VM,Lubuntu VirtualBox VM,Run Lubuntu VirtualBox,How Can I Run Lubuntu In VirtualBox,Hypervisor,X86,Lubuntu VM,Lubuntu Linux VM,Lubuntu VirtualBox,Lubuntu Linux VirtualBox,Lubuntu Virtual Machine,Lubuntu On Virtualbox,Install Lubuntu 20.04,Nintendo Wii,How To,Tutorial,i12bretro">
<meta name="author" content="i12bretro">
<meta name="description" content="BlueBomb Wii Homebrew Method from Linux Virtualbox VM">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="revised" content="11/03/2022 10:58:46 AM" />
<link rel="icon" type="image/x-icon" href="includes/favicon.ico">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="includes/js/steps.js"></script>
<link href="css/steps.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gridContainer">
<div class="topMargin"></div>
<div id="listName" class="topMargin">
<h1>BlueBomb Wii Homebrew Method from Linux Virtualbox VM</h1>
</div>
<div></div>
<div id="content">
<h2>Setting up the Virtual Machine</h2>
<ul>
<li>A USB flash drive (any size, the file is about 2 MB) <a href="https://amzn.to/3wkR5ju" target="_blank">https://amzn.to/3wkR5ju</a></li>
<li>A USB Bluetooth adapter compatible with Linux <a href="https://amzn.to/3CUf6iN" target="_blank">https://amzn.to/3CUf6iN</a></li>
</ul>
<h2>Setting up the Virtual Machine</h2>
<ol>
<li>Download VirtualBox and VirtualBox Extension Pack <a href="https://www.virtualbox.org/wiki/Downloads" target="_blank">Download</a></li>
<li>Download a Linux Distro (I'm using Lubuntu x86) <a href="https://cdimage.ubuntu.com/lubuntu/releases/18.04.5/release/" target="_blank">Download</a></li>
<li>Download the BootMii installer <a href="https://bootmii.org/download/" target="_blank">Download</a></li>
<li>Format the USB flash drive to the FAT32 filesystem
<ul>
<li>This will erase all data on the drive, make sure you select the correct drive and that it doesn't contain anything important</li>
</ul>
</li>
<li>Copy boot.elf from the downloaded hackmii_installer_v1.2.zip and paste it on the root of the USB flash drive</li>
<li>Safely remove the flash drive and insert it into the Wii using the USB port closest to the edge of the console</li>
<li>Install VirtualBox</li>
<li>Install the VirtualBox Extension Pack</li>
<li>Launch VirtualBox</li>
<li>Create a New VM by selecting Machine > New
<p>Name: BlueBomb<br />
Machine Folder: C:\VMs<br />
Type: Linux<br />
Version: Ubuntu (32-bit)<br />
Memory Size: 512 MB<br />
Hard disk: Create a virtual hard disk now</p>
</li>
<li>Click Create</li>
<li>On the Create Virtual Hard Disk dialog
<p>Name the virtual disk image BlueBomb.vdi<br />
File size: 5 GB<br />
Hard disk file type: VDI<br />
Storage on physical hard disk: Dynamically Allocated</p>
</li>
<li>Click Create</li>
<li>Select the VM and Click Settings</li>
<li>Select Display</li>
<li>Slide the Video Memory to 128 MB</li>
<li>Select Network</li>
<li>Set the attached to dropdown to Bridged Adapter</li>
<li>Select Storage</li>
<li>Click on the CD-ROM drive</li>
<li>Select the disc dropdown to the right > Choose a virtual optical disc file...</li>
<li>Browse to and select the downloaded Linux .iso file</li>
<li>Click OK</li>
<li>Make sure the BlueBomb VM is selected and click Start > Normal</li>
<li>Follow the prompts to install the OS</li>
<li>Update the Linux distro by running the following commands:
<div class="codeBlock">sudo apt-get update<br />
sudo apt-get upgrade<br />
sudo apt-get clean</div>
</li>
<li>Install the required packages to run VirtualBox Guest Additions by running the following commands:
<div class="codeBlock">sudo apt-get install build-essential dkms linux-headers-$(uname -r)</div>
</li>
<li>Select Devices > Insert Guest Additions CD image...</li>
<li>Right click on the disc on the desktop > Open in Terminal</li>
<li>Run the following command to install VirtualBox Guest Additions:
<div class="codeBlock">sudo sh ./VBoxLinuxAdditions.run</div>
</li>
<li>Once the Guest Additions have installed reboot the VM from the GUI or by running the reboot command in terminal</li>
<li>After the VM reboots, login</li>
<li>Plug the USB Bluetooth dongle into the host computer</li>
<li>Select Devices > USB and select the Bluetooth USB dongle</li>
<li>If this worked correctly the Bluetooth device should now display in the VM</li>
<li>Select Preferences > Bluetooth Manager to test that the VM now has Bluetooth capability</li>
</ol>
<h2>Downloading BlueBomb and Executing the Script</h2>
<ol>
<li>Launch Terminal inside the VM</li>
<li>Execute the following commands to change directory into Downloads and download the BlueBomb script
<div class="codeBlock">cd Downloads<br />
https://raw.githubusercontent.com/RiiConnect24/Wii-Guide/master/assets/files/bluebomb-helper.sh<br />
chmod +x bluebomb-helper.sh</div>
</li>
<li>To execute the script enter the following command:
<div class="codeBlock">./bluebomb-helper.sh</div>
</li>
<li>The BlueBomb script will ask if this is a Wii or Wii Mini</li>
<li>It will then ask for the region (if Wii Mini) or the Wii Menu version (if Wii), enter the requested information > Press Enter</li>
<li>Type yes to proceed > Press Enter</li>
<li>At this point you will either get "Waiting to accept" or the error "Failed to power on device: -1"</li>
<li>If you get the error press Ctrl+C to cancel the script and re-run it by pressing the up arrow and pressing Enter (It took me 2 tries)</li>
<li>Power on the Wii but don't pair any WiiMotes with it</li>
<li>Press the pair controller button the Wii console once every 2 or 3 seconds until the BlueBomb script makes a connection and starts pushing the payload over the Bluetooth connection</li>
<li>Once completed the Wii will be at the HackMii Installer screen</li>
<li>Wait for about a minute and it will prompt you to Press 1 to continue</li>
<li>Pair a WiiMote with the console as normal and press 1</li>
<li>Press A to Continue</li>
<li>Using the D-pad, scroll up to Install the Homebrew Channel > Press A</li>
<li>Select Yes, continue > Press A</li>
<li>Select Exit > Press A</li>
<li>You have now installed the Homebrew Channel using the BlueBomb exploit</li>
</ol>
<p>Further reading: <a href="https://wii.guide/bluebomb.html" target="_blank">https://wii.guide/bluebomb.html</a></p> </div>
</div>
</body>
</html>