Linux

Archlinux Playground

Arch Linux is a lightweight and flexible Linux distribution that adheres to the KISS (Keep It Simple, Stupid) philosophy..

Get access to the Archlinux playground with one click

Welcome to the Arch Linux Playground!

Arch Linux — a minimalist, rolling-release distribution built around the KISS principle. You control every package, every configuration.

What’s Pre-installed

  • Shell: Bash
  • Package manager: pacman (Arch Package Manager)
  • Rolling release: always the latest stable versions

Quick Start

uname -a
cat /etc/os-release
pacman -Syu
pacman -S vim curl wget git

Common Workflows

# Package management
pacman -Ss <name>           # search
pacman -Si <package>        # package info
pacman -S <package>         # install
pacman -Rns <package>       # remove + dependencies
pacman -Q                   # list installed
pacman -Qe                  # explicitly installed
pacman -Qdtq | pacman -Rs - # remove orphans

Advanced Tips

# Query file ownership
pacman -Qo /usr/bin/curl

# List files in a package
pacman -Ql curl

# Downgrade a package (from cache)
ls /var/cache/pacman/pkg/ | grep curl
pacman -U /var/cache/pacman/pkg/curl-<version>.pkg.tar.zst

Session Notes

  • Session lasts 1 hour.
  • Always run pacman -Syu before installing to avoid dependency conflicts on this rolling release.