Will a self-contained .NET Core ASP.NET webapp on Ubuntu 22.04 change the state of the OS (or other systems) in any way?
I want to run a .NET core webapp on my Ubuntu server, but that server already has many important applications and websites running on the LAMP stack. I'm nervous about .NET core touching/disrupting any of them, mainly because I don't understand how exactly .NET core runs on Linux, what all it does, what it touches, etc.
Don't worry, unless you've explicitly "coded" a thing to modify the system, your web app won't do that. .NET is a framework. Until you're running self-contained .NET code or publishing your code to Native AOT, it won't make any modifications outside what you implement.