Pve-Debian lxc

/ 0评 / 0

LXC为Linux Container的简写。可以提供轻量级的虚拟化,以便隔离进程和资源,而且不需要提供指令解释机制以及全虚拟化的其他复杂性。容器有效地将由单个操作系统管理的资源划分到孤立的组中,以更好地在孤立的组之间平衡有冲突的资源使用需求。

在PVE中使用lxc,可以更方便快捷的建立起自己需要的容器和虚拟环境

首先下载Debian11的容器文件

安装完成之后,开启该容器,以root的方式登录,由于容器是最小化安装,系统里是不带任何工具的,需要手动安装

deb http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
deb http://mirrors.aliyun.com/debian-security/ bullseye-security main
deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main
deb http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
deb http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib
 vi  /etc/ssh/sshd_config 编辑ssh文件 添加 PermitRootLogin yes 

这样就完成了让基本操作,安装软件命令

apt-get install -y curl
apt-get install -y bash
安装ps
apt-get install -y procps 

都是基本操作

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注