You are not logged in.
Pages: 1
I have a problem, I recently installed arch linux and trying to install a window manager I ran into a problem, because when trying to install it, it gave me the following warning:
error: The / partition is too full: 80944 blocks required, 35762 free blocks
error: not enough free disk space
error: operation could not be performed (not enough disk space)
Errors occurred so packages were not updatedI don't know if this problem is because it appears to me that I have the partition mounted, but the problem I do not think is the space since I have more than space to spare (almost 120GB), I will pass what I get when putting
fdisk - linside my file partition:
/dev/sda5 692981760 974674601 281692842 134.3G Linux filesystemCan somebody help me?
Last edited by sked (2020-11-07 19:41:04)
What is the output of `df -h`?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
What is the output of `df -h`?
The output of df -h is:
dev 1,9G 0 1,9G 0% /dev
run 1,9G 1,2M 1,9G 1% /run
/dev/sda5 13G 12G 121M 99% /
tmpfs 1,9G 22M 1,9G 2% /dev/shm
tmpfs 4,0M 0 4,0M 0% /sys/fs/cgroup
tmpfs 1,9G 7,0M 1,9G 1% /tmp
/dev/sda1 600M 98M 503M 17% /efi
tmpfs 381M 48K 380M 1% /run/user/1000So your root partition is only 13G, and almost full. You need to free some space there. You don't have a separate mount for /var so there's probably cache files there you can remove.
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Note that a partition is a separate entity to a filesystem. The partition may be 134GB, but if the filesystem is only 13GB, 121GB of the partition will be unusable. You will need to expand the filesystem to make use of the available space.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
You have another thread about resizing your root partition, and you have marked it solved. How exactly did you resize the partition?
Offline
You have another thread about resizing your root partition, and you have marked it solved. How exactly did you resize the partition?
I changed it by deleting an unused partition that I had in the middle.
I changed it by deleting an unused partition that I had in the middle.
That would not resize the partition or the filesystem on it. What exact tools and commands did you use?
Note that a partition is a separate entity to a filesystem. The partition may be 134GB, but if the filesystem is only 13GB, 121GB of the partition will be unusable. You will need to expand the filesystem to make use of the available space.
Offline
sked wrote:I changed it by deleting an unused partition that I had in the middle.
That would not resize the partition or the filesystem on it. What exact tools and commands did you use?
WorMzy wrote:Note that a partition is a separate entity to a filesystem. The partition may be 134GB, but if the filesystem is only 13GB, 121GB of the partition will be unusable. You will need to expand the filesystem to make use of the available space.
I used the cfdisk command to enlarge the partition (I did not change the filesystem and the problem I had was only storage, before I had a partition in the middle that prevented me from extending the partition and I think it was ext4).
If you haven't resized the filesystem, you can use resize2fs and e2fsck. You need to boot from a livecd or other external media, since the partition must be unmounted here.
Offline
If you haven't resized the filesystem, you can use resize2fs and e2fsck. You need to boot from a livecd or other external media, since the partition must be unmounted here.
Thanks, using resize2fs helped me and I was able to increase my partition size.
Toad39 wrote:If you haven't resized the filesystem, you can use resize2fs and e2fsck. You need to boot from a livecd or other external media, since the partition must be unmounted here.
Thanks, using resize2fs helped me and I was able to increase my partition size.
That statement doesn't make any sense.
Again, a partition is a separate entity to a filesystem. The resize2fs command resizes ext# filesystems, not partitions.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
Pages: 1