In Chapter 7 we looked at basic Rust programming constructs and identified what makes Rust a secure language. We also examined in detail various Rust structures that can be used to accomplish safe programming. In this chapter we explore how to use Rust to create Linux containers and sandboxes. We will mainly focus on the concept of namespaces under Rust and how to use them for process isolation.
Refreshing Linux Namespaces?
Linux namespaces are like a superpower for the Linux kernel. They give processes ...