Bladeren bron

0098: BlueBomb Wii Homebrew Method from Linux Virtualbox VM

i12bretro 4 jaren geleden
bovenliggende
commit
8c810415e3
1 gewijzigde bestanden met toevoegingen van 180 en 0 verwijderingen
  1. 180 0
      0098.html

+ 180 - 0
0098.html

@@ -0,0 +1,180 @@
+    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+    <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" />
+								<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
+				        <script type="text/javascript">
+          $(function(){
+            $('textarea').each(function(i,e){
+              theTextarea = $(this);
+              theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
+            });
+
+            $('li').each(function(i,e){
+              var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
+              $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
+              $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
+            });
+
+            $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
+              theElement = $(this);
+              var lines = theElement.html().split("\n");
+              theElement.empty();
+              for(l=0;l<lines.length;l++){
+                if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
+									                  theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ lines[l].replace(/"/g, '&quot;') +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
+									                } else {
+                  theElement.append(lines[l]);
+                }
+              }
+            });
+
+            $(document).on('click','input.copy-text',function(){
+              theButton = $(this);
+														$('input.copy-text').attr('src','images/clipboard.png');
+							              $('span.copy-animation').removeClass('copy-animation');
+              try {
+                $('#'+ theButton.attr('rel')).addClass('copy-animation');
+                navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
+																theButton.attr('src','images/clipboard_active.png');
+								              } catch(err) {
+              }
+              return false;
+            });
+
+            $(document).on('click','input.completeBox',function(){
+              theBox = $(this);
+              $('#'+ theBox.attr('rel')).addClass('strikethrough');
+              theBox.prop('disabled',true);
+              theBox.parent('li').prevAll().each(function(i,e){
+                theLI = $(this);
+                if(theLI.find('input[type=checkbox]').not(':checked')){
+                  $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
+                  theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
+                }
+              });
+            });
+
+            if(window.self !== window.top){
+              window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
+            }
+          });
+        </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)</li>
+	<li>A USB Bluetooth adapter compatible with Linux</li>
+</ul>
+
+<h2>Setting up the Virtual Machine</h2>
+
+<ol>
+	<li>Download Virtualbox and&nbsp;Virtualbox Extension Pack <a href="https://www.virtualbox.org/wiki/Downloads" target="_blank">Download</a></li>
+	<li>Download a Linux Distro (I&#39;m using Lubuntu x86) <a href="https://lubuntu.net/downloads/" 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&#39;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 &gt; 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 &gt; 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 &gt; 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 &gt; Insert Guest Additions CD image...</li>
+	<li>Right click on the disc on the desktop &gt; 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 &gt; 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 &gt; 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 &gt; Press Enter</li>
+	<li>Type yes to proceed &gt; Press Enter</li>
+	<li>At this point you will either get &quot;Waiting to accept&quot; or the error &quot;Failed to power on device: -1&quot;</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&#39;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 &gt; Press A</li>
+	<li>Select Yes, continue &gt; Press A</li>
+	<li>Select Exit &gt; 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>
+