After convincing my employer to move away from MS office I can finally make the permanent switch away from windows.

I settled on pop_os for now since it supports hybrid Nvidia graphics out of the box and I am a noob.

Two questions:

  1. I used OneDrive, and especially the file on-demand (all files on server visible in explorer but only downloaded when needed) feature a lot. What cloud storage provider has the best Linux integration? I dabbled with NeXtCloUD but the Linux client is not great, especially the file on-demand implementation.

  2. What are best practices for managing apps? The last time I entertained the idea of switching, I ended up with applications installed from the snap store, flatpacks, some appimages, some through apt. It quickly gets confusing for me when I want a specific program but it, f.ex., is only distributed through the snap store. Is there a GUI (I know) way to see all applications, where they’re installed from, with an easy remove button? Akin to what windows offers?

  • @perishthethought
    link
    English
    616 days ago

    2 … Is there a GUI (I know) way to see all applications, where they’re installed from, with an easy remove button? Akin to what windows offers?

    For a GUI option, with KDE, I can go into the Discover app store, and then click the “Installed” link in the lower-right.

    Example…

    For a CLI way to list all apps, I found this page which gives this command:

    for app in /usr/share/applications/*.desktop ~/.local/share/applications/*.desktop; do app="${app##/*/}"; echo "${app::-8}"; done | sort

    Have fun finding the best option for your system.