(Crosspost from r/Fedora)
I want to put all my code related stuff inside a LXC container and use VSCode remote SSH to go in.
Is there a GUI for managing LXCs in Fedora? Something like the Proxmox Web UI. If not, is LXD from COPR my next best option?
vgaetera
(Vladislav Grigoryev)
2
sudo dnf install libvirt-daemon-driver-lxc libvirt-client virt-manager
sudo systemctl restart virtlxcd.service
sudo usermod -a -G libvirt ${USER}
virsh -c lxc:
virt-manager -c lxc:
1 Like
Thanks for your reply, I will try this later.
I already have Virt-Manager installed for VMs. I guess your script just adds LXC functionality onto it?