• Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    23
    ·
    17 hours ago

    Do you have examples where that isn’t the case?

    Linux phones tend to just be the desktop versions of desktops adapted for a smaller screen.

    Android has well built ecosystem with strong privacy and security features not really found anywhere else. The entire system focuses on least privilege with strong security isolation so even if you do download something bad it will have a hard time doing real damage.

    • fartsparkles@lemmy.world
      link
      fedilink
      English
      arrow-up
      12
      arrow-down
      2
      ·
      15 hours ago

      Errrrmmmm I think this is just an issue either with your choice of distro or your approach to security.

      The Linux ecosystem has by far some of the greatest security technologies available for modern operating systems. Android is a Linux distribution after all.

      Most of the issues with Linux on a phone so far is more the hardware and architecture to support and integrate the hardware.

      Major mobile device manufacturers have secure enclaves, cryptographic co-processors, advanced face/depth cameras, fingerprint readers, etc. The system architecture needs to be tailored to the hardware and security architecture for the threat models mobile devices face that you want to mitigate.

      iOS is Unix deep under the hood, Android is Linux deep under the hood. The issues here aren’t with the kernels, they’re with userspace, hardware selection, and perhaps the odd supporting driver, service, or interface.

      • Possibly linux@lemmy.zip
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        1
        ·
        10 hours ago

        Current Linux doesn’t come close to Android. I wish it did but you still need root access and permission controls leave something to be desired. I think that is mostly fine for desktop but on mobile the stakes are much higher since spyware could have much more access.

        • fartsparkles@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          1
          ·
          9 hours ago

          I’m not trying to be rude but none of these points are true. I imagine you’re confusing a single Linux distribution and their architecture with being representative of Linux as a whole. You can indeed spin an unprivileged, immutable distribution with SELinux for MAC, hardened kernel, and so much more, which would blow Android et al out of the water.

          • Possibly linux@lemmy.zip
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            8 hours ago

            Source?

            I’m basing this all on the Android documentation along with my experience on desktop Linux. I would love if there was a Linux system that was as solid as Android but I haven’t seen anything as of yet.

            • fartsparkles@lemmy.world
              link
              fedilink
              English
              arrow-up
              1
              arrow-down
              2
              ·
              6 hours ago

              Build it. Gentoo, Arch, and any other minimalist distro where there’s less userspace fluff out of the box can easily be configured to be incredibly hardened.

              Your looking for a desktop distribution that doesn’t really exist out of the box (perhaps Qubes). Android is a mobile OS for a reason and has a different architecture in userspace to accommodate for is threat model and use cases.

              Just because desktop distros don’t typically lock down userspace out of the box doesn’t mean it’s not possible.

              No specific sources as this is just generic Linux. Just look up hardening guides for various distros like Arch etc.

    • troed@fedia.io
      link
      fedilink
      arrow-up
      7
      arrow-down
      4
      ·
      16 hours ago

      Android is Linux, and uses regular Linux security mechanisms.

      • tired_n_bored@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        3
        ·
        16 hours ago

        That’s not the case. Android is extensively modified in order to have sandboxed applications only and restrictive hardware permissions.

        Run any executable on Linux. Likely by default it can access ~/Photos and the webcam. Android doesn’t allow that

        • Fedizen@lemmy.world
          link
          fedilink
          English
          arrow-up
          8
          arrow-down
          2
          ·
          edit-2
          15 hours ago

          I’ve looked at a couple linux phones and those tend to be designed with hardware switches for antennas and cameras, which I would argue are more secure

        • troed@fedia.io
          link
          fedilink
          arrow-up
          8
          arrow-down
          3
          ·
          15 hours ago

          “uses regular Linux security mechanisms” is true regardless of whether any distributions you use configure them the same way or not.

          The Android platform takes advantage of the Linux user-based protection to identify and isolate app resources.

          As part of the Android security model, Android uses Security-Enhanced Linux (SELinux) to enforce mandatory access control (MAC) over all processes, even processes running with root or superuser privileges (Linux capabilities).

          https://source.android.com/docs/security/features

        • Evil_Shrubbery@lemmy.zip
          link
          fedilink
          English
          arrow-up
          5
          arrow-down
          1
          ·
          edit-2
          15 hours ago

          Flatpak?
          And some level of immutability?

          It doesn’t seem like much of a step for Linux distros to cover the “gap” if/when we get any sort of viable mobile options for eg 1% of the market.

          • Possibly linux@lemmy.zip
            link
            fedilink
            English
            arrow-up
            2
            ·
            10 hours ago

            Flatpak has promise but the sandbox much weaker than Android. I wouldn’t run anything untrusted with it as sandbox escapes are likely possible. Bubblewrap is highly portable at the cost of being less secure. Kernel level sandboxing such as SElinux and Namespaces are much more bulletproof since they leverage the kernel.

            Honestly if you are building something from the ground up I would instead focus on virtualization since the Linux kernel isn’t exactly free of security issues.