Services

List all active services: List only running services: Search for a service: You can enter any part of a service name string. In this example the result would be: postfix.service or any other service which name contains string “fix”.

Docker Image Pruning

Docker takes a conservative approach to cleaning up unused objects (often referred to as “garbage collection”), such as images, containers, volumes, and networks. These objects are generally not removed unless you explicitly ask Docker to do so. This can cause Docker to use extra disk space. For each type of object, Docker provides a prune command. docker.com … Read moreDocker Image Pruning

Duplicate files – find & delete – fdupes

Fdupes is a small and fast utility for finding duplicate files and deleting them. Install the app: This example is very dangerous, DO NOT try it first, since it will erase all duplicates without asking, and potentially you could loose other files, this is JUST an example: In this example, swith r is for recursive, … Read moreDuplicate files – find & delete – fdupes

Find command

Find all files with same extension (recursively and case insensitive): fpx Find all files except ones with extensions: webp, jpg, jpeg (recursively and case insensitive): Find all files and directories starting with a specific string in the current directory (recursively and case insensitive): Find all files and directories in current directory and its subdirectories containing … Read moreFind command

Tested in Debian or Pop OS