0136.html 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Linux FX VM in Virtualbox</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="VirtualBox,Virtual Machine,Linux,Linux FX,WindowsFX,Hypervisor,Install Guide,Home Lab Ideas,Home Lab,VM,VirtualBox VM,Linux FX VirtualBox VM,Run Linux FX VirtualBox,How Can I Run Linux FX In VirtualBox,X64,Linux FX VM,Linux FX Linux VM,Linux FX VirtualBox,Linux FX Virtual Machine,Linux FX On Virtualbox,Install Linux FX,Windows Like Linux Distribution,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Linux FX VM in Virtualbox">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="04/08/2022 05:30:23 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Running a Linux FX VM in Virtualbox</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Download Linux FX <a href="http://www.linuxfx.org/index.php/sistemas-operacionais/linuxfx-10-w" target="_blank">Download</a></li>
  27. <li>Launch Virtualbox</li>
  28. <li>Create a New VM by selecting Machine &gt; New
  29. <p>Name: Linux FX<br />
  30. Machine Folder: C:\VMs<br />
  31. Type: Linux<br />
  32. Version: Debian (64-bit)<br />
  33. Memory Size: 4096 MB<br />
  34. Hard disk: Create a virtual hard disk now</p>
  35. </li>
  36. <li>Click Create</li>
  37. <li>On the Create Virtual Hard Disk dialog
  38. <p>Name the virtual disk image Linux FX.vdi<br />
  39. File size: 30 GB<br />
  40. Hard disk file type: VDI<br />
  41. Storage on physical hard disk: Dynamically Allocated</p>
  42. </li>
  43. <li>Click Create</li>
  44. <li>Select the VM and Click Settings</li>
  45. <li>Select System &gt; Processor</li>
  46. <li>Give the VM at least 2 processors</li>
  47. <li>Select Display</li>
  48. <li>Slide the Video Memory to 128 MB</li>
  49. <li>Select Network</li>
  50. <li>Set the attached to dropdown to Bridged Adapter</li>
  51. <li>Select Storage</li>
  52. <li>Click on the CD-ROM drive</li>
  53. <li>Select the disc dropdown to the right &gt; Choose a virtual optical disc file...</li>
  54. <li>Browse to and select the downloaded Linux FX .iso file</li>
  55. <li>Click OK</li>
  56. <li>Make sure the Linux FX VM is selected and click Start &gt; Normal</li>
  57. <li>Press Ctrl+C to cancel the disk check</li>
  58. <li>Right click on the introduction video in the task bar &gt; Close</li>
  59. <li>Click the Install Windowsfx icon on the desktop</li>
  60. <li>Select a language &gt; Click Next</li>
  61. <li>Select a region and time zone &gt; Click Next</li>
  62. <li>Select a keyboard layout &gt; Click Next</li>
  63. <li>Select Erase disk &gt; Click Next</li>
  64. <li>Enter a full name, computer name, username and password &gt; Click Next</li>
  65. <li>Click Install and then Install Now</li>
  66. <li>Wait while Windowsfx copies files and installs</li>
  67. <li>When the installation completes, select the Start button &gt; Power icon &gt; Restart, Click OK</li>
  68. <li>Press Enter at the remove installation medium prompt</li>
  69. <li>Login with the username and password created earlier in the process</li>
  70. <li>Welcome to Linux FX</li>
  71. </ol>
  72. <h2>Optional Steps</h2>
  73. <ol>
  74. <li>Click the Applications button &gt; Search &quot;terminal&quot; &gt; Click Terminal</li>
  75. <li>Run the following commands to install updates
  76. <div class="codeBlock">sudo apt-get update<br />
  77. sudo apt-get upgrade<br />
  78. sudo apt-get clean</div>
  79. </li>
  80. <li>Select Devices &gt; Insert Guest Additions CD image...</li>
  81. <li>If the installation autoruns, select Run</li>
  82. <li>Open the Files application &gt; Select the Guest Additions Disc &gt; Right click in the white space &gt; Open terminal here</li>
  83. <li>In the Terminal window run the following commands
  84. <div class="codeBlock">sudo sh ./VBoxLinuxAdditions.run<br />
  85. sudo reboot</div>
  86. </li>
  87. <li>The VM will reboot</li>
  88. <li>Upon rebooting, you can now full screen the VM and the internal resolution will automatically change to match the window size</li>
  89. <li>Log back in</li>
  90. </ol>
  91. </div>
  92. </div>
  93. </body>
  94. </html>