GrouchyGrape
GrouchyGrape When you install an app, and it requires elevation to do so, you're running that app as root/local admin. You're giving it permission to do whatever it wants to your system.
If I am not misunderstanding you, I think you may not be correct on this one.
When you install an application, let's say Firefox, it is the package manager (pacman, apt, dnf, zypper etc.) of the system which requires root (/elevated privilege). It needs it to unpack the package and write the files and folders into the appropriate locations into your system filesystem.
The application itself, in this case Firefox, won't acquire any root privilege in this process. it can't "do whatever it wants to your system". However it will have access to your home directory or other locations your user can read from or write to, for example a partition mounted somewhere in the filesystem for storing data.
There are tools that you can use to limit what your user application can have access to. They may all have some pros and cons but that's not the point here.
According to what I understand from your statement, if I install Firefox, needing to run my package manager as root, I am giving it (Firefox) elevated privilege to do whatever it wants. This is not the case.
You could verify this by filtering htop for example to show root and user processes. You would never see Firefox running as root unless you have explicitly run it with sudo firefox which is a terrible mistake.
I can understand that the user application you install in your system are not properly sandboxed out of the box in your Linux box as they are on Android, but that doesn't mean they run as root and can do whatever they want.
Now, if you use a command line tool to perform some task, for example systemctl to start a system service x.service. You will have to do this as root. Now I fail to see what difference would it make to run it from your user account with sudo or log in to a root account using the same. If x.service or systemctl itself are compromised, this will cause harm to your system no matter where it is run from.