Reputation: 136
I am trying to install redis with pacman in steam deck desktop mode and I get the following error: Partition /etc too full: 11891 blocks needed, 750 blocks free
Upvotes: 0
Views: 730
Reputation: 31404
pacman
installs packages.
The files typically go into /usr
, but configuration files will be installed into /etc
.
In order for this to work, it needs to be able to store stuff in these directories, which means that they must not be (too) full before starting.
So if pacman
complains that your Partition [is] /etc too full
, than it probably is just right about this, and you should be grateful that it refuses to risk corrupt data.
The solution is obviously to resize the partition you are trying to write to.
Upvotes: 0