New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Hide redirects
  • 20:37, 26 May 2026Ollama Modelfile List (hist | edit) ‎[21,891 bytes]Admin (talk | contribs) (Created page with "'''This is a local Ollama installation running on a powerful local GPU.''' __NOTOC__ This page serves as a comprehensive technical registry and capabilities guide for the locally installed Ollama Large Language Models (LLMs). It outlines their core architecture, performance profiles, memory usage, and safety alignment status. == Local Hardware Performance Overview == The following estimates assume full GPU offloading utilizing a high-end local GPU layout. Splitting mod...")
  • 18:04, 1 May 2026Ollama Modelfile Sample (hist | edit) ‎[2,306 bytes]Admin (talk | contribs) (Created page with "= Ollama Modelfile Cheat Sheet = == Basic Structure == A Modelfile is a recipe for building a model. <pre> FROM <base_model> # Optional settings PARAMETER <key> <value> SYSTEM <text> TEMPLATE <text> ADAPTER <path> LICENSE <text> MESSAGE <role> <text> </pre> == FROM (Required) == Base model you build on. <pre> FROM llama3 FROM mistral FROM ./local-model.gguf </pre> == PARAMETER == Controls runtime behavior. === Common Parameters === <pre> PARAMETER temperatur...")
  • 16:29, 30 April 2026Ollama Systemd Unit File Sample (hist | edit) ‎[1,508 bytes]Admin (talk | contribs) (Created page with "== Ollama systemd override (annotated) == === Resource limits === <code> MemoryMax=16G # hard RAM cap (kills process if exceeded)<br> MemoryHigh=14G # soft limit (throttling before hard cap)<br> CPUQuota=400% # limit to ~4 CPU cores </code> === File descriptors === <code> LimitNOFILE=1048576 # prevent "too many open files" </code> === Restart / stability === <code> Restart=on-failure # restart only on crashes<br> RestartSec=3 # delay before restart<br> StartLimitInter...")
  • 14:24, 20 April 2026Grafana Alloy, Loki and SELinux (hist | edit) ‎[10,432 bytes]Admin (talk | contribs) (Created page with "= Grafana Alloy, Loki and SELinux = This article summarizes how to run Grafana Alloy on an SELinux-enabled Linux system, how to troubleshoot startup and access problems, and what to check when Alloy sends metrics to Mimir or logs to Loki. == Scope == The main SELinux topics for Alloy are: * execution of the Alloy binary * outbound network access to Mimir and Loki * reading local log files for Loki * reading the systemd journal for Loki * file ownership and runtime st...")
  • 14:23, 20 April 2026Systemctl Cheet Sheet (hist | edit) ‎[1,918 bytes]Admin (talk | contribs) (Created page with "= systemctl Cheat Sheet = This is a generic `systemctl` cheat sheet using `alloy.service` as the example unit name. == Service Status == <pre> systemctl status alloy.service systemctl is-active alloy.service systemctl is-enabled alloy.service </pre> == Start, Stop, Restart == <pre> systemctl start alloy.service systemctl stop alloy.service systemctl restart alloy.service systemctl reload alloy.service </pre> == Enable or Disable at Boot == <pre> systemctl enable a...")
  • 20:55, 4 February 2026PoC: KVM (hist | edit) ‎[24,139 bytes]Admin (talk | contribs) (Created page with "kvm testsetup at home ==System== vmadmin@ts01:~$ sudo -i root@ts01:~# cat /etc/os-release PRETTY_NAME="Ubuntu 25.10" NAME="Ubuntu" VERSION_ID="25.10" VERSION="25.10 (Questing Quokka)" VERSION_CODENAME=questing ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME...")
  • 13:49, 23 December 2025Custom Monitoring Stack (hist | edit) ‎[11,813 bytes]Admin (talk | contribs) (Created page with "= Custom Monitoring Stack = ''Modular monitoring with exporter, plugins, jobrunner and scheduler'' __TOC__ == Overview == This system provides a lightweight monitoring framework built around: {| class="wikitable" ! Component !! Purpose |- | Exporter || Receives metrics and exposes Prometheus format |- | Plugins || Perform individual checks (ping, port, HTTP, cert, process) |- | JobRunner (optional) || Executes plugins remotely via HTTP |- | Scheduler (optional) || Or...")