Proxmox VE(Proxmox Virtual Environment,简称PVE)是一个开源的服务器虚拟化环境Linux发行版,基于Debian,应用给予Ubuntu的定制内核。相比于其余虚拟化平台,PVE具备的一个显著的特点就是无需master节点,装置实现后,无需非凡配置即可将多个节点组成集群。

因为工程要求,PVE须要大规模部署在物理服务器上,所以定制镜像就显得很有必要。

定制指标包含

(1)批改initrd中init脚本的提示信息

(2)删除GRUB界面多余选项,间接进入装置界面

(3)增加预装软件

(4)在装置过程中对软件进行个性化配置

(5)批改PVE装置界面,在PVE装置界面中的所有输入框设置默认文本

Proxmox VE镜像剖析

下载Proxmox VE 6.4版镜像后挂载,察看文件构造

$ tree -L 2.├── boot│   ├── boot.cat│   ├── grub│   ├── initrd.img│   ├── linux26│   └── memtest86+.bin├── COPYING├── COPYRIGHT├── debian -> .├── dists│   └── stretch├── efi.img├── EULA├── mach_kernel├── proxmox│   ├── country.dat│   ├── packages│   └── pve-base.cnt├── pve-base.squashfs├── pve-installer.squashfs├── Release.txt└── System    └── Library9 directories, 14 files

其中:

grub文件夹:蕴含疏导程序GRUB所用到的文件。initrd.img:零碎初始化所应用的镜像,外面蕴含一个最小化的零碎,蕴含了/dev、/etc、/bin等很多根本的目录,还有要害的init程序,负责驱动的加载和文件系统的初始化。linux26:Linux 2.6内核efi.img:零碎疏导镜像,内含boot.efi、bootia32.efi、bootx64.efi。proxmox文件夹:零碎预安装包的寄存目录PVE的根零碎默认安装包是在proxmox文件夹下的,只有不毁坏其依赖关系,能够将须要预装置的包及其依赖放到这个文件夹下。PVE预安装包时候应用的是循环读取proxmox/packages中的deb,而后应用的装置办法是先解压而后再配置,这样不会产生依赖关系而导致装不上deb的问题。pve-base.squashfs:装置的根零碎,也就是最终的零碎pve-installer.squashfs:装置时须要的零碎

Proxmox VE装置流程

PVE装置流程次要分为以下4个步骤:

(1)Boot Loader:由 BIOS 加载,用于将后续的 kernel 和 initrd 的装载到内存中。(PVE装置时应用的是UEFI模式的装置,然而又不是传统意义上的UEFI,它先是应用了BIOS加载kernel和initrd到内存,而后又跳到UEFI分区执行efi.img文件,调用proxinstall进入到零碎装置界面,而后是挂载pve-base.squashfs进行零碎装置)

(2)kernel:为 initrd 运行提供根底的运行环境,对应boot目录下的linux26文件

(3)initrd:检测并加载各种驱动程序,并执行init,对应boot目录下的initrd.img文件

(4)rootfs:根文件系统,用户的各种操作都是基于这个被最初加载的文件系统,这里对应了pve-base.squashfs

Proxmox VE镜像定制

ISO解压与压缩

在原先应用ISO Master作为解压缩ISO的工具中,产生的ISO文件能够间接作为cdrom启动,但刻录进USB设施后缺失MBR等重要局部所以无奈启动,因而改用命令行进行解压缩。

(1)ISO提取

首先挂载镜像文件。

$ mount -o loop Desktop/proxmox-ve_6.4-1.iso cby/

挂载点目录中的文件是只读的,所以须要同步到工作目录下。

$ cd cby$ sudo rsync -av /home/cby/cby/ /home/cby/

同步之后就即可批改ISO内的文件。

$ sudo umount /home/cby/cby $ lltotal 386672dr-xr-xr-x 10 root root      4096 Apr 27 04:26 ./dr-xr-xr-x 23 root root      4096 May 19 18:56 ../dr-xr-xr-x  3 root root      4096 Apr 27 04:26 boot/-r--r--r--  1 root root        89 Apr 27 04:26 .cd-info-r--r--r--  1 root root     32386 Apr 27 04:26 COPYING-r--r--r--  1 root root       955 Apr 27 04:26 COPYRIGHTlrwxrwxrwx  1 root root         1 Apr 27 04:26 debian -> ./dr-xr-xr-x  3 root root      4096 Apr 27 04:26 dists/-r--r--r--  1 root root   2949120 Apr 27 04:26 efi.img-r--r--r--  1 root root      4470 Apr 27 04:26 EULA-r--r--r--  1 root root         0 Apr 27 04:26 mach_kerneldr-xr-xr-x  3 root root      4096 Apr 27 04:26 proxmox/dr-xr-xr-x  2 root root      4096 Apr 27 04:26 .pve-base/-r--r--r--  1 root root 101306368 Apr 27 04:26 pve-base.squashfs-r--r--r--  1 root root        37 Apr 27 04:26 .pve-cd-id.txtdr-xr-xr-x  2 root root      4096 Apr 27 04:26 .pve-installer/dr-xr-xr-x  2 root root      4096 Apr 27 04:26 .pve-installer-mp/-r--r--r--  1 root root 291586048 Apr 27 04:26 pve-installer.squashfs-r--r--r--  1 root root     15792 Apr 27 04:26 Release.txtdr-xr-xr-x  3 root root      4096 Apr 27 04:26 System/dr-xr-xr-x  2 root root      4096 Apr 27 04:26 .workdir/

(2)ISO压缩

应用原镜像的MBR(前512字节)作为定制镜像的MBR

$ sudo dd if=/home/cby/proxmox-ve_6.4-1.iso bs=512 count=1 of=proxmox.mbr1+0 records in1+0 records out512 bytes copied, 0.000134541 s, 3.8 MB/s

打包ISO镜像

$ sudo xorriso -as mkisofs -o proxmox-ve_6.4-1.iso -r -V 'inspur' --grub2-mbr proxmox.mbr --protective-msdos-label -efi-boot-part --efi-boot-image  -c '/boot/boot.cat' -b '/boot/grub/i386-pc/eltorito.img' -no-emul-boot -boot-load-size 4 -boot-info-table --grub2-boot-info -eltorito-alt-boot -e '/efi.img' -no-emul-boot .xorriso 1.5.2 : RockRidge filesystem manipulator, libburnia project.Drive current: -outdev 'stdio:proxmox-ve_6.4-1.iso'Media current: stdio file, overwriteableMedia status : is blankMedia summary: 0 sessions, 0 data blocks, 0 data, 80.6g freexorriso : WARNING : -volid text does not comply to ISO 9660 / ECMA 119 rulesAdded to ISO image: directory '/'='/home/cby/chenby'xorriso : UPDATE :    1421 files added in 1 secondsxorriso : UPDATE :    1421 files added in 1 secondsxorriso : NOTE : Copying to System Area: 512 bytes from file '/home/cby/chenby/proxmox.mbr'xorriso : UPDATE :  1.00% donexorriso : UPDATE :  42.39% donexorriso : UPDATE :  86.68% doneISO image produced: 453265 sectorsWritten to medium : 453265 sectors at LBA 0Writing to 'stdio:proxmox-ve_6.4-1.iso' completed successfully.

批改initrd

    initrd.img位于原始镜像的boot目录下,批改initrd的目标是批改装置过程中的输入文本,是一个比拟非凡的局部,要从initrd引入的目标讲起。

    initrd 的英文含意是 boot loader initialized RAM disk,就是由 boot loader 初始化的内存盘。initrd的最后的目标是为了把kernel的启动分成两个阶段:在kernel中保留起码最根本的启动代码,而后把对各种各样硬件设施的反对以模块的形式放在initrd中,这样就在启动过程中能够从initrd所mount的根文件系统中装载须要的模块。这样的一个益处就是在放弃kernel不变的状况下,通过批改initrd中的内容就能够灵便的反对不同的硬件。在启动实现的最初阶段,根文件系统能够从新mount到其余设施上。也就是说因为initrd会在内存虚构一个文件系统,而后能够依据不同的硬件加载不同的驱动,而不须要从新编译整个外围。所以,大部分的发行版都会通过这种形式对驱动进行加载。

initrd引入之后Linux的疏导会变成如下流程。

(1)boot loader 把内核以及 initrd 文件加载到内存的特定地位。

(2)内核判断initrd的文件格式,如果是cpio格局。

(3)将initrd的内容开释到rootfs中。

(4)执行initrd中的/init文件,执行到这一点,内核的工作全副完结,齐全交给/init文件解决。

    依据外围版本的不同,initrd文件有两种格局:image和cpio。**kernel 2.4只应用image格局,而kernel 2.6可同时反对两种格局。**它们不单格局不一样,而且运作的机制和流程也齐全不同,甚至制作方法也不一样。pve的kernel版本是2.6,所以在此只讲cpio格局的initrd制作。

initrd解压、批改与压缩流程:

(1)解压proxmox-ve\_6.4-1.iso,boot目录下的initrd.img就是gz格局的压缩文件

(2)将initrd.img备份后重命名为initrd.org.img,并解压缩

$ sudo gzip -d -S ".img" ./initrd.org.img

执行file后查看格局

$ sudo file initrd.orginitrd.org: ASCII cpio archive (SVR4 with no CRC)

(3)创立initrd.tmp目录以寄存后续还原进去的文件,而后执行cpio命令将文件还原

$ sudo mkdir initrd.tmp$ cd initrd.tmp$ sudo cpio -id < ../initrd.org241820 blocks$ lsbin  dev  devfs  etc  init  lib  lib64  mnt  proc  sbin  sys  tmp  usr

去除GRUB界面

    pve在装置时应用了GRUB2,所以想要去除掉GRUB界面须要找到原始镜像中boot/grub/grub.cfg文件,增加set timeout=0,就能够间接进入默认选项Install Proxmox VE模式。如果有须要咱们也能够批改默认选项来实现间接进入其余模式的性能。

$ vim grub.cfg $ cat grub.cfginsmod gzioinsmod iso9660insmod pngloadfont /boot/grub/unicode.pf2set gfxmode=640x400# set kernel parameter vga=791# do not specify color depth here (else efifb can fall back to 800x600)set gfxpayload=1024x768#set gfxmode=auto#set gfxpayload=keepset timeout=0insmod all_videoinsmod gfxtermset theme=/boot/grub/pvetheme/theme.txt...

定制预装软件

    Proxmox VE所有的预装软件都以deb包的模式寄存在镜像的proxmox/packages下,并将在装置pve的过程中对立装置这些软件包,全副装置实现之后再进行配置,这样能够防止依赖关系呈现问题。

    所以定制预装软件只须要在proxmox/packages目录下放入须要的deb包,pve将会主动装置并进行默认配置。

配置预装程序

    pve在配置软件是只会依照默认的配置,如果心愿将软件配置成咱们想要的模式,则只须要批改pve-installer.squashfs里的usr/bin/proxinstall文件。pve-installer.squashfs是pve装置时由initrd加载的零碎,装置过程中proxinstall负责所有业务逻辑,其中配置软件局部的代码如下:

# needed for postfix postinst in case no other NIC is activesyscmd("chroot $targetdir ifup lo");my $cmd = "chroot $targetdir dpkg $dpkg_opts --force-confold --configure -a";$count = 0; run_command ($cmd, sub {    my $line = shift;    if ($line =~ m/Setting up\s+(\S+)/) {    update_progress ((++$count)/$pkg_count, 0.75, 0.95,             "configuring $1");    }    });

...

# set apt mirrorif (my $mirror = $cmap->{country}->{$country}->{mirror}) {    my $fn = "$targetdir/etc/apt/sources.list";    syscmd ("sed -i 's/ftp\\.debian\\.org/$mirror/' '$fn'");}# create extended_states for apt (avoid cron job warning if that# file does not exist)write_config ('', "$targetdir/var/lib/apt/extended_states");# allow ssh root loginsyscmd(['sed', '-i', 's/^#\?PermitRootLogin.*/PermitRootLogin yes/', "$targetdir/etc/ssh/sshd_config"]);

    能够看出pve也是对局部程序进行了个性化的配置,所以对配置文件的编辑的代码只须要仿照后者,应用syscmd函数,将批改的命令作为参数,写在前者之后即可。

定制装置界面

    在pve-installer.squashfs里的usr/bin/proxinstall文件中,有create\_main\_window函数,这个函数的性能是创立图形界面窗口里的各种组件,通过剖析这个函数咱们能够失去装置UI的构造。

    顶部的image、核心的htmlview窗口以及下方的cmdbox形成了咱们所看到的外观。在此只批改image和htmlview。

定制装置界面

    在pve-installer.squashfs里的usr/bin/proxinstall文件中,有create\_main\_window函数,这个函数的性能是创立图形界面窗口里的各种组件,通过剖析这个函数咱们能够失去装置UI的构造。

    顶部的image、核心的htmlview窗口以及下方的cmdbox形成了咱们所看到的外观。在此只批改image和htmlview。

    顶部的image是在1785行加载pve-installer下var/lib/pve-installer/pve-banner.png来实现的,所以只须要用一个尺寸同样为1024X164的图像代替。

    核心的htmlview是通过在每个create\_*函数中调用display\_html函数来加载,加载的html文件都位于var/lib/pve-installer/html文件夹下,对应的只须要批改每个html文件就能够实现外观上的替换。

    另外因为窗口运行环境openbox的语言设置默认不是中文,所以应用中文字符展示会呈现乱码,因而能够由html加载含中文的图片,以此来展现中文。

    默认输出信息的批改就只须要在proxinstall中找到对应的输入框,批改预设文本。

应用命令unsquashfs将unsquashfs格局的镜像将其解压

$ sudo unsquashfs pve-installer.squashfsParallel unsquashfs: Using 16 processors20078 inodes (25826 blocks) to write[===========================================================\] 25826/25826 100%created 19247 filescreated 2620 directoriescreated 819 symlinkscreated 0 devicescreated 0 fifos$ lltotal 3256748dr-xr-xr-x 12 root root       4096 May 19 19:55 ./dr-xr-xr-x 24 root root       4096 May 19 19:29 ../-rw-r--r--  1 root root  348389376 May 19 19:42 pve-installer.squashfsdrwxr-xr-x 17 root root       4096 Apr 27 04:23 squashfs-root/...

    解压实现后会呈现pve-installer.squashfs镜像盘的squashfs-root/ 文件夹,进入该文件夹即可看到装置时的疏导零碎

$ lltotal 68drwxr-xr-x 11 root root 4096 Mar 19 03:08 ./dr-xr-xr-x 12 root root 4096 May 19 19:55 ../drwxr-xr-x  2 root root 4096 Mar 19 03:08 boot/drwxr-xr-x  2 root root 4096 Apr 27 04:25 cdrom/drwxr-xr-x  2 root root 4096 Apr 27 04:25 devfs/drwxr-xr-x 40 root root 4096 Apr 27 04:25 etc/drwxr-xr-x  2 root root 4096 Apr 27 04:25 rpool/-rwxr-xr-x  1 root root  376 Apr 26 09:53 .spice-vdagent.sh*drwxr-xr-x  2 root root 4096 Apr 27 04:25 target/drwxr-xr-x  2 root root 4096 Apr 27 04:25 tmp/drwxr-xr-x  8 root root 4096 Mar 19 03:08 usr/drwxr-xr-x  5 root root 4096 Apr 26 09:53 var/-rw-r--r--  1 root root   87 Apr 26 09:53 .Xdefaults-rw-r--r--  1 root root  140 Apr 26 09:53 .xinitrc

把筹备好的图片替换

$ sudo cp /home/cby/Desktop/pve-banner.png .

     应用命令解压实现后会呈现pve-base.squashfs镜像盘的squashfs-root/ 文件夹

$ sudo unsquashfs pve-base.squashfs Parallel unsquashfs: Using 16 processors12892 inodes (14248 blocks) to write[===========================================================-] 14248/14248 100%created 10856 filescreated 1385 directoriescreated 2024 symlinkscreated 9 devicescreated 0 fifos

 进入该文件夹即可看到装置后的零碎根目录

$ lltotal 68drwxr-xr-x 17 root root 4096 Apr 27 04:23 ./dr-xr-xr-x 12 root root 4096 May 19 19:55 ../lrwxrwxrwx  1 root root    7 Apr 27 04:22 bin -> usr/bin/drwxr-xr-x  3 root root 4096 Apr 27 04:23 boot/drwxr-xr-x  5 root root 4096 Apr 27 04:23 dev/drwxr-xr-x 57 root root 4096 Apr 27 04:23 etc/drwxr-xr-x  2 root root 4096 Mar 19 16:44 home/lrwxrwxrwx  1 root root    7 Apr 27 04:22 lib -> usr/lib/lrwxrwxrwx  1 root root    9 Apr 27 04:22 lib32 -> usr/lib32/lrwxrwxrwx  1 root root    9 Apr 27 04:22 lib64 -> usr/lib64/lrwxrwxrwx  1 root root   10 Apr 27 04:22 libx32 -> usr/libx32/drwxr-xr-x  2 root root 4096 Apr 27 04:22 media/drwxr-xr-x  2 root root 4096 Apr 27 04:22 mnt/drwxr-xr-x  2 root root 4096 Apr 27 04:22 opt/drwxr-xr-x  2 root root 4096 Mar 19 16:44 proc/drwx------  2 root root 4096 Apr 27 04:23 root/drwxr-xr-x  5 root root 4096 Apr 27 04:23 run/lrwxrwxrwx  1 root root    8 Apr 27 04:22 sbin -> usr/sbin/drwxr-xr-x  2 root root 4096 Apr 27 04:22 srv/drwxr-xr-x  2 root root 4096 Mar 19 16:44 sys/drwxrwxrwt  2 root root 4096 Apr 27 04:23 tmp/drwxr-xr-x 13 root root 4096 Apr 27 04:22 usr/drwxr-xr-x 11 root root 4096 Apr 27 04:22 var/

批改完须要定制的文件系统后,应用如下命进行打包

$ sudo mksquashfs  squashfs-root/ pve-installer.squashfsParallel mksquashfs: Using 16 processorsCreating 4.0 filesystem on pve-installer.squashfs-, block size 131072.[===========================================================\] 25008/25008 100%Exportable Squashfs 4.0 filesystem, gzip compressed, data block size 131072  compressed data, compressed metadata, compressed fragments,  compressed xattrs, compressed ids  duplicates are removedFilesystem size 340223.99 Kbytes (332.25 Mbytes)  33.70% of uncompressed filesystem size (1009698.26 Kbytes)Inode table size 225637 bytes (220.35 Kbytes)  29.06% of uncompressed inode table size (776542 bytes)Directory table size 235667 bytes (230.14 Kbytes)  38.69% of uncompressed directory table size (609117 bytes)Xattr table size 673 bytes (0.66 Kbytes)  7.40% of uncompressed xattr table size (9096 bytes)Number of duplicate files found 853Number of inodes 22686Number of files 19247Number of fragments 1982Number of symbolic links  819Number of device nodes 0Number of fifo nodes 0Number of socket nodes 0Number of directories 2620Number of ids (unique uids + gids) 9Number of uids 3  root (0)  man (6)  syslog (104)Number of gids 7  root (0)  shadow (42)  bluetooth (112)  utmp (43)  staff (50)  man (12)  tss (111)

应用该名进行制作ISO镜像盘

$ sudo xorriso -as mkisofs -o proxmox-ve_6.4-1.iso -r -V 'inspur' --grub2-mbr proxmox.mbr --protective-msdos-label -efi-boot-part --efi-boot-image  -c '/boot/boot.cat' -b '/boot/grub/i386-pc/eltorito.img' -no-emul-boot -boot-load-size 4 -boot-info-table --grub2-boot-info -eltorito-alt-boot -e '/efi.img' -no-emul-boot .xorriso 1.5.2 : RockRidge filesystem manipulator, libburnia project.Drive current: -outdev 'stdio:proxmox-ve_6.4-1.iso'Media current: stdio file, overwriteableMedia status : is blankMedia summary: 0 sessions, 0 data blocks, 0 data, 78.0g freexorriso : WARNING : -volid text does not comply to ISO 9660 / ECMA 119 rulesAdded to ISO image: directory '/'='/home/cby/chenby'xorriso : UPDATE :   32892 files added in 1 secondsxorriso : UPDATE :   32892 files added in 1 secondsxorriso : NOTE : Copying to System Area: 512 bytes from file '/home/cby/chenby/proxmox.mbr'libisofs: NOTE : Automatically adjusted MBR geometry to 1021/155/32xorriso : UPDATE :  0.66% donexorriso : UPDATE :  8.03% donexorriso : UPDATE :  19.34% donexorriso : UPDATE :  34.06% done, estimate finish Wed May 19 19:46:25 2021xorriso : UPDATE :  48.84% done, estimate finish Wed May 19 19:46:24 2021xorriso : UPDATE :  61.72% done, estimate finish Wed May 19 19:46:24 2021xorriso : UPDATE :  73.41% done, estimate finish Wed May 19 19:46:25 2021xorriso : UPDATE :  82.19% done, estimate finish Wed May 19 19:46:25 2021xorriso : UPDATE :  92.15% donexorriso : UPDATE :  97.28% doneISO image produced: 1264917 sectorsWritten to medium : 1264917 sectors at LBA 0Writing to 'stdio:proxmox-ve_6.4-1.iso' completed successfully.

    应用新创建的ISO镜像盘启动后,已呈现批改过后的背景图,以此类推,通过批改根目录文件,能够实现齐全定制化的pve零碎。

    若批改装置后的治理后盾的页面,在proxmox/packages目录下找到pve-manager的deb安装包。

$ ls | grep managerpve-ha-manager_3.1-1_amd64.debpve-manager_6.4-4_amd64.deb
$ mkdir extract,在当前目录下新建文件夹,用于寄存解压后的内容$ mkdir extract/DEBIAN,新建DEBIAN目录用于寄存包的管制信息$ sudo dpkg -X ./pve-manager_6.4-4_amd64.deb extract/,将要批改的deb包解压到extract目录下,能够看到:

    在其解压进去的包内批改所需的代码后,导入debian包的管制信息,能够应用命令再次打包成deb包。

$ sudo dpkg-deb -e ./pve-manager_6.4-4_amd64.deb extract/DEBIAN/$ ls extract/DEBIAN/conffiles  control  md5sums  postinst  postrm  preinst  prerm  triggers$ sudo dpkg-deb -b ./extract 123.debdpkg-deb: building package 'pve-manager' in '123.deb'.$ ll 123.deb -rw-r--r-- 1 root root 2042764 May 19 21:54 123.deb

查看deb包的详细信息。

$ dpkg-deb -I 123.deb  new Debian package, version 2.0. size 2042764 bytes: control archive=16976 bytes.     320 bytes,    10 lines      conffiles                1532 bytes,    15 lines      control                 56553 bytes,   574 lines      md5sums                  3246 bytes,   101 lines   *  postinst             #!/bin/sh    1645 bytes,    44 lines   *  postrm               #!/bin/sh     192 bytes,     5 lines   *  preinst              #!/bin/sh     626 bytes,    24 lines   *  prerm                #!/bin/sh      33 bytes,     1 lines      triggers              Package: pve-manager Version: 6.4-4 Architecture: amd64 Maintainer: Proxmox Support Team <support@proxmox.com> Installed-Size: 9876 Depends: apt-transport-https | apt (>= 1.5~), ca-certificates, cstream, dtach, fonts-font-awesome, gdisk, hdparm, ifenslave (>= 2.6) | ifupdown2 (>= 2.0.1-1+pve8), libapt-pkg-perl, libc6 (>= 2.14), libcrypt-ssleay-perl, libfile-readbackwards-perl, libfilesys-df-perl, libjs-extjs (>= 6.0.1), libjson-perl, liblwp-protocol-https-perl, libnet-dns-perl, libproxmox-acme-perl, libpve-access-control (>= 6.0-6), libpve-cluster-api-perl, libpve-cluster-perl (>= 6.1-6), libpve-common-perl (>= 6.2-2), libpve-guest-common-perl (>= 3.1-5), libpve-http-server-perl (>= 3.2-1), libpve-storage-perl (>= 6.3-6), librados2-perl, libtemplate-perl, libterm-readline-gnu-perl, liburi-perl, libuuid-perl, libwww-perl (>= 6.04-1), logrotate, lsb-base, lzop, zstd, novnc-pve, pciutils, perl (>= 5.10.0-19), postfix | mail-transport-agent, proxmox-mini-journalreader, proxmox-widget-toolkit (>= 2.5-2), pve-cluster (>= 6.0-4), pve-container (>= 2.0-21), pve-docs, pve-firewall, pve-ha-manager, pve-i18n (>= 1.0-3), pve-xtermjs (>= 0.1-1), qemu-server (>= 6.2-17), rsync, spiceterm, systemd, vncterm, wget Suggests: libpve-network-perl (>= 0.5-1) Conflicts: vlan, vzdump Breaks: libpve-network-perl (<< 0.5-1) Replaces: vlan, vzdump Provides: vlan, vzdump Section: admin Priority: optional Description: Proxmox Virtual Environment Management Tools  This package contains the Proxmox Virtual Environment management tools.

    将打好的deb包放回到原目录后,在进行ISO的打包,这样在装置零碎后的镜像即可是定制化的页面。