0546.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Create a Bootable ProxMox VE USB Flash Drive for Testing</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  7. <script type="text/javascript">
  8. $(function(){
  9. $('textarea').each(function(i,e){
  10. theTextarea = $(this);
  11. theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
  12. });
  13. $('li').each(function(i,e){
  14. var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
  15. $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
  16. $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
  17. });
  18. $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
  19. theElement = $(this);
  20. var lines = theElement.html().split("\n");
  21. theElement.empty();
  22. for(l=0;l<lines.length;l++){
  23. if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
  24. 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>');
  25. } else {
  26. theElement.append(lines[l]);
  27. }
  28. }
  29. });
  30. $(document).on('click','input.copy-text',function(){
  31. theButton = $(this);
  32. $('input.copy-text').attr('src','images/clipboard.png');
  33. $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
  34. try {
  35. if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
  36. $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
  37. } else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
  38. $('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
  39. } else {
  40. $('#'+ theButton.attr('rel')).addClass('copy-animation');
  41. }
  42. navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
  43. theButton.attr('src','images/clipboard_active.png');
  44. } catch(err) {
  45. }
  46. return false;
  47. });
  48. $(document).on('click','input.completeBox',function(){
  49. theBox = $(this);
  50. $('#'+ theBox.attr('rel')).addClass('strikethrough');
  51. theBox.prop('disabled',true);
  52. theBox.parent('li').prevAll().each(function(i,e){
  53. theLI = $(this);
  54. if(theLI.find('input[type=checkbox]').not(':checked')){
  55. $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
  56. theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
  57. }
  58. });
  59. });
  60. if(window.self !== window.top){
  61. window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
  62. }
  63. });
  64. </script>
  65. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  66. </head>
  67. <body>
  68. <div id="gridContainer">
  69. <div class="topMargin"></div>
  70. <div id="listName" class="topMargin">
  71. <h1>Create a Bootable ProxMox VE USB Flash Drive for Testing</h1>
  72. </div>
  73. <div></div>
  74. <div id="content">
  75. <h2>Things You Will Need</h2>
  76. <ul>
  77. <li>A USB flash drive, at least 8 GB</li>
  78. </ul>
  79. <h2>Installing ProxMox VE on USB Flash Drive</h2>
  80. <ol>
  81. <li>Download the Proxmox VE .iso file <a href="https://www.proxmox.com/en/downloads" target="_blank">Download</a></li>
  82. <li>Download Virtualbox and Virtualbox Extension Pack <a href="https://www.virtualbox.org/wiki/Downloads" target="_blank">Download</a></li>
  83. <li>Install Virtualbox</li>
  84. <li>Install the Virtualbox Extension Pack</li>
  85. <li>Plug the target USB flash drive into the host PC</li>
  86. <li>Launch Virtualbox</li>
  87. <li>Create a New VM by selecting Machine &gt; New
  88. <p>Name: LiveISO<br />
  89. Machine Folder: C:\VMs<br />
  90. Type: Linux<br />
  91. Version: Debian (64-bit)<br />
  92. Memory Size: 2048 MB<br />
  93. Hard disk: Do not add a virtual hard disk</p>
  94. </li>
  95. <li>Click Create</li>
  96. <li>Select the VM and Click Settings</li>
  97. <li>Select Display</li>
  98. <li>Slide the Video Memory to 128 MB</li>
  99. <li>Select Network</li>
  100. <li>Set the attached to dropdown to Bridged Adapter</li>
  101. <li>Select Storage</li>
  102. <li>Click on the CD-ROM drive</li>
  103. <li>Select the disc dropdown to the right &gt; Choose a virtual optical disc file...</li>
  104. <li>Browse to and select the downloaded ProxMox VE .iso file</li>
  105. <li>Select USB</li>
  106. <li>Click the Add USB device icon (second icon from the top on the far right)</li>
  107. <li>Select the target USB flash drive to attach to the VM</li>
  108. <li>Click OK</li>
  109. <li>Make sure the LiveISO VM is selected and click Start &gt; Normal</li>
  110. <li>Select Install Proxmox VE and press Enter</li>
  111. <li>Click the I agree button to accept the EULA</li>
  112. <li>Select the USB disk as the Target Harddisk from the dropdown &gt; Click Next</li>
  113. <li>Set the Country, Time zone and Keyboard Layout &gt; Click Next</li>
  114. <li>Enter a password and confirm, Enter an email address &gt; Click Next</li>
  115. <li>Give the Proxmox device a hostname, confirm the network settings &gt; Click Next</li>
  116. <li>Click the Install button</li>
  117. <li>Wait for Proxmox to be installed and configured</li>
  118. <li>After the installation succeeds, power down the VM</li>
  119. <li>That&#39;s it, the USB flash drive is now a quick and portable ProxMox VE installation</li>
  120. </ol>
  121. </div>
  122. </div>
  123. </body>
  124. </html>