LXC部署并使用

一.安装LXD

wget http://lxcdown.senkin.nl/script/install.sh
chmod 777 install.sh
bash install.sh

一.使用LXC

lxc launch images:debian/12 test1
lxc exec test1 -- /bin/bash
lxc stop test1
lxc delete test1

 

THE END