Warning: The disk usage for one or more of your partitions is running low

visitor00

Verified User
Joined
Jul 17, 2022
Messages
5
Hi,

I have 4TB of disc space, but the disc is full. This is impossible.

Filesystem Size Used Avail Use% Mounted on
devtmpfs 63G 0 63G 0% /dev
tmpfs 63G 668K 63G 1% /dev/shm
tmpfs 63G 9.8M 63G 1% /run
tmpfs 63G 0 63G 0% /sys/fs/cgroup
/dev/md1 3.5T 3.2T 132G 97% /
/dev/md0 2.0G 146M 1.7G 8% /boot
/dev/md2 100M 12M 89M 12% /boot/efi
tmpfs 13G 0 13G 0% /run/user/0

/dev/md1 uses too much space. How can I solve this? Can you help me?
 
Well... delete something to make it less full, maybe you create backups or something and they stay(?)
Besides that; this forum is made for people that maintain servers and use DA and we cant look into your server.

Try this:
 
This is impossible.
Nothing is impossible.
You indeed have to look what is eating up your space.

Try like this first to see if exactly which directory is using most, if it's /home or something else.
du -h --max-depth=1 /

You can change as needed, to for example /home or change the max-depth.
More examples are in the link from @ericosman.
 
Nothing is impossible.
You indeed have to look what is eating up your space.

Try like this first to see if exactly which directory is using most, if it's /home or something else.
du -h --max-depth=1 /

You can change as needed, to for example /home or change the max-depth.
More examples are in the link from @ericosman.

61M /etc
4.0K /srv
3.0T /backup
5.3G /usr
52K /man
151M /boot
8.2M /tmp
0 /sys
16K /lost+found
20G /var
du: cannot access ‘/proc/44452/task/44452/fd/4’: No such file or directory
du: cannot access ‘/proc/44452/task/44452/fdinfo/4’: No such file or directory
du: cannot access ‘/proc/44452/fd/3’: No such file or directory
du: cannot access ‘/proc/44452/fdinfo/3’: No such file or directory
0 /proc
4.0K /media
4.0K /mnt
8.0K /opt
101M /root
18M /run
197G /home
1.9M /dev
3.2T /

backup is 3.0T but backup folder is empty.. the bin trash empty. Is there somewhere else the backups are stored?
 
what does it show when you ls in the backup folder?
Because it cant be empty if there is 3tb of usage...

Cant see anything (?) try it with su (sudo)
 
what does it show when you ls in the backup folder?
Because it cant be empty if there is 3tb of usage...
63GB+65GB
2 backup file

1700578720457.png
 
63GB+65GB
2 backup file
You're looking in the wrong folder.

You're looking in /my files/backups while the 3 TB are present in /backup (not backupS) in the root of the system.

Try like this in SSH:
Code:
cd /
cd backup
ls -al
and then you will see what's taking up the space.
 
"/backup"

Contain system backup files, I thinks you need to delete all files inside that folder and turnoff cronjob of system backup. Admin backup should be fine enought.

Mostly, system backup should use for backup important files like customize thing.
 
Hi,

I have 4TB of disc space, but the disc is full. This is impossible.

Filesystem Size Used Avail Use% Mounted on
devtmpfs 63G 0 63G 0% /dev
tmpfs 63G 668K 63G 1% /dev/shm
tmpfs 63G 9.8M 63G 1% /run
tmpfs 63G 0 63G 0% /sys/fs/cgroup
/dev/md1 3.5T 3.2T 132G 97% /
/dev/md0 2.0G 146M 1.7G 8% /boot
/dev/md2 100M 12M 89M 12% /boot/efi
tmpfs 13G 0 13G 0% /run/user/0

/dev/md1 uses too much space. How can I solve this? Can you help me?
Try using ncdu, it is a nice interactive tool.

sudo apt install ncdu

ncdu /

Explore all the files and this will give you a clue of larger files.

If you are comfortable with command line, read https://greenwebpage.com/community/how-to-see-large-files-in-linux/
 
Back
Top