Rodando IA local no Linux com Ollama

Running local AI on Linux with Ollama

Running AI models locally is no longer just a laboratory activity: with Ollama, you download and run LLMs on your own Linux machine without sending data to the cloud or paying per token. This post explains where the project came from — its origin explains much of its design — and shows how … Read more

Monitorando Servidores Linux com Prometheus e Node Exporter

Monitoring Linux Servers with Prometheus and Node Exporter

A server without monitoring only tells you it is down when someone complains. With Node Exporter, each host exposes Linux metrics; Prometheus collects and stores them as time series for queries and alerts. This guide uses Ubuntu packages where available, avoids exposing metrics to the internet, and validates each step before continuing. The … Read more

Dominando o systemd: comandos essenciais

Mastering systemd: essential commands

Like it or not, systemd is the init system of virtually every current distribution — Ubuntu, Debian, Fedora, Arch, openSUSE. Mastering half a dozen commands handles 90% of everyday service management. Here are the essentials, straight to the point. Managing services systemctl status nginx # status, PID, last log lines sudo systemctl … Read more

Automatizando Servidores Linux com Ansible

Automating Linux Servers with Ansible

Administering one server by hand is manageable. Administering ten, updating package after package over SSH, invites mistakes. Ansible solves this: you describe the desired state in YAML, and it applies it to every server — no agent, just SSH. This guide is the next step for anyone who already knows the basics; … Read more

Instalando Golang no Linux

Installing Golang on Linux

Go began at Google in 2007 (Pike, Thompson, Griesemer) and became open source in 2009 — we tell that story in The History of the Go Language. Fast compilation, one binary, concurrency with goroutines. Docker, Kubernetes, Terraform: Go. In 2019, this … Read more

Curso de Docker Grátis

Free Docker Course

There is no excuse left for not learning Docker. If you cannot learn Docker with Jeferson, you will not learn it with anyone — he really knows his stuff! Recently, Jeferson from LinuxTips posted a video on his channel announcing … Read more