0654.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Share Proxmox Backups Locally with Samba</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Home Lab,Hypervisor,Home Lab Ideas,Install Guide,Backing Up Proxmox Virtual Machines,Backups,Debian,Samba,SMB,VM Backups,Windows,Linux,Linux Tips,Proxmox,Proxmox How To,Proxmox Node,Proxmox Tutorial,Proxmox VE,Proxmox VM Backups,VM,Virtual Machine,Virtualization,Mount Samba Share,Microsoft,Network,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Share Proxmox Backups Locally with Samba">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="08/08/2022 06:02:41 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>Share Proxmox Backups Locally with Samba</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into Proxmox VE, either at the console or the web UI and launch the web shell</li>
  27. <li>Run the following commands
  28. <div class="codeBlock"># update software repositories<br />
  29. apt update<br />
  30. # install samba<br />
  31. apt install samba -y<br />
  32. # edit the samba conf file<br />
  33. nano /etc/samba/smb.conf</div>
  34. </li>
  35. <li>Paste the following at the bottom of the file
  36. <p>[vmbackups]<br />
  37. comment = Proxmox backups<br />
  38. path = /var/lib/vz<br />
  39. guest ok = no<br />
  40. public = yes<br />
  41. writable = yes</p>
  42. </li>
  43. <li>Press CTRL+O, Enter, CTRL+X to write the changes</li>
  44. <li>Continue with the following commands
  45. <div class="codeBlock"># restart samba service<br />
  46. systemctl restart smbd</div>
  47. </li>
  48. <li>Test that the new samba share is accessible, from Windows \\DNSorIP\vmbackups</li>
  49. <li>When prompted, login with root and the Proxmox root password</li>
  50. </ol> </div>
  51. </div>
  52. </body>
  53. </html>