Skip Navigation

Switching from win 11

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?
59 comments
  • 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.

  • Think of linux as desktop android... That's probably the best advice I can give you. Depending on which distro you choose, they'll have different app stores. GNOME Software for some, discover (yes, that's the name of the program) for others, Pop!Shop for Pop!OS. As for managing apps - avoid installing snaps. Other than that, don't worry about it.

    Pretty much all cloud providers are supported on linux, most of them just don't have bespoke apps and get added directly to your file manager. Some distros have a step during the initial setup, where you can log into accounts and what not, which should setup stuff like OneDrive automatically. And if not, i don't think setting them up manually is too hard.

    Do not install/uninstall stuff from the terminal. Most self-respecting user friendly distros have an app store which does all the things for you. Installing things from the terminal/the internet should be a last resort, only if the thing you want to install is not available anywhere else.

    As for my distro recommendations... try Fedora KDE or Linux Mint.

  • Pop os has an app store called "pop shop", that has both apt and flatpaks. Get all of your apps from there. They also have an app installed called "eddy" that you can use to install .deb packages in case an app is not available in their app store and you had to download the .deb package for it. Also, I know pop os has an outdated desktop, but they've been working tirelessly on their rust based cosmic desktop and it's coming along pretty nicely (an alpha release is coming soon). They do maintain their current distro no problem. I honestly would stick with it and set it up to your liking. It's a very good distro. As for your OneDrive, that can work with Linux no problem. You can also use Google drive on Linux.

  • What I try to do for managing apps is use the standard repository and flatpak as much as possible and any other method as little as possible.

    I use Linux Mint, and the Software Manager has a "Show Installed Applications" option from which you can pick and choose to uninstall. I think the Pop!_Shop offers similar functionality in Pop!_OS but last time I used it, it felt like they put more thought into how it looks and very little into how it works. One of the main reasons I stopped using Pop!_OS.

  • There's an "online accounts" section in settings that lets you log in with your cloud provider, making nextcloud, google drive or onedrive integrate the way one drive does on windows.

    Or you can use the Celeste client

    • Online accounts works seamlessly with Google Drive but yet not for OneDrive.

      It also is not the same thing as "Drive Sync" on Windows that mirrors local files.

      • Well on gnome 46 the Microsoft sync is much better, but the reason I mentioned Celeste is that it does the thing you mentioned

  • I've used my personal google drive with fuse drive before. Some users report bugs so maybe it's not prod ready but I've had succes

59 comments