0105.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Copy Games to Playstation 2 Fat Hard Drive</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro,Sony PlayStation 2,PlayStation 2,Hard Drive,HDD,OPL">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Copy Games to Playstation 2 Fat Hard Drive">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  12. <script type="text/javascript">
  13. $(function(){
  14. $('textarea').each(function(i,e){
  15. theTextarea = $(this);
  16. theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
  17. });
  18. $('li').each(function(i,e){
  19. if(!$(this).hasClass('noCheckbox')){
  20. var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
  21. $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
  22. $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
  23. }
  24. });
  25. $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
  26. theElement = $(this);
  27. var lines = theElement.html().split("\n");
  28. theElement.empty();
  29. for(l=0;l<lines.length;l++){
  30. if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
  31. theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ $.trim(lines[l].replace(/"/g, '&quot;')) +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
  32. } else {
  33. theElement.append(lines[l]);
  34. }
  35. }
  36. });
  37. $(document).on('click','input.copy-text',function(){
  38. theButton = $(this);
  39. $('input.copy-text').attr('src','images/clipboard.png');
  40. $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
  41. try {
  42. if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
  43. $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
  44. } else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
  45. $('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
  46. } else {
  47. $('#'+ theButton.attr('rel')).addClass('copy-animation');
  48. }
  49. navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
  50. theButton.attr('src','images/clipboard_active.png');
  51. } catch(err) {
  52. }
  53. return false;
  54. });
  55. $(document).on('click','input.completeBox',function(){
  56. theBox = $(this);
  57. $('#'+ theBox.attr('rel')).addClass('strikethrough');
  58. theBox.prop('disabled',true);
  59. theBox.parent('li').prevAll().each(function(i,e){
  60. theLI = $(this);
  61. if(theLI.find('input[type=checkbox]').not(':checked')){
  62. $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
  63. theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
  64. }
  65. });
  66. });
  67. if(window.self !== window.top){
  68. window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
  69. }
  70. });
  71. </script>
  72. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  73. </head>
  74. <body>
  75. <div id="gridContainer">
  76. <div class="topMargin"></div>
  77. <div id="listName" class="topMargin">
  78. <h1>Copy Games to Playstation 2 Fat Hard Drive</h1>
  79. </div>
  80. <div></div>
  81. <div id="content">
  82. <h2>Things You Will Need</h2>
  83. <ul>
  84. <li>A Sony PlayStation 2 Fat console</li>
  85. <li>The PS2 Network/Hard Drive Adapter</li>
  86. <li>A working hard drive in the PS2 (IDE or via a SATA adapter)</li>
  87. <li>A way to execute PS2 homebrew apps (I&#39;m using <a href="https://sites.google.com/view/ysai187/home/projects/fmcbfhdb?authuser=0#h.p_-aEvm93GgS4k" target="_blank">FreeMcBoot</a>)</li>
  88. <li><a href="https://java.com/en/download/manual.jsp" target="_blank">Java Runtime Environment</a> running on the source computer</li>
  89. <li>Open PS2 Loader (OPL) <a href="https://www.ps2-home.com/forum/viewtopic.php?f=83&amp;t=3&amp;p=42625#p42625" target="_blank">Download</a></li>
  90. <li>HDL Dump Helper GUI <a href="https://www.ps2-home.com/forum/viewtopic.php?f=27&amp;t=2738" target="_blank">Download</a></li>
  91. <li>OPL Manager <a href="https://oplmanager.com/site/" target="_blank">Download</a></li>
  92. </ul>
  93. <h2>Setting Up and Starting the PS2 HDL Server</h2>
  94. <ol>
  95. <li>Connect the PS2 console to your network</li>
  96. <li>Make sure the memory card with Free McBoot is inserted</li>
  97. <li>Power on the PS2 and wait for Free McBoot to load&nbsp;</li>
  98. <li>Launch Open PS2 Loader from the Free McBoot browser</li>
  99. <li>Press Start &gt; select Network Settings</li>
  100. <li>Set the network settings to meet your network requirements
  101. <p>IP Address Type: Static<br />
  102. IP Address: 192.168.0.227<br />
  103. Mask: 255.255.255.0<br />
  104. Gateway: 192.168.0.252<br />
  105. DNS Server: 192.168.0.2<br />
  106. Tip: if you don&#39;t want your PS2 console to reach the internet use a bogus gateway IP</p>
  107. </li>
  108. <li>Navigate to OK &gt; Press X</li>
  109. <li>Go to Settings &gt; <span class="caps">Press X</span></li>
  110. <li><span class="caps">Set HDD</span> device start mode = <span class="caps">AUTO</span></li>
  111. <li>Set Enable write operations = ON</li>
  112. <li>Navigate to OK &gt; Press X</li>
  113. <li>Navigate to Save Changes &gt; Press X</li>
  114. <li>Navigate to Start HDL Server &gt; Press X</li>
  115. <li>The HDL Server should now be running and ready to accept incoming connections</li>
  116. </ol>
  117. <h2>Downloading and Configuring Software</h2>
  118. <ol>
  119. <li>Download the HDL Dump Helper GUI application <a href="https://www.ps2-home.com/forum/viewtopic.php?p=16263#p16263" onclick="window.open(this.href, '', 'resizable=no,status=no,location=no,toolbar=no,menubar=no,fullscreen=no,scrollbars=no,dependent=no'); return false;">Download</a></li>
  120. <li>Extract the downloaded .rar file</li>
  121. <li>Launch HDL Dump Helper GUI by right clicking de.hdld.gui.HdlDHGui.exe &gt; Run as administrator<br />
  122. If you get an error here saying Java cannot be found and you do have it insatlled, try the following:
  123. <ol>
  124. <li>Right click the Start button &gt; Command Prompt (Admin)</li>
  125. <li>Type java -version, if you get a response you have Java properly installed and configued and can continue. If you don&#39;t install/reinstall Java</li>
  126. <li>Type the following commands to launch HDL Dump Helper GUI as and administrator, updating the path if you extracted it somewhere else
  127. <div class="codeBlock">cd &quot;%userprofile%\Downloads\hdl_dump_helper_gui_2.3\hdld_2_3&quot;<br />
  128. java -jar &quot;de.hdld.gui.HdlDHGui.jar&quot;</div>
  129. </li>
  130. </ol>
  131. </li>
  132. <li>Enter the IP address assigned to the PS2 console earlier &gt; Click Connect</li>
  133. </ol>
  134. <h2>Copying Games to the Hard Drive</h2>
  135. <ol>
  136. <li>With HDL Dump Helper GUI connected to the PS2 console, click the elipsis next to ISO-File:</li>
  137. <li>Browse to the PS2 .iso file to be copied to the console</li>
  138. <li>If the .iso file is valid the application will set the Type, Name and StartUp automatically</li>
  139. <li>Click the Add to Jobs button if you&#39;d like to queue several games before copying, otherwise, click the Install button</li>
  140. <li>Wait for the game(s) to copy to the console. Expect to see 2-8 MB/s speeds</li>
  141. </ol>
  142. <h2>Downloading and Applying Artwork for OPL (Optional)</h2>
  143. <ol>
  144. <li>Download OPL Manager <a href="https://oplmanager.com/site/" target="_blank">Download</a></li>
  145. <li>Extract OPL Manager</li>
  146. <li>Right click on OPL_Manager.exe &gt; Run as administator</li>
  147. <li>You should be prompted with the Change Mode/OPL Folder dialog, if not select Settings &gt; Change Mode/OPL Folder</li>
  148. <li>Select the Network mode</li>
  149. <li>Enter the IP address of the PS2 console</li>
  150. <li>Select hdl_dump_086.exe from the version dropdown</li>
  151. <li>Click the test button</li>
  152. <li>If the test fails, try stopping and starting the HDL Server on the PS2 console. Once the test is successful click Save</li>
  153. <li>Select Network Options &gt; Get game list from PS2</li>
  154. <li>Select Batch Actions &gt; ART Download</li>
  155. <li>Select the artwork you&#39;d like to download in the Download options section</li>
  156. <li>Click Start</li>
  157. <li>Close the Art downloaded window but leave OPL Manager running</li>
  158. <li>On the PS2 console, stop the HDL server and close OPL by navigating to Exit &gt; Press X</li>
  159. <li>Start uLaunchElf by selecting it from the Free McBoot menu</li>
  160. <li>Press Select &gt; Network Settings &gt; press O</li>
  161. <li>Using the D-pad, set the IP address, netmask and gateway
  162. <ul>
  163. <li>Tip: If you don&#39;t want your PS2 to reach the internet input a bogus gateway IP address</li>
  164. </ul>
  165. </li>
  166. <li>Navigate down to Save &gt; press O to save your changes</li>
  167. <li>Navigate down to OK &gt; press O</li>
  168. <li>Highlight MISC/ &gt; press O</li>
  169. <li>Highlight PS2Net &gt; press O</li>
  170. <li>The FTP server should start running and give status output at the top of the screen</li>
  171. <li>Back in OPL Manager, select Network Options &gt; Sync files to PS2 via FTP</li>
  172. <li>Click the Connect FTP button</li>
  173. <li>One connected, click the Sync PC to PS2 button</li>
  174. <li>After the sync completes, fire up OPL to see the new games with artwork</li>
  175. </ol>
  176. </div>
  177. </div>
  178. </body>
  179. </html>