This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tech_public:tp_proxmox [2025/02/13 22:19] – jasonwch | tech_public:tp_proxmox [2025/10/09 14:35] (current) – [Remove subscription notification] jasonwch | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== Proxmox ===== | + | ====== Proxmox ====== |
| - | + | ||
| - | https:// | + | |
| + | ~~stoggle_buttons~~ | ||
| + | Port forwarding: | ||
| + | https:// | ||
| + | ==== Direct connection display ==== | ||
| https:// | https:// | ||
| Line 11: | Line 13: | ||
| https:// | https:// | ||
| + | |||
| + | https:// | ||
| ==== Switch to no subscription ==== | ==== Switch to no subscription ==== | ||
| https:// | https:// | ||
| - | + | \\ | |
| - | ==== Remove subscription notification ==== | + | 1. Remove these 2 source |
| + | {{: | ||
| + | \\ | ||
| + | 2. Add "No Subscription" | ||
| + | {{: | ||
| + | {{: | ||
| + | ==== Remove subscription notification | ||
| https:// | https:// | ||
| + | \\ | ||
| + | \\ | ||
| + | 1 line code | ||
| + | < | ||
| + | sed -Ezi.bak " | ||
| + | </ | ||
| + | \\ | ||
| + | Manual instruction: | ||
| + | \\ | ||
| + | 1. Change to directory | ||
| + | < | ||
| + | cd / | ||
| + | </ | ||
| + | 2. Make a backup | ||
| + | < | ||
| + | cp proxmoxlib.js proxmoxlib.js.bak | ||
| + | </ | ||
| + | 3. Edit the file “proxmoxlib.js” | ||
| + | < | ||
| + | nano proxmoxlib.js | ||
| + | </ | ||
| + | 4. Locate the following code (Use ctrl+w in nano and search for “function(orig_cmd)” | ||
| + | < | ||
| + | checked_command: | ||
| + | </ | ||
| + | 5. Add “orig_cmd(); | ||
| + | < | ||
| + | checked_command: | ||
| + | orig_cmd(); | ||
| + | return; | ||
| + | </ | ||
| + | 6. Restart the Proxmox web service (also be sure to clear your browser cache, depending on the browser you may need to open a new tab or restart the browser) | ||
| + | < | ||
| + | systemctl restart pveproxy.service | ||
| + | </ | ||
| \\ | \\ | ||
| \\ | \\ | ||
| Line 23: | Line 68: | ||
| - Restore the backup file you created from the proxmox-widget-toolkit directory: mv proxmoxlib.js.bak proxmoxlib.js | - Restore the backup file you created from the proxmox-widget-toolkit directory: mv proxmoxlib.js.bak proxmoxlib.js | ||
| - Reinstall the proxmox-widget-toolkit package from the repository: apt-get install --reinstall proxmox-widget-toolkit | - Reinstall the proxmox-widget-toolkit package from the repository: apt-get install --reinstall proxmox-widget-toolkit | ||
| + | \\ | ||
| + | \\ | ||
| + | ==== check volume group free space ==== | ||
| + | |||
| + | vgdisplay pve | grep Free | ||
| + | |||
| + | ==== check log size ==== | ||
| + | |||
| + | < | ||
| + | journalctl --disk-usage | ||
| + | </ | ||
| + | |||
| + | Limit log size | ||
| + | < | ||
| + | SystemMaxUse=50M in / | ||
| + | </ | ||
| + | |||
| + | Reload conf afterward | ||
| + | < | ||
| + | systemctl restart systemd-journald | ||
| + | </ | ||
| + | |||
| + | ==== Ubuntu Wayland issue ==== | ||
| + | |||
| + | https:// | ||