I tried running a 2nd instance of Roblox simultaneously on macos 15 with another account but this shows up, if my mac can handle it then why can’t it just let me do it? If I have two copies of an app like Roblox in separate User/Applications folders, macos moves them to the /Applications/ folder.

Sometimes it won’t run apps claiming to be corrupted, so I then have to do sudo xattr -cr /Applications/someapp.app in the terminal and they run perfectly fine. It always nags me if I download apps from anywhere but mac app store. Some of these messages can only be gotten rid of by disabling system integrity protection, but then macos blocks you from running MAS apps due to having “permissive security”.

I don’t daily drive macOS anymore, I switched to Linux on my M1 mac where I can do whatever the hell I want.

      • LifeLemons@lemmy.ml
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        edit-2
        1 hour ago

        There are many different signals the OS sends to applications which are kinda like “Can you kill yourself?” or “Please kill yourself” or “I will kill you” to close it. In computer teminology, there is “close”, “terminate” and “kill” types of signals. These are used so that applications can have time to perform closing tasks (like saving) when neceassary and if they misbehave, just “kill” it.

        Now both windows and linux have these types of signals. In fact every OS has it.

        I beleive this is the reason this meme exists:
        When the user tries to shut a app in windows (throught close button or task manager) windows will wait and not give any option to immediately kill the app. Hence some apps don’t close even after using end task. Only if the app freezes for some time will it give the option for force quit, no other way (edit: it exists). In linux, its the same as windows and limux waits for app to close. But the difference is that option to kill is available anytime in linux and basically gives the user full control. Although kill option in linux may be hidden as a way for users not to use it unless necassary as applications may not like it.

        Shutdown process of both OS is same, they wait for all apps to shut by semding “please close” signal and if they misbehave, option to “shutdown anyways” will be shown to the user, basically killing all apps.

        The meme is not correct and is just a steorotype of different OSes. This steorotype comes from how people normally experinece different OS culture and practices. Both OSes have same process of managing apps. Both OSes will wait for process to close if it freezes and give option to user to force quit.
        SIGKILL in the meme is coreect only for the right panel of the meme and the left panel is actually a SIGTERM (or something else which means “please close”, don’t remember)

        The only thing the meme should emphasis is how the user is given full control to do in linux (even deleting the kernel) while windows is careful to not let users do something stupid.

        Edit: Killing apps in windows can be done on demand through cmd using taskkill command

        • the_crotch@sh.itjust.works
          link
          fedilink
          arrow-up
          2
          ·
          2 hours ago

          Only if the app freezes for some time will it give the option for force quit, no other way

          taskkill /im filename.exe /f

          Or if you have multiple instances of the same executable running, you can kill by PID

          • LifeLemons@lemmy.ml
            link
            fedilink
            English
            arrow-up
            1
            ·
            2 hours ago

            I meant through a graphical user interface. Was saying in view of an average user.

            Although it’s true that I wasn’t aware of this commands existance when writing