List installerede programmer og services
Source: Download script
Last Updated: 11. September 2025 by Agnete Moos (agms@sonderborg.dk)
Click to see the source code
#! /usr/bin/env sh
printf "\n\n%s\n\n" "===== LIST INSTALLED PACKAGES (PROGRAMS): $0 ====="
#apt list --installed
dpkg -l | grep --invert-match "^rc" # Don't show packages that WERE installed
printf "\n\n%s\n\n" "===== LIST ALL SERVICES: $0 ====="
systemctl list-units
printf "\n\n%s\n\n" "===== LIST PROGRAMS IN /usr/share/applications: $0 ====="
ls -l /usr/share/applications
Beskrivelse
Dette script lister installerede programmer og eksisterende services, som kan være relevant ift. fejlfinding.