Rock5/5B 安裝 Proxmox Virtual Environment

雖然是寫給rock5的但是絕大多數(shù)arm平臺(tái)都可以嘗試下。

在arm平臺(tái)使用pve離不開Proxmox-Arm64項(xiàng)目有能力可以給他點(diǎn)個(gè)star
地址是 https://github.com/jiangcuo/Proxmox-Arm64
安裝教程其實(shí)就是pve官方的配置教程以及Proxmox-Arm64的整合版

選著可用的debian以rock5為例,可選的有armbian與瑞莎科技官方的debian,我在介紹視頻中使用的是armbian,這次就以官方的debian-server版為例。下載地址?https://github.com/radxa/debos-radxa/releases,我們選擇server版本,使用過程中不需要桌面環(huán)境。

然后使用balenaEtcher將系統(tǒng)寫入到ssd或者micro sd卡,等待燒錄完成。

然后上電開機(jī),開機(jī)后可以在路由器的后臺(tái)中找到IP地址或者連接顯示器使用ip a來查看ip地址。了

windows 10之后就可以直接使用powershell連接ssh了,官方系統(tǒng)默認(rèn)是rock密碼也是rock,登入后可以根據(jù)需要更換密碼或者添加新的用戶。

ssh連接成功后修改root密碼

修改完成后要修改下ssh的配置,添加一行PermitRootLogin yes,然后使用
sudo systemctl restart sshd? 重啟?sshd來允許root使用ssh登入,最后退出更換root登入。




替換國內(nèi)鏡像源,這里以清華鏡像為例
使用vim?/etc/apt/sources.list編輯軟件源然后復(fù)制下面的地址去替換,并保存。
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-freedeb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-freedeb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free# deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free# # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-freedeb https://security.debian.org/debian-security bullseye-security main contrib non-free# deb-src https://security.debian.org/debian-security bullseye-security main contrib non-free

更新軟件索引以及軟件包
apt update
apt upgrade
修改host與hostname
hostname 位于?/etc/hostname 可以通過編輯該文件或者h(yuǎn)ostnamectl set-hostname 新的名字? ?設(shè)置
修改host 需要把hostname對應(yīng)的IP從127.0.0.1改成實(shí)際的本機(jī)IP,修改完后通過hostname --ip-address 檢查,如果返回正確IP就是對了



然后就可以添加Proxmox-Arm64的存儲(chǔ)庫了,輸入下面命令就會(huì)將存儲(chǔ)庫添加到軟件源列表中。
echo "deb https://mirrors.apqa.cn/proxmox/ pvearm? main">/etc/apt/sources.list.d/foxi.list

然后倒入gpg key
wget? https://mirrors.apqa.cn/proxmox/gpg.key | apt-key add
失敗的話就換成
apt-key adv --keyserver keys.openpgp.org --recv-keys B859507D6B1F46D3

更新索引以及軟件apt update && apt full-upgrade
開始安裝pve
apt install ifupdown2
修改靜態(tài)ip,將圖中的192.168.100.178更換為實(shí)際ip,192.168.100.1更換為路由器地址即可,并關(guān)閉并停止networkManger服務(wù)
vim /etc/network/interfaces 對照下圖
systemctl disable NetworkManager
systemctl stop NetworkManager
systemctl restart networking 重啟?然后重新使用ssh連接即可



安裝pve以及所需軟件時(shí)間比較久可以一邊喝喝茶打打游戲一邊等
apt install proxmox-ve postfix open-iscsi
當(dāng)跳出郵件配置的時(shí)候選著1

看到這個(gè)報(bào)錯(cuò)的時(shí)候,需要修改一下文件,以便安裝繼續(xù),現(xiàn)在root目錄中創(chuàng)建一個(gè)tmp目錄暫時(shí)保存這些文件的數(shù)據(jù),安裝之后要還原回去。
mkdir /toot/tmp
mv /var/lib/dpkg/info/open-iscsi* /root/tmp/
然后執(zhí)行 apt install -f
mv /root/tmp/open-iscsi*? /var/lib/dpkg/info/ 還移動(dòng)出來的文件

安裝完成在瀏覽器中打開 https://你的rock 5b的IP:8006
瀏覽器警告的話點(diǎn)擊高級(jí)繼續(xù)訪問就行
登入選擇中文,用戶使用root 密碼就是root密碼



安裝就全部結(jié)束了,但是這樣的話是虛擬機(jī)還無法聯(lián)網(wǎng),需要在根據(jù)需要調(diào)整interfaces配置,這里以橋接為例。vim /etc/network/interfaces? 按照下圖配置,然后systemctl restart networking 重啟網(wǎng)絡(luò)服務(wù)然后就可以看到多了一個(gè)虛擬網(wǎng)卡,如果還需要配置net或者添加更多橋接可以在pev中使用網(wǎng)絡(luò)配置不需要繼續(xù)用這個(gè)配置文件了。


使用虛擬機(jī)的適合需要指定使用的cpu核心,目前pve無法混合調(diào)用大核與小核如圖。
