LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-29-2016, 05:54 PM   #1
Legend of Ron
LQ Newbie
 
Registered: Jun 2016
Posts: 2

Rep: Reputation: Disabled
Disk space full, and can't remove files because it's full?


First off, Hello. This is my first post. I'm trying to learn Linux. I started with slackware64 14.1. I installed it and have been using it just fine for weeks. Now today, I put in a HDD, all good. Now I try to delete some files from it, well trash gets full. I open trash and delete it from there. Somewhere along the way desktop crashes, and most commands won't work. It keeps saying disk space full. Even remove commands.

I'm at a loss. I just don't known Linux well enough yet to troubleshoot it, I don't even know how to phrase the problem well enough to find a solution for my system.

As for the system. It's slackware 14.1 x64. Installed on a 120G SSD. Split into two partitions /dev/sda1 is just a small boot partition, the rest is an extended partition with 3 lvm luks encrypted partitions.

I checked disk usage and everything has space. I tried checking inodes, but from what I read, being encrypted can make that read zero.
 
Old 06-30-2016, 10:46 AM   #2
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
If you try to delete too many files at a time - the disk may be used to hold the names. Just start with the biggest files you want/need to delete and delete them one at a time. As you release space, you can start to select more files ...
Oh - I wouldn't use the desktop to do it - use the console command line.

Last edited by perbh; 06-30-2016 at 10:47 AM.
 
1 members found this post helpful.
Old 06-30-2016, 11:31 AM   #3
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Depending on your partition layout, you could just remove everything in the /tmp/ directory. None of that is required for a properly running system.

Code:
rm -rf /tmp/*
If you have a separate /home/ partition, you'd need to find some large files to remove. As perbh mentioned, I would highly suggest using the commandline to remove stuff, as trying to use a filemanager may cause additional issues if it's trying to generate thumbnails or other similar files.

If you need to find out what's taking all your space, you can use the handy command below. Then once you find a large directory you'd like more info on, you can change into that directory and run the command again until you find some stuff you can delete.

Code:
du -hd 1 | sort -h
 
2 members found this post helpful.
Old 06-30-2016, 02:43 PM   #4
Legend of Ron
LQ Newbie
 
Registered: Jun 2016
Posts: 2

Original Poster
Rep: Reputation: Disabled
It actually ended up being btrfs. It was working fine for a while, so I forgot that could be an issue. I still couldn't get the workarounds to fix it though. So I went back to ext4. I'll play around with btrfs on a separate drive, vm, or something another time.
 
Old 07-01-2016, 05:47 AM   #5
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Quote:
Originally Posted by Legend of Ron View Post
First off, Hello. This is my first post.
Welcome to LQ Legend of Ron !

Quote:
I'm trying to learn Linux. I started with slackware64 14.1. I installed it and have been using it just fine for weeks. Now today, I put in a HDD, all good. Now I try to delete some files from it, well trash gets full. I open trash and delete it from there. Somewhere along the way desktop crashes, and most commands won't work. It keeps saying disk space full. Even remove commands.
What tool are you using to delete files ?

The reference to Trash sounds like a GUI tool at work.

Are you able to delete files from the command line ?

Quote:
As for the system. It's slackware 14.1 x64. Installed on a 120G SSD. Split into two partitions /dev/sda1 is just a small boot partition, the rest is an extended partition with 3 lvm luks encrypted partitions.

I checked disk usage and everything has space. I tried checking inodes, but from what I read, being encrypted can make that read zero.
bassmadrigal's and perbh's posts have some useful hints.

And now I need to study up on LUKS and inode counts ... IMO, it would be a nasty regression if LUKS hides or mis-reports inode counts !

Thanks for the info.

-- kjh

Last edited by kjhambrick; 07-01-2016 at 06:22 AM.
 
Old 07-01-2016, 08:07 AM   #6
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by Legend of Ron View Post
It actually ended up being btrfs. It was working fine for a while, so I forgot that could be an issue. I still couldn't get the workarounds to fix it though. So I went back to ext4. I'll play around with btrfs on a separate drive, vm, or something another time.
Rebalancing didn't work? The usual cause is that the space for allocations gets split between the metadata and the actual data. Rebalancing is SUPPOSED to change the split, which would then allow you some space.

The problem sounds like too much GUI. That doesn't delete things very well - as it actually does a "mv src trash" type thing, which can require an expansion of the trash directory, if not a full copy of the file. Using the command line "rm" will delete files, and with a minimum (to no) overhead.
 
Old 07-01-2016, 11:06 AM   #7
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Rep: Reputation: 112Reputation: 112
When your disk is full I don't recommend using rm. That only deletes the pointer to the file but the data may still be on disk. It's best to find a big file, like a large log, and empty it out.

Code:
root@hades:~ # df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        61G   23G   36G  39% /
/dev/sdc1       1.8T  929G  813G  54% /home
/dev/sda1        50G   48G  2.2G  96% /windows
tmpfs           3.9G  110M  3.8G   3% /dev/shm
/dev/sdb1       3.7T  1.5T  2.3T  40% /games

root@hades:~ # cd /var/log/
root@hades:/var/log # du -h --max-depth=1
24M     ./packages
1.4M    ./removed_scripts
5.7M    ./scripts
4.0K    ./uucp
4.0K    ./cups
4.0K    ./sa
14M     ./removed_packages
4.0K    ./httpd
248K    ./ConsoleKit
9.2G    ./libvirt
92K     ./setup
3.5M    ./sbopkg
4.0K    ./iptraf-ng
11M     ./teamviewer11
4.0K    ./samba
4.0K    ./nfsd
9.3G    .

root@hades:/var/log # cd libvirt/
root@hades:/var/log/libvirt # ls -lh
total 9.2G
-rw------- 1 root root 8.2G Jul  1 11:03 libvirtd.log
-rw------- 1 root root 659M May  3 04:40 libvirtd.log.1
-rw------- 1 root root  88M Apr 30 04:41 libvirtd.log.2.gz
-rw------- 1 root root 183M Apr 13 04:40 libvirtd.log.3.gz
-rw------- 1 root root  83M Mar  1 04:40 libvirtd.log.4.gz
drwxr-xr-x 2 root root 4.0K Jan  3 02:22 lxc/
drwxr-xr-x 2 root root 4.0K May 24 17:05 qemu/
drwxr-xr-x 2 root root 4.0K Jan  3 02:22 uml/

root@hades:/var/log/libvirt # > libvirtd.log

root@hades:/var/log/libvirt # ls -lh
total 1012M
-rw------- 1 root root    0 Jul  1 11:03 libvirtd.log
-rw------- 1 root root 659M May  3 04:40 libvirtd.log.1
-rw------- 1 root root  88M Apr 30 04:41 libvirtd.log.2.gz
-rw------- 1 root root 183M Apr 13 04:40 libvirtd.log.3.gz
-rw------- 1 root root  83M Mar  1 04:40 libvirtd.log.4.gz
drwxr-xr-x 2 root root 4.0K Jan  3 02:22 lxc/
drwxr-xr-x 2 root root 4.0K May 24 17:05 qemu/
drwxr-xr-x 2 root root 4.0K Jan  3 02:22 uml/

root@hades:/var/log/libvirt # df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        61G   15G   44G  25% /
/dev/sdc1       1.8T  929G  813G  54% /home
/dev/sda1        50G   48G  2.2G  96% /windows
tmpfs           3.9G  110M  3.8G   3% /dev/shm
/dev/sdb1       3.7T  1.5T  2.3T  40% /games
I found the file /var/log/libvirt/libvirtd.log was 8.2GB. I redirected null to it to empty it and I gained that space back immediately.
 
2 members found this post helpful.
Old 07-01-2016, 11:20 AM   #8
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Interesting Gerardo Zamudio ...

Never thought of doing it that-a-way but next time I run into a full file system, I'll certainly do it your way ( if I remember )

Off topic, but I have to ask ... ( Your log entries beg the question ), why are the libvirt logs so huge ?

-- kjh
 
Old 07-01-2016, 11:28 AM   #9
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Rep: Reputation: 112Reputation: 112
Eh, some sort of constant polling I guess.

Code:
root@hades:/var/log/libvirt # tail -f libvirtd.log
2016-07-01 16:02:07.714+0000: 861: info : virObjectUnref:259 : OBJECT_UNREF: obj=0x7fdbc40d1f80
2016-07-01 16:02:07.714+0000: 861: info : virNetServerClientSendMessageLocked:1405 : RPC_SERVER_CLIENT_MSG_TX_QUEUE: client=0x7fdbd8e60200 len=60 prog=536903814 vers=1 proc=16 type=1 status=0 serial=11178
2016-07-01 16:02:07.714+0000: 861: info : virEventPollUpdateHandle:152 : EVENT_POLL_UPDATE_HANDLE: watch=11 events=3
2016-07-01 16:02:07.714+0000: 861: info : virObjectUnref:259 : OBJECT_UNREF: obj=0x7fdbd8e2c0c0
2016-07-01 16:02:07.714+0000: 861: info : virObjectUnref:259 : OBJECT_UNREF: obj=0x7fdbd8e60200
2016-07-01 16:02:07.714+0000: 856: info : virEventPollDispatchHandles:507 : EVENT_POLL_DISPATCH_HANDLE: watch=1 events=1
2016-07-01 16:02:07.714+0000: 856: info : virEventPollRunOnce:641 : EVENT_POLL_RUN: nhandles=11 timeout=5000
2016-07-01 16:02:07.714+0000: 856: info : virEventPollDispatchHandles:507 : EVENT_POLL_DISPATCH_HANDLE: watch=11 events=2
2016-07-01 16:02:07.714+0000: 856: info : virEventPollUpdateHandle:152 : EVENT_POLL_UPDATE_HANDLE: watch=11 events=1
2016-07-01 16:02:07.714+0000: 856: info : virEventPollRunOnce:641 : EVENT_POLL_RUN: nhandles=11 timeout=5000
2016-07-01 16:02:10.717+0000: 856: info : virEventPollDispatchHandles:507 : EVENT_POLL_DISPATCH_HANDLE: watch=11 events=1
2016-07-01 16:02:10.717+0000: 856: info : virEventPollUpdateHandle:152 : EVENT_POLL_UPDATE_HANDLE: watch=11 events=1
2016-07-01 16:02:10.717+0000: 856: info : virNetServerClientDispatchRead:1148 : RPC_SERVER_CLIENT_MSG_RX: client=0x7fdbd8e60200 len=28 prog=536903814 vers=1 proc=6 type=0 status=0 serial=11179
2016-07-01 16:02:10.717+0000: 856: info : virEventPollUpdateTimeout:265 : EVENT_POLL_UPDATE_TIMEOUT: timer=2 frequency=5000
2016-07-01 16:02:10.717+0000: 856: info : virObjectRef:296 : OBJECT_REF: obj=0x7fdbd8e60200
2016-07-01 16:02:10.717+0000: 856: info : virObjectRef:296 : OBJECT_REF: obj=0x7fdbd8e2c0c0
2016-07-01 16:02:10.717+0000: 856: info : virEventPollUpdateHandle:152 : EVENT_POLL_UPDATE_HANDLE: watch=11 events=1
2016-07-01 16:02:10.717+0000: 856: info : virEventPollRunOnce:641 : EVENT_POLL_RUN: nhandles=11 timeout=5000
2016-07-01 16:02:10.717+0000: 866: info : virObjectRef:296 : OBJECT_REF: obj=0x7fdbc40d1f80
2016-07-01 16:02:10.717+0000: 866: info : virObjectRef:296 : OBJECT_REF: obj=0x7fdbc40d1f80
2016-07-01 16:02:10.717+0000: 866: info : virObjectRef:296 : OBJECT_REF: obj=0x7fdbd8e2cd30
2016-07-01 16:02:10.717+0000: 866: info : virObjectUnref:259 : OBJECT_UNREF: obj=0x7fdbd8e2cd30
2016-07-01 16:02:10.717+0000: 866: info : virObjectUnref:259 : OBJECT_UNREF: obj=0x7fdbc40d1f
I have plenty of space and the logs are taken care of by logrotate so I don't worry about it. If it wasn't for this thread I probably would have never even noticed it was even happening
 
1 members found this post helpful.
Old 07-01-2016, 11:43 AM   #10
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by Gerardo Zamudio View Post
When your disk is full I don't recommend using rm. That only deletes the pointer to the file but the data may still be on disk. It's best to find a big file, like a large log, and empty it out.
That is exactly how files are deleted. When the last pointer to the file is removed, the file is deleted.

When a file is NOT deleted, there are still pointers to the file.

Last edited by jpollard; 07-01-2016 at 11:57 AM.
 
Old 07-01-2016, 11:46 AM   #11
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by kjhambrick View Post
Interesting Gerardo Zamudio ...

Never thought of doing it that-a-way but next time I run into a full file system, I'll certainly do it your way ( if I remember )

Off topic, but I have to ask ... ( Your log entries beg the question ), why are the libvirt logs so huge ?

-- kjh
He must not be running a log rotate... His recommendation risks corrupting the log (don't EVER do that to a journald log).
 
Old 07-01-2016, 12:39 PM   #12
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by jpollard View Post
That is exactly how files are deleted. When the last pointer to the file is removed, the file is deleted.

When a file is NOT deleted, there are still pointers to the file.
This is true in the sense that nothing references the file anymore, but it doesn't actually delete anything. This isn't an issue with HDDs, because they'll just overwrite that sector when new data needs to be written, but SSDs require the sector to be zeroed out before it can be written, which running rm won't do. If you have an SSD, you need to trim the drive after the data is "deleted", as this prepares it for future writes. If you don't, when you try to write something else to that sector, you have to first clear it and then write it, doubling the time it takes to write. This is why fstrim or discard options in fstab are so important on SSDs.

But I will admit, I'm not familiar with btrfs or other similar setups, so it could be completely different there compared to normal HDD or SSD operations.
 
Old 07-01-2016, 04:36 PM   #13
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by bassmadrigal View Post
This is true in the sense that nothing references the file anymore, but it doesn't actually delete anything. This isn't an issue with HDDs, because they'll just overwrite that sector when new data needs to be written, but SSDs require the sector to be zeroed out before it can be written, which running rm won't do. If you have an SSD, you need to trim the drive after the data is "deleted", as this prepares it for future writes. If you don't, when you try to write something else to that sector, you have to first clear it and then write it, doubling the time it takes to write. This is why fstrim or discard options in fstab are so important on SSDs.
That is handled by the SSD itself, not Linux. The fstrim option is the flag for the filesystem to provide that signal to the device.
Quote:

But I will admit, I'm not familiar with btrfs or other similar setups, so it could be completely different there compared to normal HDD or SSD operations.
As long as the filesystem supports SSD usage, there is no difference. And just truncating a file will NOT generate the signals to an SSD for the required activity - unless the filesystem ALREADY supports fstrim.
 
Old 07-01-2016, 04:43 PM   #14
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
But it is still true that the file isn't "deleted" by simply removing the pointers. It only occurs on SSDs when trim is used, and on HDDs you need to manually do it, since there isn't something in place to do it (since there's really no need unless you need to securely remove the file).
 
Old 07-01-2016, 04:51 PM   #15
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
removing the pointers is all the filesystem needs. That is ALL that is needed.

The "trim" is only required by the device, and since it is a device activity, guess what - the filesystem has to do it.

If the filesystem doesn't support the trim, guess what - you can't do it at all. "manually do it" is called "writing data". Might be zeros, might not, but writing data is your activity.

Last edited by jpollard; 07-01-2016 at 04:53 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
disk space full because alot of files in /var/spool/clientmqueue folder k0nsole.c Linux - Software 4 03-21-2016 09:26 AM
os reports disk full but i still see some space jzoudavy Linux - Newbie 3 01-16-2015 11:15 AM
Disk space full and remedy stevenl Linux - Newbie 23 03-26-2012 04:52 AM
Disk full. Deleted files but no space available. atrejo Linux - General 3 05-03-2010 02:00 PM
disk space is full ( / is 100% in use) samengr Linux - General 3 01-26-2008 09:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration