Advanced Search
Search Results
13 total results found
Create ZFS "folders" aka dataset
Run this command to create a ZFS Dataset zfs create rpool/config/<containername> Run this command to destroy a ZFS Dataset zfs destroy rpool/config/<containername>
PROXMOX Nag Screen Removal
Run the following command in the proxmox terminal sed -Ezi.bak "s/(Ext.Msg.show\(\{\s+title: gettext\('No valid sub)/void\(\{ \/\/\1/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service
New Proxmox / Docker Server Deployment guide
Deployment Summary Here, we will document the general steps to deploy a Proxmox / Docker setup. Install Proxmox Development Environment. Fix the repositories. We need to remove the enterprise repos and add the no-subscription repos nano /etc/apt/source...
Setting up SAMBA
Checkpoints and Snapshots for ZFS
Zpool checkpoint rpool
Git Cheat Sheet / Guide
https://ittools.fifthdread.com/git-memo Install Git on MacOS brew install git Install Git on Windows https://git-scm.com/download/win Set Config git config --global user.name "[name]" git config --global user.email "[email]" example: git config ...
Setting up Obsidian Sync for GameDev
Download Obsidian on any device Create a Vault on your device. Name it anything. I name mine GameDev for the GameDev vault. Click the Settings Cog Wheel Click Community Plugins Enable Community Plugins.Click Browse Search for Self-Hosted Download...
Backups
Backups are accomplished differently depending on the server.Proxmox1 uses DuplicatiProxmox2 uses rsync Rsync & crontab Using the below command, you can see the rsync commands which backup docker. crontab -e Below is an example configuration. # Palworld H...
Directory Tree Scanner - qdirstat - windirstat alternative
Directory Tree Scanner - qdirstat - windirstat alternative
Docker Network Limit fix
nano edit the below file /etc/docker/daemon.json { "log-level": "warn", "log-driver": "json-file", "log-opts": { "max-size": "10m", "max-file": "5" }, "default-address-pools": [ { "base": "172.16.0.0/12", "size": 2...
Add Pfetch and fastfetch to proxmox along with making it run at start
apt install unzip && wget https://github.com/dylanaraps/pfetch/archive/master.zip && unzip master.zip && install pfetch-master/pfetch /usr/local/bin/ && ls -l /usr/local/bin/pfetch && echo -e "\n# Add pfetch command\npfetch" >> ~/.bashrc cd ~/ && wget http...
Proxmox Power Savings / CPU Governor
https://tteck.github.io/Proxmox/#proxmox-ve-cpu-scaling-governorhttps://community.home-assistant.io/t/psa-how-to-configure-proxmox-for-lower-power-usage/323731/27 Proxmox ships with Performance Governor by default, and you may want to change it to save power...
ZSH customize without OhMyZSH
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ~/powerlevel10k && echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc