马春杰杰 Exit Reader Mode

[LXD]虚拟容器LXD/LXC的常用命令集锦

下面是LXD2.0的一些常用命令,本文会长期更新,文中算是集合了本人常用的一些命令

# ubuntu版本

sudo lsb_release -a

# 初始化配置 Initial configuration

sudo lxd init

# 创建ubuntu容器样例

lxc launch ubuntu:16.04 first

# 显示可用镜像

lxc image list images: | less

lxc image list images: 'centos'

# LXD/LXC 2.0使用清华镜像加速的方法:

创建一个remote链接,指向镜像站即可,或替换掉默认的images链接。

lxc remote add tuna-images https://mirrors.tuna.tsinghua.edu.cn/lxc-images/ --protocol=simplestreams --public

# 显示可用清华镜像

lxc image list tuna-images:

# 显示当前远程可用

lxc remote list

# 显示容器网络

lxc network show lxdbr0

# 显示容器

lxc list

# 运行容器bash

lxc exec first -- /bin/bash

# 直接运行容器命令

lxc exec first -- apt-get update

# 文件传输下载

lxc file pull first/etc/hosts .

# 文件传输上传

lxc file push hosts first/tmp/

# 停止容器

lxc stop first

# 删除容器

lxc delete first

# 显示容器信息

lxc info first

# 本地配置

lxc config edit <container>

# 显示容器详细信息

lxc config show first

lxc config show <container>

# 内存查看 free -m

lxc exec first -- free -m

# 设置内存最大值

lxc config set first limits.memory 2048MB

# 执行升级

lxc exec first -- apt-get update

lxc exec first -- apt-get dist-upgrade -y

lxc exec first -- apt-get autoremove --purge -y

# 暂停

lxc pause <container>

# 快照 Snapshots -stateful选项包含所有状态

lxc snapshot first clean

# 列出所有的快照

lxc info <container>

lxc snapshot <container> <snapshot name>

# 快照恢复

lxc restore first clean

# 从快照生成容器镜像

lxc publish first/clean --alias clean-ubuntu

# 启动快照容器镜像

lxc launch clean-ubuntu second

# 删除容器镜像方式一

lxc delete --force second

# 删除容器镜像方式二

lxc delete -f second

# 删除一个快照

lxc delete <container>/<snapshot name>

# 从快照中创建一个新的容器

lxc copy <source container>/<snapshot name> <destination container>

# 给快照重命名

lxc move <container>/<snapshot name> <container>/<new snapshot name>

# lxc运行docker

lxc config set first security.nesting true

lxc restart first

# 本地镜像导出

lxc publish ${HOST}/auto-backup --alias ${BACKUP_NAME}

lxc image list

lxc image export ${BACKUP_NAME} ${BACKUP_DIR}/${BACKUP_NAME}

# 本地镜像删除

lxc image delete <container>

 

本文最后更新于2019年9月13日,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!