Files
web-archlinux_cz/content/posts/arch-linux-zakladni-prikazy.md
T

26 lines
600 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Arch Linux Základní příkazy"
date: 2026-03-26
description: "Praktický průvodce základními příkazy v Arch Linuxu"
tags: ["návody", "arch-linux", "příkazy"]
---
Praktický průvodce pro začátečníky a mírně pokročilé uživatele.
## Správa balíčků
```bash
sudo pacman -Syu # aktualizace systému
sudo pacman -Syu balíček # instalace balíčku
sudo pacman -Rns balíček # odebrání balíčku
pacman -Ss balíček # hledání balíčku
```
## Systemd
```bash
systemctl status služba
systemctl enable --now služba
journalctl -xe
```