I recently installed chromium, created a new user and logged into a website. After my work was done, I removed chromium with “sudo dnf remove chromium”.

A few days later I installed chromium again through dnf. My user account was still there and I was logged into the same site.

Is there a way to avoid this and uninstall an app along with all its user data?

  • maliciousonion@lemmy.mlOP
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    9
    ·
    22 days ago

    Thanks. I wish there was a more straightforward process though.

    Every other OS I’ve used purges all app data after uninstalling, why is Linux different?

    • TheGrandNagus@lemmy.world
      link
      fedilink
      English
      arrow-up
      25
      ·
      22 days ago

      If you install something as a Flatpak, you have that option.

      And Windows absolutely does not remove everything after an app is uninstalled.

      • maliciousonion@lemmy.mlOP
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        12
        ·
        22 days ago

        (In Windows) If you uninstall a program using the “uninstall.exe” provided, you can tick an option to wipe all the data.

        This is also available from the Control Panel’s “Uninstall programs” page. The “uninstall” button usually launches the “uninstall.exe” provided by the app’s devs.

        I’ve never had this issue on Windows before

        • just_another_person@lemmy.world
          link
          fedilink
          arrow-up
          15
          ·
          22 days ago

          That is at the discretion of the developer who packaged it up. Linux is designed to NOT do such things by default, and is therefore more resilient to “oopsie” moves.

          • maliciousonion@lemmy.mlOP
            link
            fedilink
            English
            arrow-up
            2
            arrow-down
            1
            ·
            22 days ago

            Yeah It’s more reliable in that way.

            Still, I wish there was a something like a simple flag for the package manager so I could control if user data gets preserved.

            I’m a bit surprised that that isn’t a feature.

            • just_another_person@lemmy.world
              link
              fedilink
              arrow-up
              3
              ·
              21 days ago

              Package management isn’t intentionally separated from running code operations for a reason. If you want to do something specific like this regularly though, just write a simple two like script that handles it for you: 1) uninstall 2) rm directories.

        • TheGrandNagus@lemmy.world
          link
          fedilink
          English
          arrow-up
          10
          arrow-down
          1
          ·
          22 days ago

          Yeah, if the dev provided an uninstaller, if that uninstaller really does clean everywhere, and if control panel finds and executes that uninstaller – which in my experience it very often doesn’t.

          To me the Flatpak way is better. But yeah, maybe system packages not doing it can be annoying sometimes. I just take issue with you saying it’s not an issue on Windows when it absolutely is, and is IMO worse there.

        • Khanzarate@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          22 days ago

          Here’s an example. I removed avast via the uninstaller on a relatives computer, it made it laggy as hell. I restart after as the uninstaller demands, but it was still there.

          Searching, I find this official support option. https://support.avast.com/en-us/article/10

          The official Avast Uninstall Tool, the tool to use when the included uninstaller didn’t work.

          The official uninstall tool didn’t work either. I ran it in safe mode, like it said. Didn’t work, either, but it removed some stuff, and finally let me delete some things manually. Ran it again in safe mode after that, finally seems to have removed everything.

          Anyway it’s a great example of if a company doesn’t know what they’re about, windows has no process to recover from that. Window’s process is identical to a Walmart employee saying. “I dunno, man, contact the manufacturer.” Genuinely, its usually enough, but when its not, there’s absolutely no recourse.

        • kolorafa@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          22 days ago

          In the last I had very little success rate of those uninstall tools to actually do their job in full. A lot of time they delete some data but almost always they leave some trash behind.

          And in the first place, I stopped trusting those external uninstall binaries, they could be designed to remove not only app data but remove your personal data, steal data from your PC or infect it (even if just to investigate why you are uninstalling).

    • Wispy2891@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      21 days ago

      Chrome definitely leaves permanent traces on windows when you uninstall it

      And on MacOS there isn’t an uninstaller too, you just send the app to the trash, but all the preferences and leftovers keep littering the drive

    • kolorafa@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      22 days ago

      One of the reason is that apps can place their files in any place they want so the app manager is not aware of those locations.

      Even if it would know then the user still would need a way to remove the app without deleting data, imagine installing Developer IDE or chat app and uninstall process would remove your chats or projects. Imagine app dev accidentally set the “directory that store app data” to /home, it would be bad.

      I not once uninstalled app to install different (for example older) version due to bugs in new one.

      Having the logic allowing to optionally delete data would introduce additional complexity so most old package managers never introduced that feature.

      But I agree that we should slowly introduce a way to to that. Some app managers that manage flatpaks now allow to delete user data after uninstalling app, this now could be done universally because apps installed using flatpak store their data in their own separated/dedicated directory that flatpak engine know about so (unless you give permissions to access other location) thw manager know where the app store data so can offer easy way to remove it.