Linux Namespaces
From Leo's Notes
Last edited on 9 November 2020, at 03:24.
Linux namespaces allow other aspects of the operating system to be independently modified. This includes the process tree, networking interfaces, mount points, inter-process communication resources and more.
As such, namespaces can be used to isolate processes from other processes or resources on the system.
See Also:
- https://ericchiang.github.io/post/containers-from-scratch/
- https://en.wikipedia.org/wiki/Linux_namespaces
- https://songrgg.github.io/archives/ (goes over Linux namespaces wrt Go)