0096.html 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Ubuntu 20.04 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,i12bretro,How To,Tutorial,Linux,20.04,Ubuntu">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Ubuntu 20.04 VM in Virtualbox">
  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" src="includes/js/steps.js"></script>
  13. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  14. </head>
  15. <body>
  16. <div id="gridContainer">
  17. <div class="topMargin"></div>
  18. <div id="listName" class="topMargin">
  19. <h1>Running a Ubuntu 20.04 VM in Virtualbox</h1>
  20. </div>
  21. <div></div>
  22. <div id="content">
  23. <ol>
  24. <li>Download Ubuntu 20.04 <a href="https://ubuntu.com/download/desktop/thank-you?version=20.04&amp;architecture=amd64" target="_blank">Download</a></li>
  25. <li>Launch Virtualbox</li>
  26. <li>Create a New VM by selecting Machine &gt; New
  27. <p>Name: Ubuntu 20.04<br />
  28. Machine Folder: C:\VMs<br />
  29. Type: Linux<br />
  30. Version: Ubuntu (64-bit)<br />
  31. Memory Size: 4096 MB<br />
  32. Hard disk: Create a virtual hard disk now</p>
  33. </li>
  34. <li>Click Create</li>
  35. <li>On the Create Virtual Hard Disk dialog
  36. <p>Name the virtual disk image Ubuntu 20.04.vdi<br />
  37. File size: 10 GB<br />
  38. Hard disk file type: VDI<br />
  39. Storage on physical hard disk: Dynamically Allocated</p>
  40. </li>
  41. <li>Click Create</li>
  42. <li>Select the VM and Click Settings</li>
  43. <li>Select System &gt; Processor</li>
  44. <li>Give the VM at least 2 processors</li>
  45. <li>Select Display</li>
  46. <li>Slide the Video Memory to 128 MB</li>
  47. <li>Select Network</li>
  48. <li>Set the attached to dropdown to Bridged Adapter</li>
  49. <li>Select Storage</li>
  50. <li>Click on the CD-ROM drive</li>
  51. <li>Select the disc dropdown to the right &gt; Choose a virtual optical disc file...</li>
  52. <li>Browse to and select the downloaded Ubuntu 20.04 .iso file</li>
  53. <li>Click OK</li>
  54. <li>Make sure the Ubuntu 20.04 VM is selected and click Start &gt; Normal</li>
  55. <li>Press Ctrl+C to cancel the disk check</li>
  56. <li>When the install dialog displays click Install Ubuntu</li>
  57. <li>Select a keyboard layout &gt; Click Continue</li>
  58. <li>Uncheck Download updates while installing Ubuntu &gt; Click Continue</li>
  59. <li>Click Install Now</li>
  60. <li>Click Continue to write the changes to the disk</li>
  61. <li>Select a Region &gt; Click continue</li>
  62. <li>Enter a name, computer name, username and password &gt; Click Continue</li>
  63. <li>Wait while Ubuntu copies files and installs</li>
  64. <li>When prompted to Restart Now, Select Devices &gt; Optical Drives &gt; Remove disk from virtual drive</li>
  65. <li>Click Restart Now to complete the installation, the VM will reboot</li>
  66. <li>Login with the username and password created earlier in the process</li>
  67. <li>Select Skip &gt; Next &gt; Select No, Don&#39;t send system info &gt; Next &gt; Next &gt; Done</li>
  68. <li>Welcome to Ubuntu 20.04</li>
  69. </ol>
  70. <h2>Optional Steps</h2>
  71. <ol>
  72. <li>Click the Applications button &gt; Search &quot;terminal&quot; &gt; Click Terminal</li>
  73. <li>Run the following commands to install updates
  74. <div class="codeBlock">sudo apt-get update<br />
  75. sudo apt-get upgrade<br />
  76. sudo apt-get clean</div>
  77. </li>
  78. <li>Select Devices &gt; Insert Guest Additions CD image...</li>
  79. <li>If the installation autoruns, select Run</li>
  80. <li>Open the Files application &gt; Select the Guest Additions Disc &gt; Right click in the white space &gt; Open terminal here</li>
  81. <li>In the Terminal window run the following commands
  82. <div class="codeBlock">sudo sh ./VBoxLinuxAdditions.run<br />
  83. sudo reboot</div>
  84. </li>
  85. <li>The VM will reboot</li>
  86. <li>Upon rebooting, you can now full screen the VM and the internal resolution will automatically change to match the window size</li>
  87. <li>Log back into Ubuntu</li>
  88. </ol>
  89. </div>
  90. </div>
  91. </body>
  92. </html>