在ARM处置处罚器的盘算机上安装Proxmox VE(PVE)

打印 上一主题 下一主题

主题 1002|帖子 1002|积分 3006

一、安装Debian for ARM体系

镜像可从这里下载
https://cdimage.debian.org/debian-cd/current/arm64/iso-cd/
二、配置Hosts

编辑/etc/hosts 文件
修改前两行为如下格式
  1. 127.0.0.1 localhost.localdomain localhost
  2. 192.168.110.33 debian.pvetest.com debian
复制代码
此中第二行里,将ip替换为实际的ip,将debian换成自己的hostname,这个hostname将作为PVE的节点名称
修改完可以运行如下下令验证是否修改成功,若修改成功则下令执行效果为刚刚配置的ip地址
  1. hostname --ip-address
复制代码
三、修改源


  • 修改软件源
编辑/etc/apt/sources.list 文件,修改对应的网址为:
  1. ```shell
  2. deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free
  3. deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free
  4. deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free
  5. deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free
  6. ```
复制代码

  • 添加源
如果是安装pve8,且版本为bookworm,则添加如下源
  1. echo "deb https://mirrors.apqa.cn/proxmox/debian/pve bookworm port">/etc/apt/sources.list.d/pveport.list
复制代码
添加apt-key
  1. curl https://mirrors.apqa.cn/proxmox/debian/pveport.gpg -o /etc/apt/trusted.gpg.d/pveport.gpg  
复制代码
四、安装Proxmox VE

  1. apt update
  2. apt install -y proxmox-ve
复制代码
如果安装过程提示:Please select the mail server configuration type that best meets your needs. 则选择No configuration。
安装完毕即可通过主机当前ip加上端口访问,如http://192.168.11.33:8006
   用户名为root,密码为Debian体系的root密码
  
配置固定静态IP
编辑/etc/network/interfaces 文件,配置当前使用的网络接口为静态IP地址,如:
  1. iface vmbr0 inet static
  2.         address 192.168.1.100       # 你想要设置的静态IP地址
  3.         netmask 255.255.255.0       # 子网掩码
  4.         gateway 192.168.1.1         # 网关地址(通常是路由器IP)
  5.         bridge_ports eth0           # 物理网络接口(可以通过ifconfig查询)
  6.         bridge_stp off
  7.         bridge_fd 0
  8.         dns-nameservers 114.114.114.114 8.8.8.8   # DNS 服务器地址
复制代码
  1. systemctl restart pve-cluster
  2. systemctl restart pveproxy
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

河曲智叟

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表