Medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-03-10 12:41:04 -05:00
parent c5b2488589
commit 9bf7cfb744
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
14 changed files with 82 additions and 64 deletions

View file

@ -1,9 +1,11 @@
---
title: "Chroot and Virtual Filesystems"
date: 2020-11-29T10:52:07-05:00
date: 2020-11-29 15:52:07
draft: false
tags: ["Linux"]
medium_enabled: true
medium_post_id: 37f5b4c46ae8
tags:
- Linux
title: Chroot and Virtual Filesystems
---
When running applications under a [`chroot`](https://en.wikipedia.org/wiki/Chroot) environment, it can be annoying when certain [virtual filesystems](https://opensource.com/article/19/3/virtual-filesystems-linux) are unavailable. Here are the commands to mount the most common ones:
@ -14,5 +16,4 @@ sudo mount -o bind /sys /mnt/root/sys
sudo mount -o bind /dev /mnt/root/dev
```
Source: [ArchWiki](https://wiki.archlinux.org/index.php/chroot)
Source: [ArchWiki](https://wiki.archlinux.org/index.php/chroot)