Here's a record of my experiences when setting up Void Linux for the first time, maybe it contains useful information for somebody :-)
- Laptop: Lenovo IdeaPad S340
- Void Linux installer version: 20191109 (x86_64 musl)
| # after the virtual disk has already been expanded (e.g. in proxmox) | |
| apk add --no-cache cfdisk e2fsprogs-extra | |
| # choose partition then "Resize" > "Write" (to finalize) | |
| cfdisk | |
| # replace * with partition you are resizing | |
| resize2fs /dev/* |
| #[macro_use] extern crate rocket; | |
| use std::env; | |
| use anyhow::Result; | |
| use rocket::State; | |
| use rocket::http::Status; | |
| use sqlx::{Pool, Postgres}; |
Here's a record of my experiences when setting up Void Linux for the first time, maybe it contains useful information for somebody :-)
| On void linux. | |
| Under `/etc/containers/` there is a file called `registries.conf`. It is complemented by `man 5 containers-registries.conf`. | |
| Change (for me lines 11-12) which say | |
| [registries.search] | |
| registries = [] | |
| #!/bin/sh | |
| # | |
| # PROVIDE: nodered | |
| # REQUIRE: LOGIN | |
| # KEYWORD: shutdown | |
| # Author: Andrew Pearson (apearson.io) | |
| # Version: 1.0.2 | |
| # Description: |