• @[email protected]
    link
    fedilink
    English
    9
    edit-2
    1 day ago

    Android hate not tolerated. Android can delete system apps, if you aee root. On linux you can"t install or uninstall anything if you are not root

    • @[email protected]
      link
      fedilink
      English
      115 hours ago

      Or by connecting an Android phone to a computer, enabling USB debugging, launching a terminal and typing

      adb shell pm uninstall -k --user 0 com.package.name.of.app

      No root needed!

    • @[email protected]
      link
      fedilink
      211 day ago

      Considering how difficult it still can be to get root on Android, I understand the shade, though.

    • @[email protected]
      link
      fedilink
      191 day ago

      On linux you can"t install or uninstall anything if you are not root

      Wrong. You can install Flatpak apps as a user, which are very similar to apps on Android.

    • @[email protected]
      link
      fedilink
      101 day ago

      On linux you can"t install or uninstall anything if you are not root

      That’s not true at all. You generally can’t use your distribution’s package manager to install or uninstall without elevated privileges. But you can download packages, or executables with their own installer, and unpack/install under your home directory. Or, you can compile from source, and if you ./configure’d it properly make install will put it under your home.

      Standard Linux distributions don’t place restrictions on what you can and cannot execute; if it needs permissions for device access of course you’ll need to sort that out.