Ssh

dropbear-initramfs 權限被拒絕(公鑰)

  • December 19, 2021

我在使用 dropbear 通過 ssh 解鎖加密磁碟時遇到問題。

我已按照本指南進行設置,但最終出現Permission denied (publickey)錯誤

我將公鑰從我的機器複製~/.ssh/id_rsa.pub到伺服器/etc/dropbear-initramfs/authorized_keys並更新為update-initramfs -u -k all

目前的配置/etc/dropbear-initramfs/config有這個內容:

DROPBEAR_OPTIONS="-I 120 -c /bin/cryptroot-unlock"

我還使用文章中的配置進行了測試

DROPBEAR_OPTIONS="-RFEsjk -c /bin/cryptroot-unlock"

-i使用SSH ,我嘗試指定身份密鑰Permission denied

在寫這個問題的過程中,我想通了,不妨告訴其他想知道的人。

使用 ssh 時,需要指定 root 為使用者:ssh root@hostname.com

引用自:https://unix.stackexchange.com/questions/683034