background effect
Foreground
Foreground
D0Z - motion / graphic / dev๐Ÿงบ
Linuxโœ•

brain

Some files are private or not ready yet, if a link gives you a 404 that's why :)
This is a work in progress, new notes will be added daily

List of note Indexes

    
                .... |\| .|||.    |\/|  .|\\. .|.
              .\\||/|.  .\|..||  .\|..|||...||.....
            .|   .....||.|\\\\\\    ... |\\\/. .\\. .||
        .\\|   .|\\|..|\\ .\\\\  .\\|. .\\\\\|  |\| |\\|
        |\\  |\\|..  /\\\. |\|\\   \\\\|.   .|\\. .\\\\|
        .\\. |\\\\\\\|.. .\\|      .\\||\\/|. |\\|     .|/\|
      \. .\\\||/\|....   \\| |\/   |\\\  |\\\| .\\|  \\| ....
    |\/  |\\| |\\\\\\\| |\|.\\\   \\\\. |\\\\| |\\  \\.  ||..
      ..|||\|  .. .\\\\. |\\\\\\  .\\|....|\\\. |\\\\\\  |/. |/
    \\\|..   .\\\ |\\. .\\\| \\|   |||\\\.  ...|\\/||.  .\\\
  |\|  |\/.  /\\\\\| .\\\\. \\.   .../|.   .|\\\|.   |\\\|  |\\
    .  |||\\|.  ..||| .\\|.  |\|  \\|..../\\| |\\|  .\\\\\   ..
    \\|  .||\|.|..      |\\\|./\  \\||\. ||...    .\\\\/.  |\/||
    ..|/||.   |\\\\\|.     .|/\|  ||.        .||\\\     .|||. |\
  .\/|  \\\. .|\\\|||\\\||..       .|\\\\\\\|\\\\.  /\\\\||. |
    .|| |\\\\|  .......|\\\\\\.  .\\\. ..|||....  .\\\\|.. ...
    \\||....|\\\\\\\\||\\\\\\\/   |\|....|||\\\\\\\/....|\\\|
      ||.|\||\\| .....|\\\\..\\|    .|\\\. ||........ .|\|...
          . |\  /\\/\\\\\\. |\.  .\\\\\\.  ./\\\\/  |\\\||.
        .|\.|\| .|\|... ..              ./\\|..|\\|  ..
            .|\\|  .\\\\.\\\\\\\   \||...\\\|..|\\\|.||
                |\. ..||....||     ... ..||\\\. .|.
                        ...            .......

  

โ†‘ ๐ŸŒ TECHNOLOGY


Linux

Install

Distros

Packages

  • list packages: dpkg -l
    • count them: dpkg-query -W -f='${Package}\n' | wc -l
  • apt remove --purge <package> - removes package and config files
  • ๐Ÿ”’ net-tools
  • ๐Ÿ”’ ripgrep
  • ps aux
    • list processes
    • ps auxf - list process tree
  • top
  • https://github.com/aristocratos/bashtop - stats in terminal
    • BTOP - same but in C++
  • https://htop.dev/ - stats in terminal
  • iftop - list network usage
  • lsof - show ressource usage
  • PDFINFO:
    • poppler-utils
      • pdfinfo <file.pdf>
  • libimage-exiftool-perl
    • exiftool <image.jpg>
  • tmux - a terminal multiplexer
  • Zellij - A terminal workspace with batteries included (I'm gonna try tmux first)
  • kitty - GPU terminal emulator
  • https://github.com/MusicPlayerDaemon/MPD - player music on a server
  • mc - file manager in terminal
  • journalctl -xe debug
    • x : add message explanation
    • e : jump to end
    • journalctl -xef debug and watch (f)
  • Flameshot - screenshot tool
  • dust - du + rust = dust. Like du but more intuitive.
  • systemctl list-units --type=service --state=running view running services (or use top)
  • CRON
    • stored in /etc/crontab
  • ClamAV - antivirus
  • aide - integrity checks
    • aide --check --config=/etc/aide/aide.conf
  • ncdu - like du but more visual
  • duf - prettier version of df (shows drive usage)
  • lsusb - list usb devices
  • lshw - ls but for hardware
    • lshw -C cpu
    • lshw -C memory
    • lshw -C disk
  • mtr - ping + traceroute - track latency and packet loss for each hop
  • fd - like find but faster and better
  • fzf - fuzzy finder
    • history | fzf
  • ranger - tui file manager
  • watch - rerun commands in specified interval
    • watch -n 0.5 nvidia-smi
  • dog - better DNS lookups - replace dig
  • termshark - tui for tshark
  • ipcalc - ip subnet calculator
  • procs - alternative to ps
  • rsync - file transfer
  • shred - rm on steroid
  • unp - unpack any archive (zip, rar, gz ...)
  • asciinema - record your terminal
  • gzip <file> - compress a file (the original will be replaced with the archive <file>.gz)
    • gunzip <file> - decompress a file (the archive will be replaced with the original)
  • bzip2 <file> - works similarly as gzip (produce <file>.bz2)
    • bunzip2 <file> - decompress
  • xz <file> - like gzip (produce <file>.xz)
    • unxz <file> - like gunzip
  • zip <output>.zip <file> - creates a compressed archive (the .zip is optional but helps to know the archive format)
    • zip -r udev.zip /etc/udev - recursive
    • unzip -l udev.zip - list content
    • unzip udev.zip - extract archive
  • tar - Tape ARchive
    • -j - uses bzip2
    • tar โ€“cvf mybackups/udev.tar /etc/udev creates an archive (the .tar is optional but helps to know the archive format)
      • c create a tar file
      • v verbose
      • f name of the output file
    • tar โ€“tvf mybackups/udev.tar - list the files of an archive
      • t list content
      • v verbose
      • f filename
    • tar โ€“zcvf mybackups/udev.tar.gz /etc/udev - uses gzip for compression
    • tar โ€“xvf udev.tar.gz - extract an archive
    • tar -rvf udev.tar /etc/hosts - adds a file to an archive
  • w3m - text based web browser

Misc

People

ยฉ 2026 d0z.eu | 0.1.0-beta.41