0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

dnf installで「killed」と出た場合の対処法

Last updated at Posted at 2025-02-21

dnf installで「killed」と表示された場合、メモリ不足の可能性があります。
いくつか原因と対処法があると思いますが、私は以下の方法で解決しました。

以下のコマンドでスワップ領域を増やすことで、事象が解消する可能性があります。

sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?