马春杰杰博客
致力于深度学习经验分享!

[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>

 

赞(266) 打赏
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《[LXD]虚拟容器LXD/LXC的常用命令集锦》
文章链接:https://www.machunjie.com/linux/560.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。

评论 抢沙发

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续提供更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫

微信扫一扫

:smile: :sad: :arrow: :cool: :confused: :cry: :eek: :evil: :exclaim: :idea: :lol: :mad: :mrgreen: :neutral: :question: :razz: :redface: :rolleyes: :surprised: :wink: :biggrin: :twisted: