0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Raspberry Pi上でUbuntu server 20.04を動かしてsshできるようにするまで

Posted at

経緯

Raspbian環境が壊れたので新しく環境を用意しようとしたところ、私の大好きなUbuntuが使えることを知りました。しかし、インストールからsshできるまでかなりの時間を割かなければならなかったので、ここにメモがてら書き留めることにしました。

イメージ焼き

特に難しいことはないです。Install Ubuntu Server on a Raspberry Pi 2, 3 or 4 | Ubuntu から使いたいRaspberry Pi向けのイメージをダウンロードしてください。
その際、zipではなくxzで圧縮されていますので、Windowsユーザーの方は7zipなどを使ってください。

起動

初期パスワードだけ注意してください。

ユーザー名 パスワード
ubuntu ubuntu

その際、パスワードの変更を求められます。もう一度初期パスワードの入力をしなければならないのでご注意ください。

openssh-serverの設定

openssh-serverはインストールされていますが、hostkeyが設定されていません。
次のコマンドを使ってhostkeyを自動生成させてください。

$ sudo dpkg-reconfigure openssh-server

生成出来たらopenssh-serverを再起動してください。

$ sudo service ssh restart

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?