![]() |
| | #1 | |
| Registered User Join Date: Jan 2009
Posts: 156
| No space left on device compilation terminated I am compiling my C++ program with g++ on a server and receive out of space error: Quote:
Thanks and regards! | |
| lehe is offline | |
| | #2 |
| and the hat of vanishing Join Date: Aug 2001 Location: The edge of the known universe
Posts: 21,214
| > Does it mean that the usage in /tmp is full? Yes. > Is this problem for the whole server or only for my account? It might be either. Who's the sysadmin? If you do an 'ls -l /tmp', do you see a lot of old (and large) files? /tmp should be cleared by a cron job every day If your .s file is that large, how big is the source file?
__________________ If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut. Up to 8Mb PlusNet broadband from only £5.99 a month! |
| Salem is offline | |
| | #3 | |
| Registered User Join Date: Jan 2009
Posts: 156
| Here is the part of the output related to my account: Quote:
| |
| lehe is offline | |
| | #4 |
| and the hat of vanishing Join Date: Aug 2001 Location: The edge of the known universe
Posts: 21,214
| Perhaps 'du' then, to see what's beneath those dirs. Even the most recent is 2 days old - you could manually get rid of them yourself.
__________________ If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut. Up to 8Mb PlusNet broadband from only £5.99 a month! |
| Salem is offline | |
| | #5 | |
| Registered User Join Date: Jan 2009
Posts: 156
| Thanks. How to do that specifically? I remember yesterday I took 5 hours to upload a 3GB iso file to my account. Is it relevent? I didn't see any files very big as here Quote:
| |
| lehe is offline | |
| | #6 |
| Registered User Join Date: Oct 2008
Posts: 450
| A lot easier. Try (as earlier suggested): du -m /tmp also, type df. |
| EVOEx is offline | |
| | #7 |
| and the hat of vanishing Join Date: Aug 2001 Location: The edge of the known universe
Posts: 21,214
| du /tmp I guess Then (if you're not doing anything) rm -r /tmp/* Or more cautiously remove everything older than a day find /tmp -mtime +1 -exec rm {} \; > I remember yesterday I took 5 hours to upload a 3GB iso file to my account. Is it relevent? It might be. Code: {}
__________________ If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut. Up to 8Mb PlusNet broadband from only £5.99 a month! |
| Salem is offline | |
| | #8 | ||
| Registered User Join Date: Jan 2009
Posts: 156
| Thanks. I have some screen session running from weeks ago that I still want to keep, so how can I remove except the screen sessions? Here is output of du -m, excluding what is with permission denied Quote:
Quote:
| ||
| lehe is offline | |
| | #9 |
| Registered User Join Date: Oct 2008
Posts: 450
| Try removing those 16 MB files. I can't imagine it would matter. Even if it did; rebooting would clear temp, fixing problems caused by this should there be any. In fact; you may simply reboot the computer and retry. That is, on most distros. |
| EVOEx is offline | |
![]() |
| Thread Tools | |
| Display Modes | |
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Request for comments | Prelude | A Brief History of Cprogramming.com | 15 | 01-02-2004 10:33 AM |
| Binary Tree Revisited: Near Completion | Nakeerb | C++ Programming | 13 | 01-22-2003 08:23 AM |
| Templated Binary Tree... dear god... | Nakeerb | C++ Programming | 15 | 01-17-2003 02:24 AM |
| Release Configuration Problems | Unregistered | C++ Programming | 5 | 06-19-2002 04:54 AM |
| Please help me | teedee46 | C++ Programming | 9 | 05-06-2002 11:28 PM |