pve安装debian黑屏
时间: 2023-11-24 08:53:11 浏览: 178
根据提供的引用内容,PVE安装Debian黑屏的原因可能是采用桥接方式的网络Debian优化不太好。临时解决办法是修改启动超时时间,如果网卡未能获取IP,手动重启网卡或设置超时时间。具体操作如下:
1. 进入PVE的控制台,选择要安装Debian的虚拟机,点击“Options”选项卡,选择“Boot Order”,将“CD/DVD”设为第一启动项,点击“OK”保存设置。
2. 启动虚拟机,进入Debian安装界面,选择“Advanced options”,进入高级选项。
3. 选择“Expert install”,进入安装向导。
4. 在“Configure the network”步骤中,选择“No”跳过网络配置。
5. 完成安装后,进入Debian系统,编辑网络配置文件/etc/network/interfaces,添加以下内容:
```
auto eth0
iface eth0 inet dhcp
```
6. 重启网络服务:
```shell
systemctl restart networking
```
7. 如果仍然无法获取IP地址,可以手动重启网卡或设置超时时间。编辑/etc/systemd/system/network-online.target.wants/networking.service文件,将TimeoutStartSec设置为90秒或更长时间。
```shell
nano /etc/systemd/system/network-online.target.wants/networking.service
```
```
[Service]
TimeoutStartSec=90
```
8. 保存文件后,重启网络服务:
```shell
systemctl daemon-reload
systemctl restart networking
```
阅读全文