duliri123

duliri123

Debian系統的VPS安裝kali linux圖形界面

首先,需要安裝 Kali Linux 桌面環境並設置遠程桌面服務。

以下是大致的步驟:

登錄到你的 VPS,確保 Debian 系統已經安裝和更新到最新版本。你可以使用以下命令更新系統:

sudo apt update
sudo apt upgrade

報錯

root@r-fa4383:~# sudo apt update
-bash: sudo: command not found

更換源
阿里雲源:



deb http://mirrors.aliyun.com/debian/ buster main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster main non-free contrib
deb http://mirrors.aliyun.com/debian-security buster/updates main
deb-src http://mirrors.aliyun.com/debian-security buster/updates main
deb http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib
deb http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib

安裝 sudo

apt-get install sudo

安裝完成後,使用以下命令將用戶添加到 sudo 組:

adduser <username> sudo

命令測試 sudo 是否正常工作

apt-get install sudo

還是報錯
檢查你正在運行哪個版本的內核並升級

uname -r

apt-get update
apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') --fix-missing

然後再次嘗試安裝 kali linux

sudo apt update
sudo apt install kali-desktop-xfce

報錯(該軟件包無法從您的軟件源中獲取)

編輯 /etc/apt/sources.list 文件來配置軟件源。具體來說,您可以將以下內容添加到文件中,這是 Kali Linux 官方源的配置:

deb http://http.kali.org/kali kali-rolling main non-free contrib
deb-src http://http.kali.org/kali kali-rolling main non-free contrib


deb http://http.kali.org/kali kali-rolling main non-free contrib
deb http://http.kali.org/kali kali-last-snapshot main non-free contrib
deb http://http.kali.org/kali kali-experimental main non-free contrib

更新

sudo apt update
sudo apt upgrade

添加 Kali Linux 源到 Debian 的 /etc/apt/sources.list 文件中

echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" | sudo tee -a /etc/apt/sources.list

下載並導入 Kali Linux 的 GPG 密鑰

wget -q -O - https://archive.kali.org/archive-key.asc | sudo apt-key add -

更新軟件包列表

sudo apt update

安裝 kali-desktop-xfce

sudo apt install kali-desktop-xfce

報錯
這個錯誤通常是由於 libc6 庫安裝或配置出現問題導致的。您可以嘗試以下步驟解決此問題:

運行以下命令以清除 apt 緩存

sudo apt-get clean
sudo apt-get autoclean

運行以下命令以修復未完成的安裝

sudo dpkg --configure -a

如果第 2 步仍然無法解決問題,請嘗試重新安裝 libc6:

sudo apt-get install --reinstall libc6

如果還是無法解決問題,請考慮使用以下命令強制刪除 libc6,然後重新安裝

sudo dpkg -P --force-depends libc6
sudo apt-get install libc6

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。