Linux

Debian Playground

Debian is a open-source Linux kernel and known for its stability, security.

Get access to the Debian playground with one click

Welcome to the Debian Playground!

Debian 12 (Bookworm) slim — the rock-solid backbone of Ubuntu, Kali, and dozens of other distributions. Minimal footprint, maximum stability.

What’s Pre-installed

  • Shell: Bash, GNU coreutils
  • Package manager: apt-get (Debian APT)
  • Base tools: vim, nano, curl, wget (installed on first connect)

Quick Start

uname -a
cat /etc/os-release
apt-get update && apt-get install -y vim curl wget git

Common Workflows

# Package management
apt-get update
apt-get install -y <package>
apt-cache search <term>
apt-get remove <package>
apt-get autoremove

# Check installed packages
dpkg -l | grep -i nginx

# Add a third-party repo
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs

Advanced Tips

# Pin a specific package version
apt-get install -y nginx=1.22.*

# Download a package without installing
apt-get download curl

# Show reverse dependencies
apt-cache rdepends curl

Session Notes

  • Session lasts 1 hour.
  • Slim image — always apt-get update before installing.