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.

初心者がラズパイ3 にUbuntu 18.04 server インストール後に気をつける3点

Last updated at Posted at 2021-04-22

記事の目的

Rasberry pi3 で Ubuntu 18.04 serverをインストール後にハマったので共有します
※記事作成は2021年4月

忙しい人向け

気をつけることは次の3点です

  1. apt upgrade しない
  2. 自動アップデートの設定を確認する
  3. HDMI は電源を入れる前に挿す

1. apt upgrade しない

理由はわかりませんが、これをすると raspberry が起動しなくなります。
電源を入れてもいつまでも緑ランプが点灯しないままです。
理由についてコメントをいただければ幸いです。

2. 自動アップデートの設定を確認する

デフォルトのままだと自動アップデートがはいって
apt install がエラーになります。

Harissa@ubuntu:~$ sudo apt install gig
E: ロック /var/lib/dpkg/lock-frontend が取得できませんでした - open (11: リソースが一時的に利用できません)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

ネット記事でよく見る、ファイル削除をしても apt install できないです。

$ sudo rm /var/lib/apt/lists/lock
$ sudo rm /var/lib/dpkg/lock

自動アップデート中か確認します。
apt.systemd.daily update があればアップデート中です

Harissa@ubuntu:~$ ps aux | grep -i apt
root      1464  0.0  0.0   4624   772 ?        Ss   19:08   0:00 /bin/sh /usr/lib/apt/apt.systemd.daily update
root      1484  0.0  0.0   4624  1676 ?        S    19:08   0:00 /bin/sh /usr/lib/apt/apt.systemd.daily lock_is_held update
_apt      2836  0.8  0.1  96912  9432 ?        S    19:09   0:03 /usr/lib/apt/methods/http
abhishek  6172  0.0  0.0  21532  1152 pts/1    S+   19:16   0:00 grep --color=auto -i apt

自動アップデートをオフにします。
/etc/apt/apt.conf.d/20auto-upgrades を編集して 1 を 0 にするとオフにします、

/etc/apt/apt.conf.d/20auto-upgrades
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Unattended-Upgrade "0";

自分の場合は30分放置してもアップデートが終わらなかったので、急いでる時は自動アップデートをオフにしてもいいかもしれないです

3.HDMI は電源を入れる前に挿す

ラズパイ 常連には常識かもしれませんが。
電源入れた後にHDMIを挿してもディスプレイが反応しませんでした。

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?