1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Adding Storage to ProxMox VE</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <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">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Adding Storage to ProxMox VE">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="07/25/2024 05:07:49 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Adding Storage to ProxMox VE</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Local Storage</h2>
- <ol>
- <li>Install the physical disk into the ProxMox server hardware</li>
- <li>Power on the ProxMox server</li>
- <li>Open a web browser and navigate to the ProxMox web UI</li>
- <li>Log in</li>
- <li>Click the node with the new disk drive in the left navigation menu</li>
- <li>Expand Disks > Click ZFS</li>
- <li>Click the Create ZFS button</li>
- <li>Give the ZFS storage a name and set Raid Level = Single Disk</li>
- <li>Select the new disk from the list of drives > Click the Create button</li>
- <li>That's it, the new disk is now available to use for storing VMs</li>
- </ol>
- <h2>Network Storage</h2>
- <ol>
- <li>Create or navigate to an existing folder to share</li>
- <li>Right click on the folder > Properties > Sharing tab > Advanced Sharing...</li>
- <li>Click the Share this folder box</li>
- <li>Give the share a name (ie ISOs)</li>
- <li>Click the Permissions button</li>
- <li>Remove the Everyone group</li>
- <li>Add users or groups to allow access to the share</li>
- <li>Click OK on all open dialog boxes</li>
- <li>Open a web browser and navigate to the ProxMox web UI</li>
- <li>Log in</li>
- <li>Select Datacenter from the left navigation menu</li>
- <li>Click Storage in the left navigation sub menu</li>
- <li>Click the Add button > CIFS</li>
- <li>Complete the Add CIFS form as follows
- <p>ID: ISOs<br />
- Server: 10.10.27.1<br />
- Username: i12bretro<br />
- Password: <password><br />
- Share: ISOs<br />
- Max Backups: 3<br />
- Content: ISO image</p>
- </li>
- <li>Click the Add button</li>
- <li>That's it, ProxMox can now see the network share and it can be used to host ISO images for installing operating systems</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|