0261.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Fedora 33 Workstation 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="Linux,Virtualbox,Virtual Machine,VM,Fedora,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Fedora 33 Workstation VM in Virtualbox">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="06/04/2022 01:24:51 PM" />
  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 Fedora 33 Workstation VM in Virtualbox</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Download Fedora Workstation <a href="https://getfedora.org/" target="_blank">Download</a></li>
  27. <li>Launch Virtualbox</li>
  28. <li>Create a New VM by selecting Machine &gt; New
  29. <p>Name: Fedora Workstation<br />
  30. Machine Folder: C:\VMs<br />
  31. Type: Linux<br />
  32. Version: Fedora (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 Fedora Workstation.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 Fedora Workstation .iso file</li>
  55. <li>Click OK</li>
  56. <li>Make sure the Fedora Workstation VM is selected and click Start &gt; Normal</li>
  57. <li>Press Enter to start Fedora Workstation Live</li>
  58. <li>Press Escape to stop the disk check</li>
  59. <li>When the welcome dialog displays click Install to Hard Drive</li>
  60. <li>Select a language &gt; Click Continue</li>
  61. <li>Adjust the keyboard and time zone data if needed</li>
  62. <li>Click the Installation Destination button</li>
  63. <li>Click Done to accept the default values</li>
  64. <li>Click Begin Installation</li>
  65. <li>Wait for the installation to complete copying files</li>
  66. <li>Once complete, Click Devices &gt; Optical Drives &gt; Remove disk from virtual drive</li>
  67. <li>Select Force unmount</li>
  68. <li>Click Finish Installation, the VM will reboot</li>
  69. <li>Click Next</li>
  70. <li>Disable Location Services and Automatic Problem Reporting &gt; Click Next</li>
  71. <li>Click Skip</li>
  72. <li>Enter a name and username &gt; Click Next</li>
  73. <li>Set a password and confirm &gt; Click Next</li>
  74. <li>Click Start Using Fedora</li>
  75. <li>Welcome to Fedora Workstation</li>
  76. </ol>
  77. <h2>Optional Steps</h2>
  78. <ol>
  79. <li>Click the Activities button &gt; Search &quot;terminal&quot; &gt; Click Terminal</li>
  80. <li>Run the following commands to install updates
  81. <div class="codeBlock">sudo <code>dnf check-update</code><br />
  82. sudo dnf update<br />
  83. sudo dnf clean all<br />
  84. sudo dnf install dkms kernel-devel gcc bzip2 make curl<br />
  85. sudo dnf update kernel-*</div>
  86. </li>
  87. <li>Select Devices &gt; Insert Guest Additions CD image...</li>
  88. <li>Open the Files application &gt; Select the Guest Additions Disc &gt; Right click in the white space &gt; Open in terminal</li>
  89. <li>In the Terminal window run the following commands
  90. <div class="codeBlock">sudo sh ./VBoxLinuxAdditions.run<br />
  91. sudo reboot now</div>
  92. </li>
  93. <li>The VM will reboot</li>
  94. <li>Upon rebooting, you can now full screen the VM and the internal resolution will automatically change to match the window size</li>
  95. <li>Log back into Fedora</li>
  96. </ol>
  97. </div>
  98. </div>
  99. </body>
  100. </html>