14 lines
809 B
Plaintext
Raw Normal View History

2023-09-05 21:28:17 +00:00
created: 20230905210118727
creator: Octt
2023-12-21 20:03:01 +00:00
modified: 20231221190217558
2023-09-05 21:28:17 +00:00
modifier: Octt
tags: Linux Virtualization
title: LXC
<<^wikipediaframe LXC>>
2023-12-21 20:03:01 +00:00
* [[Exploring simple Linux containers with lxc|https://www.redhat.com/sysadmin/exploring-containers-lxc]] --- //Get started with simple containers using the tools available in the lxc project.//
2023-09-05 21:28:17 +00:00
* [[LXC and mount point. Permission denied|https://forum.proxmox.com/threads/lxc-and-mount-point-permission-denied.111693/]]
** Unprivileges LXCs use user/group remapping. So UID/GID 0-65535 inside the LXC will be UID/GID 100000-165535 on the host. To access the bind-mount from inside the LXC with (example) UID 1000 and GID 1000 that folder would need to be owned by UID 101000 and GID 101000 on the host. So to fix (example): `chown -R 101000:101000 ${Folder}`.