验证无线网卡是否正常运作,我们先安装包
apt-get install wireless-tools wpasupplicant
在这出了问题,找不到这个包,于是乎想到了
apt update
又出了问题,连不上国外的源
于是乎百度怎么换源
这几天Proxmox VE 8.0发布了,作为一个软件的尝鲜党,当然第一时间把我的测试服务器升级到了PVE8。但是由于PVE官方源在海外,更新速度极慢,翻了中科大的PVE源,发现已经同步更新PVE 8。我们可以使用中科大的源
将此文件的中的所有内容注释掉
nano /etc/apt/sources.list.d/pve-enterprise.list
下载中科大的GPG KEY
wget https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
使用Proxmox非企业版源
echo "deb https://mirrors.ustc.edu.cn/proxmox/debian bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
将Debian官方源替换为中科大源
sed -i 's|^deb http://ftp.debian.org|deb https://mirrors.ustc.edu.cn|g' /etc/apt/sources.list
sed -i 's|^deb http://security.debian.org|deb https://mirrors.ustc.edu.cn/debian-security|g' /etc/apt/sources.list
替换Ceph源
echo "deb https://mirrors.ustc.edu.cn/proxmox/debian/ceph-quincy bookworm no-subscription" > /etc/apt/sources.list.d/ceph.list
替换CT镜像下载源
sed -i 's|http://download.proxmox.com|https://mirrors.ustc.edu.cn/proxmox|g' /usr/share/perl5/PVE/APLInfo.pm
这样替换以后,PVE8更新的速度会大幅提升。如果此处命令存在错误,欢迎通过向本人邮箱发送邮件指出!
参考文章3:https://blog.csdn.net/qq_41554005/article/details/124140839
照着原文做完后,apt update
报错
Certificate verification failed: The certificate is NOT trusted. The certificate chain uses not yet valid certificate. Could not handshake: Error in the certificate verification. [IP: 218.104.71.170 443]
遂百度,把下面位置的文件中的https都改成http
vi /etc/apt/sources.list
然后
sudo apt-get update
sudo apt-get install --reinstall ca-certificates
再把http改回https,sudo apt-get update
就不报错了,这个时候就可以安装刚开始提到的那个包了。
报错ifconfig not found
apt install net-tools
尝试使用iwlist scan
扫描网络
root@pve:/etc# iwlist scan
lo Interface doesn't support scanning.
eno1 Interface doesn't support scanning.
wlp3s0 Interface doesn't support scanning : Network is down
vmbr0 Interface doesn't support scanning.
报Network is down
,于是乎百度怎么启动网卡
ifup wlp3s0
有时会报错
error: main exception: cannot find interfaces: wlp3s0
于是乎又搜到了这个
ip l s wlp4s0 up
终于把无线网卡启动起来了,当然还得配置无线网卡。在/etc/network/interfaces
中加入无线网卡的配置
allow-hotplug wlp3s0
auto wlp3s0
iface wlp1s0 inet dhcp
wpa-ssid TP-LINK_(略)_5G
wpa-psk ******
那么wpa-psk又怎么搞呢?在下面的链接里输入ssid和密码可以生成
https://www.wireshark.org/tools/wpa-psk.html
n次倒腾重启后输入ifconfig终于看到了无线网卡被分配了ip
又出现了新问题,插着网线的时候通过无线网卡的ip可以访问后台,拔了网线就访问不了了。
又通过神奇的百度解决了,解决办法是把无线网卡的配置信息放在有线网卡的前面。
总结
实际遇到的问题比这还多,搞了大晚上,太浪费时间了,闲着没事可以搞一搞,忙的时候就别搞了,耽误事。