mirror of
https://github.com/TrentSPalmer/trentdocs_website.git
synced 2024-11-14 13:01:31 -08:00
12 lines
238 B
Markdown
12 lines
238 B
Markdown
|
# Quick Dirty Reddis Nspawn Container on Arch Linux
|
||
|
|
||
|
## Create a FileSystem
|
||
|
|
||
|
```bash
|
||
|
cd /var/lib/machines
|
||
|
# create a directory
|
||
|
mkdir <container>
|
||
|
# use pacstrap to create a file system
|
||
|
pacstrap -i -c -d <container> base --ignore linux
|
||
|
```
|