software

Best Linux Apps

April 29, 2023
linux, apps, software, flatpak

Apps # HardInfo # System Profiler and Benchmark sudo apt install hardinfo Flatseal # Manage Flatpak permissions https://flathub.org/apps/details/com.github.tchx84.Flatseal flatpak install flathub com.github.tchx84.Flatseal Obsidian - Markdown-based knowledge base # flatpak install flathub md.obsidian.Obsidian Telegram Desktop # flatpak install flathub org.telegram.desktop ONLYOFFICE Desktop Editors # flatpak install flathub org.onlyoffice.desktopeditors Skype # flatpak install flathub com.skype.Client GIMP Image Editor # https://launchpad. ...

Docker and Docker Compose Installation

April 29, 2023
docker, docker compose, software

Install Docker and Docker Compose Installation # https://docs.docker.com/engine/install/ubuntu/ https://docs.docker.com/engine/install/linux-postinstall/ Install Docker Engine # Uninstall old versions # for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done Set up the repository # Update the apt package index and install packages to allow apt to use a repository over HTTPS: sudo apt-get update && sudo apt-get install ca-certificates curl gnupg lsb-release Add Docker’s official GPG key: sudo install -m 0755 -d /etc/apt/keyrings \ && curl -fsSL https://download. ...

Enpass - Offline Password Manager

April 29, 2023
password manager, software

Enpass: Password Manager # Offline Password Manager and Secure Vault. Saves and fill in all your passwords. https://www.enpass.io Install # To install Enpass, add a new repository to /etc/apt/sources.list: # sudo -i echo "deb https://apt.enpass.io/ stable main" > /etc/apt/sources.list.d/enpass.list And import key that is used to sign the release: # wget -O - https://apt.enpass.io/keys/enpass-linux.key | tee /etc/apt/trusted.gpg.d/enpass.asc After that, you can install Enpass as any other software package: # apt update && apt install enpass exit