Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
10-16-2013, 04:34 AM
|
#1
|
MLED Founder
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453
|
Problem with full /tmp
Hi,
I have a strange problem with the /tmp directory on my Slack64 workstation.
Code:
[root@alphamule:tmp] # pwd
/tmp
[root@alphamule:tmp] # rm -rf *
-su: /usr/bin/rm: Liste d'arguments trop longue
The last error message means too many arguments.
Something seems to have spammed my /tmp directory. According to du -sh /tmp, there's about 900 MB of files in there. No idea where that's coming from.
Any idea how I can clean up this mess?
|
|
|
10-16-2013, 04:39 AM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
you could start by just looking at what files are there, but when the commandline is too long, you can use find to process one file at a time:
find /tmp/whatever -exec rm -f {}\;
or xargs:
ls /tmp | xargs rm
|
|
1 members found this post helpful.
|
10-16-2013, 07:46 AM
|
#3
|
MLED Founder
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453
Original Poster
|
Thanks, that helped! Though it took about half an hour to complete deletion. On a quad-core with 4 GB RAM.
There was a shitload of /tmp/509567493afdc67 and similar files. I don't have the slightest idea what application spewed these out. Hmmmm.
cheers,
Niki
|
|
|
10-16-2013, 08:31 AM
|
#4
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
if they come back, you can try something like lsof to see what process has the filehandle open.
|
|
1 members found this post helpful.
|
10-16-2013, 12:00 PM
|
#5
|
LQ Veteran
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Rep: 
|
I personally use
Code:
*/15 * * * * /usr/sbin/tmpwatch --atime 1 /tmp --exclude=/tmp/SBo/ > /dev/null 2>&1
to keep things nice and neat.
6.4M /tmp
|
|
|
10-16-2013, 12:23 PM
|
#6
|
Member
Registered: Mar 2007
Distribution: Slackware64-current, Slackware64 14
Posts: 331
Rep:
|
In addition to /dev/shm, you can also add a line to fstab to make your /tmp tmpfs and your /tmp will be cleared on reboot.
I'm sure you know that already, just sayin'
Code:
tmpfs /tmp tmpfs defaults 0 0
|
|
|
10-16-2013, 01:43 PM
|
#7
|
Member
Registered: Sep 2008
Location: RJ-Brazil
Distribution: Slackware
Posts: 181
Rep:
|
Itīs an interesting matter. Can I suggest another possibilities?
1)Using /rc.d/rc.local_shutdown ( /usr/bin/find /tmp -mindepth 1 -maxdepth 1 -print0 | xargs -0r /bin/rm -rf )
http:ww.linuxquestions.org/questions/slackware-14/command-to-clean-tmp-at-shutdown-417547093//w4/
2)There are a pair of excellent Mr. Woodsman scripts. If you will use kde4 you should some adpatations, but it was used a lot in kde3.
And tmpfs has memory quantity questions, insnīt ?
Last edited by vivanguarda; 10-16-2013 at 01:46 PM.
|
|
1 members found this post helpful.
|
All times are GMT -5. The time now is 06:18 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|