I’m like two years into Linux… but some stuff never get stuck to my brain. Every time I do “sudo apt install ” and I get this error “Errors were encountered while processing:”

    This always fix it:

    sudo apt-get -f install
    

    Everytime I try to add my Ledger to a new computer it always has connection issues

    Ledger has come up with an easy fix

    Just run this in a terminal

    wget -q -O - https://raw.githubusercontent.com/LedgerHQ/udev-rules/master/add_udev_rules.sh | sudo bash
    

    Can’t runt app images out of the box with Linux Mint or Ubuntu.

    The problem here is that Ubuntu is missing the FUSE (Filesystem in Userspace) library. This FUSE library provides an interface for userspace programs to export a virtual filesystem to the Linux kernel.

    Open terminal and type

    sudo apt install libfuse2
    

    Then run the app image.

    Ofcourse I want my app images in Linux application launcher

    How to install:

    sudo add-apt-repository ppa:appimagelauncher-team/stable

    sudo apt-get update

    sudo apt-get install appimagelauncher