Texlive がいっぱいでディスク容量が足りないため、「半分インストールされた」状態で止まってしまう

Texlive がいっぱいでディスク容量が足りないため、「半分インストールされた」状態で止まってしまう

私は 8GB のスペースを持つ AWS 無料層サーバーを使用しています。Texlive-full をインストールしようとしましたが、インストールが完了する前にスペースが不足しました。そこで、以下を実行してみました。

sudo apt-get --purge remove texlive-full

しかし、次のエラー メッセージが表示されました:

Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 zathura-pdf-poppler : Depends: zathura-abi-2gtk3
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

そこで私は次に

sudo apt-get -f install

その結果は次のようになります。

Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  linux-aws-headers-4.4.0-1020 linux-aws-headers-4.4.0-1022 linux-aws-headers-4.4.0-1026 linux-aws-headers-4.4.0-1028
  linux-aws-headers-4.4.0-1030 linux-aws-headers-4.4.0-1031 linux-headers-4.4.0-1020-aws linux-headers-4.4.0-1022-aws
  linux-headers-4.4.0-1026-aws linux-headers-4.4.0-1028-aws linux-headers-4.4.0-1030-aws linux-headers-4.4.0-1031-aws
  linux-image-4.4.0-1020-aws linux-image-4.4.0-1022-aws linux-image-4.4.0-1026-aws linux-image-4.4.0-1028-aws linux-image-4.4.0-1030-aws
  linux-image-4.4.0-1031-aws
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed: 
  texlive-fonts-extra texlive-fonts-extra-doc texlive-games texlive-generic-extra texlive-htmlxml texlive-humanities
  texlive-humanities-doc texlive-lang-african texlive-lang-arabic texlive-lang-chinese texlive-lang-cjk texlive-lang-cyrillic
  texlive-lang-czechslovak texlive-lang-english texlive-lang-european texlive-lang-french texlive-lang-german texlive-lang-greek
  texlive-lang-indic texlive-lang-italian texlive-lang-japanese texlive-lang-korean texlive-lang-polish texlive-lang-portuguese
  texlive-lang-spanish texlive-latex-extra-doc texlive-luatex texlive-math-extra texlive-metapost-doc texlive-music texlive-omega
  texlive-plain-extra texlive-publishers texlive-publishers-doc texlive-science texlive-science-doc zathura
Suggested packages:
  www-browser zathura-ps zathura-djvu zathura-cb
The following NEW packages will be installed:
  texlive-fonts-extra texlive-fonts-extra-doc texlive-games texlive-generic-extra texlive-htmlxml texlive-humanities
  texlive-humanities-doc texlive-lang-african texlive-lang-arabic texlive-lang-chinese texlive-lang-cjk texlive-lang-cyrillic
  texlive-lang-czechslovak texlive-lang-english texlive-lang-european texlive-lang-french texlive-lang-german texlive-lang-greek
  texlive-lang-indic texlive-lang-italian texlive-lang-japanese texlive-lang-korean texlive-lang-polish texlive-lang-portuguese
  texlive-lang-spanish texlive-latex-extra-doc texlive-luatex texlive-math-extra texlive-metapost-doc texlive-music texlive-omega
  texlive-plain-extra texlive-publishers texlive-publishers-doc texlive-science texlive-science-doc zathura
0 upgraded, 37 newly installed, 0 to remove and 61 not upgraded.
2 not fully installed or removed.
Need to get 1,281 MB of archives.
After this operation, 2,436 MB of additional disk space will be used.
Do you want to continue? [Y/n] 

この時点での問題は、続行するのに十分なスペースがないことです...約 600 MB 不足しています。おそらく、少なくとも一時的には AWS に料金を支払ってストレージ スペースを拡大することもできますが、それは避けたいと思います。

apt-get clean、apt-get autoclean などを実行してスペースを解放しようとしましたが、十分なスペースが解放されません。

つまり、インストールが「半分完了」した状態になり、先にも後にも進めません。

これを解決する方法について何かアイデアはありますか? ありがとうございます!

関連情報