手頭這臺樹莓派3b安裝parrot linux arm遇到了很多問題,寫篇博客記錄一下。 ##1.下載和刻錄 網址:https://www.parrotsec.org/download-other.php 選擇這個下載下來並解壓。 用 Win32DiskImager 或者 etcher 將鏡像刻錄到sd卡上 ##2.啓動 默認用戶名:parrot 密碼:toor ##3.配置sshphp
sudo nano /etc/ssh/sshd_config
將PermitRootLogin prohibit-password
改爲PermitRootLogin yes
而後linux
sudo service ssh start sudo update-rc.d ssh enable
##4.換源git
sudo nano /etc/apt/sources.list.d/parrot.list
將更新源改爲清華源github
deb https://mirrors.tuna.tsinghua.edu.cn/parrot stable main contrib non-free
##5.更新系統bash
sudo apt-get update
###重點來了 目前版本的apt和apt-utils有問題,軟件包升級的時候會一直卡在安裝apt上ssh
sudo apt-mark hold apt apt-utils sudo apt-get dist-upgrade
##6.安裝桌面.net
sudo apt-get install parrot-mate
安裝完後startx
進入桌面 parrot linux在樹莓派上默認啓動的是命令行,要startx
啓動桌面 也能夠經過命令行
sudo raspi-config
選擇默認啓動的是命令行仍是桌面環境code