mirror of
https://github.com/Brandon-Rozek/website.git
synced 2026-01-17 02:00:25 +00:00
609 B
609 B
| title | date | draft | tags | medium_enabled | |
|---|---|---|---|---|---|
| Chroot and Virtual Filesystems | 2020-11-29T10:52:07-05:00 | false |
|
true |
When running applications under a chroot environment, it can be annoying when certain virtual filesystems are unavailable. Here are the commands to mount the most common ones:
sudo mount -t proc /proc /mnt/root/proc
sudo mount -o bind /sys /mnt/root/sys
sudo mount -o bind /dev /mnt/root/dev
Source: ArchWiki