16
9

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 から不要なパッケージを削除してディスク容量を増やす

Posted at

ラズパイの環境に8GBのSDカードを使用していましたが、必要なものをいくつかインストールした時点で空き容量が全くなくなってしまいました。
これでは何の作業もできないので、不要なパッケージを削除しようと思います。

環境

  • Raspberry Pi 3 Model B+
  • Raspbian 9.11(stretch)
  • Kernel 4.19.66-v7+
$ uname -a
# Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux
$ lsb_release -a                 
# No LSB modules are available.
# Distributor ID: Raspbian
# Description:    Raspbian GNU/Linux 9.11 (stretch)
# Release:        9.11
# Codename:       stretch

不要なパッケージをアンインストール

デフォルトでは、使用しないパッケージやよくわからないパッケージがいくつも入っています。
これらがディスク容量をかなり圧迫させていたので、アンインストールしていきます。

もし間違えてアンインストールしてしまったら下記コマンドでインストールし直しましょう。

$ sudo apt-get install {パッケージ名}

削除の前に、まずはリポジトリの更新を行います。

$ sudo apt-get update
$ sudo apt-get upgrade

次に不要なパッケージの削除を行います。

$ sudo apt-get purge wolfram-engine
# 約1.1GB 削減
$ sudo apt-get purge sonic-pi
# 約500KB 削減
$ sudo apt-get purge scratch*
# 約240MB 削減
$ sudo apt-get purge libreoffice*
# 約245MB 削減

キャッシュされているファイルも削除しましょう。

$ sudo apt-get clean
$ sudo apt-get autoremove
# 約100MB 削減

最後に再度リポジトリの更新を行います。

$ sudo apt-get update
$ sudo apt-get upgrade

これで2GB弱の空き容量ができました!
やっと開発作業に移れそうです。

今回はここまでです!

参考

MacでRaspberryPi入門

16
9
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
16
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?