0410.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Adding Storage to ProxMox VE</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="ProxMox VE,Virtual Machines,Hypervisor,Virtualization,Storage,Hard Drive,Disk Space,Proxmox Tutorial,Proxmox VE,VM,Virtual Machine,Home Lab,Home Lab Ideas,Linux,Proxmox,Proxmox Host,Proxmox Node,Proxmox Step By Step,Debian,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Adding Storage to ProxMox VE">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="07/25/2024 05:07:49 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>Adding Storage to ProxMox VE</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Local Storage</h2>
  26. <ol>
  27. <li>Install the physical disk into the ProxMox server hardware</li>
  28. <li>Power on the ProxMox server</li>
  29. <li>Open a web browser and navigate to the ProxMox web UI</li>
  30. <li>Log in</li>
  31. <li>Click the node with the new disk drive in the left navigation menu</li>
  32. <li>Expand Disks &gt; Click ZFS</li>
  33. <li>Click the Create ZFS button</li>
  34. <li>Give the ZFS storage a name and set Raid Level =&nbsp;Single Disk</li>
  35. <li>Select the new disk from the list of drives &gt; Click the Create button</li>
  36. <li>That&#39;s it, the new disk is now available to use for storing VMs</li>
  37. </ol>
  38. <h2>Network Storage</h2>
  39. <ol>
  40. <li>Create or navigate to an existing folder to share</li>
  41. <li>Right click on the folder &gt; Properties &gt; Sharing tab &gt; Advanced Sharing...</li>
  42. <li>Click the Share this folder box</li>
  43. <li>Give the share a name (ie ISOs)</li>
  44. <li>Click the Permissions button</li>
  45. <li>Remove the Everyone group</li>
  46. <li>Add users or groups to allow access to the share</li>
  47. <li>Click OK on all open dialog boxes</li>
  48. <li>Open a web browser and navigate to the ProxMox web UI</li>
  49. <li>Log in</li>
  50. <li>Select Datacenter from the left navigation menu</li>
  51. <li>Click Storage in the left navigation sub menu</li>
  52. <li>Click the Add button &gt; CIFS</li>
  53. <li>Complete the Add&nbsp;CIFS form as follows
  54. <p>ID: ISOs<br />
  55. Server: 10.10.27.1<br />
  56. Username: i12bretro<br />
  57. Password: &lt;password&gt;<br />
  58. Share: ISOs<br />
  59. Max Backups: 3<br />
  60. Content: ISO image</p>
  61. </li>
  62. <li>Click the Add button</li>
  63. <li>That&#39;s it, ProxMox can now see the network share and it can be used to host ISO images for installing operating systems</li>
  64. </ol> </div>
  65. </div>
  66. </body>
  67. </html>