docker run -d -p 11434:11434 -p 3000:8080 --gpus all -e OLLAMA_HOST=0.0.0.0 -e OLLAMA_FLASH_ATTENTION=1 -e OLLAMA_KEEP_ALIVE=-1 -e OLLAMA_KV_CACHE_TYPE=q4_0 -e OLLAMA_BASE_URLS=http://0.0.0.0:11434 -v /data/ollama/.ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always --pull always ghcr.io/open-webui/open-webui:ollama
Roy's Random Rants
Reviews of products I like, plus whatever comes to my mind...
Sunday, February 15, 2026
Monday, February 9, 2026
Useful MCP servers for Claude Code
For web content scraping
claude mcp add playwright npx @playwright/mcp@latest
Monday, February 2, 2026
Speed-up XRDP on Debian
Edit /etc/xrdp/xrdp.ini
Locate tcp_send_buffer_bytes and change to:
tcp_send_buffer_bytes=4194304
sudo sysctl -w net.core.wmem_max=8388608
Create /etc/sysctl.d/xrdp.conf file and add the following:
net.core.wmem_max = 8388608
Wednesday, January 28, 2026
Upgrade to Windows 11 on unsupported hardware
- Download Windows 11 ISO
- Disable networking
- Mount the ISO
- Open a Command Prompt and run:
- X:\sources\setupprep.exe /product server
Wednesday, January 14, 2026
Check for SMART status on Debian
Install smartmontools and use smartctl:
sudo smartctl --all /dev/xxx
Monday, September 29, 2025
Unable to turn on BitLocker Error: System cannot find the file specified
Rename C:\Windows\System32\Recovery\REAgent.xml to REAgent.old
Friday, September 26, 2025
Scan and repair corrupt Windows system files
Using elevated command prompt:
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow
chkdsk /f /r
References:
Subscribe to:
Comments (Atom)