Check out 10 Linux Tweaks I Make on Every New Home Lab Server #linux #linuxtweaks #linuxhacks #homelab https://www.virtualizationhowto.com/2026/06/10-linux-tweaks-i-make-on-every-new-home-lab-server/
Yesterday I tried to install PiHole and it had errors. I restarted Proxmox and it won’t go past a black screen My PBS was running as a VM there. Im stuck any help is appreciated.
Most Home Lab Outages Start With These Hidden Dependencies #homelab #homeserver #outage #hiddendependencies https://www.virtualizationhowto.com/2026/06/most-home-lab-outages-start-with-these-hidden-dependencies/
Good write-up. Dependencies can bite you real hard if not careful. Running a Proxmox 3 node cluster with 20 VMs and along with 80 docker containers can be a challenge to maintain so automation has been my lifesaver. Been considering setting up a time server for the homelab since I had a time issue on one of my server.
These Git Repositories Changed How I Manage My Home Lab #homelab #homeserver #git #gitrepo https://www.virtualizationhowto.com/2026/06/these-git-repositories-changed-how-i-manage-my-home-lab/
i know this is breaking news, but Fable 5 has been sidelined by the US Gov't as of today. Has this had impacts in your homelab on projects you are working on? For my purposes i've had to switch back to opus 4.8 to continue development on a new ai platform i'm building..
@David Vincent To answer both your questions. After installing Ollama, you will need to edit the ollama.service file as root: "systemctl edit ollama.service". Add the following and than restart the service. [Service] Environment="OLLAMA_HOST=0.0.0.0:11434" Environment="OLLAMA_CONTEXT_LENGTH=64000" <---Context Environment="OLLAMA_KV_CACHE_TYPE=q8_0" Environment="OLLAMA_GPU_COUNT=2" Environment="OLLAMA_GPU_MEMORY_LIMIT=24GB" Environment="OLLAMA_GPU_SPLIT=0.5,0.5" <----- Splits the GPUs Environment="OLLAMA_FLASH_ATTENTION=1" Environment="OLLAMA_NUM_CTX=8192" Environment="OLLAMA_MAX_LOADED_MODELS=3 Environment="OLLAMA_KEEP_ALIVE=2" Environment="OLLAMA_NUM_PARALLEL=4" These setting will optimized Ollama for better performance but can be modify to fit your needs.