LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-21-2010, 03:59 AM   #1
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
No space left on device


OpenSuse 11.2

Kdevelop is complaining that I have no space left on device.

Code:
linux-uitj:/home/anisha # df
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda5             20641788  19593140         8 100% /
udev                   1022964       204   1022760   1% /dev
/dev/sda6            153660192  42307864 103546748  30% /home
It is the root partition that has been fully used. It is the cause of the problem ? Home still has some space!

Also man pages are coming up blank !

Yes this is a dumb question, help !
 
Old 10-21-2010, 04:05 AM   #2
prayag_pjs
Senior Member
 
Registered: Feb 2008
Location: Pune - India
Distribution: RHEL/Ubuntu/Debian/Fedora/Centos/K3OS
Posts: 1,159
Blog Entries: 4

Rep: Reputation: 149Reputation: 149
Hi,

Yes / is full so its complaining /usr/bin /bin /sbin all are in /

Quote:
which kdevelop
gives:


/usr/bin/kdevelop

Last edited by prayag_pjs; 10-21-2010 at 04:06 AM. Reason: Example Added
 
1 members found this post helpful.
Old 10-21-2010, 04:06 AM   #3
T0sh1r0
Member
 
Registered: Oct 2010
Posts: 51
Blog Entries: 1

Rep: Reputation: Disabled
Clean up is urgent! ;-)
Look in /tmp. You could also have some old stuffs in /var (ex old versions of packages)
And for the future, if you can, set an automatic clean up of temporary files at boot.
 
1 members found this post helpful.
Old 10-21-2010, 04:25 AM   #4
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Thanks to both of you, my work is halted here

I looked up tldp:
http://tldp.org/LDP/LGNET/18/tmp.html

But I don't have : /var/catman ??

I googled up the following thread and will just see what is there:
http://www.linuxquestions.org/questi...-linux-659672/

Last edited by Aquarius_Girl; 10-21-2010 at 06:02 AM. Reason: Removed a new question
 
Old 10-21-2010, 04:29 AM   #5
prayag_pjs
Senior Member
 
Registered: Feb 2008
Location: Pune - India
Distribution: RHEL/Ubuntu/Debian/Fedora/Centos/K3OS
Posts: 1,159
Blog Entries: 4

Rep: Reputation: 149Reputation: 149
Deleting large folders and files or unnecessary codes(you seem to be developer) will help you.Wish you had LVM it would have saved you now;if you had extra space or drive!
 
Old 10-21-2010, 04:34 AM   #6
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Code:
du -sm /*|sort -n
Find the hog, check what can be pruned.


Cheers,
Tink
 
1 members found this post helpful.
Old 10-21-2010, 04:59 AM   #7
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by Tinkster View Post
Find the hog, check what can be pruned.
Thanks for jumping in,

What I am supposed to delete here ?
Is it safe to rm -rf /tmp ?
Code:
linux-uitj:/home/anisha # du -sm /*|sort -n
du: cannot access `/home/anisha/.gvfs': Permission denied
du: cannot access `/proc/21482/task/21482/fd/4': No such file or directory
du: cannot access `/proc/21482/task/21482/fdinfo/4': No such file or directory
du: cannot access `/proc/21482/fd/4': No such file or directory
du: cannot access `/proc/21482/fdinfo/4': No such file or directory
0       /proc
0       /sys
1       /dev
1       /lost+found
1       /media
1       /mnt
1       /selinux
1       /srv
8       /bin
9       /root
11      /sbin
17      /lib64
32      /boot
60      /etc
91      /core
131     /lib
539     /opt
548     /var
6992    /usr
10529   /tmp
41123   /home
 
Old 10-21-2010, 05:06 AM   #8
T0sh1r0
Member
 
Registered: Oct 2010
Posts: 51
Blog Entries: 1

Rep: Reputation: Disabled
Don't do a rm -fr /tmp !!! Or you will remove the directory itself!
You should rather do rm -fr /tmp/* if YOU ARE SURE that you can remove everything in it.

The best way imho is to have a look in it first:
Quote:
cd /tmp
du -sm . |sort -n
And look for big files or directories that you can safely remove.
 
Old 10-21-2010, 05:07 AM   #9
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
I have just deleted an ISO file of LUbuntu and the Trash dir, and man pages have started showing up now !

But Kdevelop is still complaining !

Last edited by Aquarius_Girl; 10-21-2010 at 05:27 AM.
 
Old 10-21-2010, 05:12 AM   #10
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by T0sh1r0 View Post
Don't do a rm -fr /tmp !!! Or you will remove the directory itself!
You should rather do rm -fr /tmp/* if YOU ARE SURE that you can remove everything in it.

The best way imho is to have a look in it first:

And look for big files or directories that you can safely remove.
I meant the same but wrote differently

Does this make sense to you ?
Code:
anisha@linux-uitj:~> su
Password:              
linux-uitj:/home/anisha # cd /tmp
linux-uitj:/tmp # du -sm . |sort -n 
10529   .

Last edited by Aquarius_Girl; 10-21-2010 at 07:35 AM.
 
Old 10-21-2010, 05:51 AM   #11
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
and I have no idea what these files are, I don't know what to delete here:
Code:
linux-uitj:/tmp # ll             
total 2624                       
drwx------   4 root   root     4096 2010-08-17 12:18 0458207966
drwx------   4 root   root     4096 2010-08-17 11:24 1457225767
-r--------   1 anisha users    2684 2010-04-20 15:56 15-1.txt  
-r--------   1 anisha users    2684 2010-04-20 15:41 15.txt    
-rw-------   1 anisha users     689 2010-04-30 14:59 6sXVPZKK.ymp.part
drwx------   2 anisha users    4096 2010-09-24 14:44 acroread_1000_100
-rw-------   1 anisha users  432260 2010-09-22 11:14 bRmRyizr.pdf.part
-rw-------   1 anisha users   73728 2010-05-04 12:35 ccVYLgYO.s       
-r--------   1 anisha users   36367 2010-05-07 12:47 codecs-kde-1.ymp 
-r--------   1 anisha users   36367 2010-05-07 12:46 codecs-kde.ymp   
drwx------   2 anisha users    4096 2010-06-29 11:43 evince-3877      
drwx------   2 anisha users    4096 2010-06-17 15:54 evince-4332      
drwx------   2 anisha users    4096 2010-06-24 16:08 evince-4989      
drwx------   2 anisha users    4096 2010-06-07 17:24 evince-5535      
drwx------   2 anisha users    4096 2010-05-15 18:29 evince-6018      
drwx------   2 anisha users    4096 2010-05-14 10:30 evince-6223      
drwx------   2 anisha users    4096 2010-06-21 11:26 evince-6842      
drwx------   2 anisha users    4096 2010-06-18 14:07 evince-7299      
drwx------   2 anisha users    4096 2010-06-25 13:21 evince-7463      
drwx------   2 anisha users    4096 2010-06-19 12:42 evince-7736      
-rw-r--r--   1 anisha users       8 2010-07-21 15:26 file             
-rw-------   1 anisha users      20 2010-06-15 15:56 fineDiffA        
-rw-------   1 anisha users      20 2010-06-15 15:56 fineDiffB        
drwx------   2 anisha users    4096 2010-08-17 11:39 gpg-3Ghpmh       
drwx------   2 anisha users    4096 2010-04-23 13:47 gpg-3RbMhD       
drwx------   2 anisha users    4096 2010-07-22 12:27 gpg-3wQ3mJ       
drwx------   2 anisha users    4096 2010-04-22 13:31 gpg-6jS7q6       
drwx------   2 anisha users    4096 2010-05-07 11:30 gpg-A0sYOR       
drwx------   2 anisha users    4096 2010-08-17 12:32 gpg-AD138B       
drwx------   2 anisha users    4096 2010-04-22 10:23 gpg-dzffYf       
drwx------   2 anisha users    4096 2010-07-22 16:37 gpg-Ga7EVs       
drwx------   2 anisha users    4096 2010-07-21 11:10 gpg-GIGLvp       
drwx------   2 anisha users    4096 2010-07-22 11:46 gpg-hb1Vr2       
drwx------   2 anisha users    4096 2010-10-11 08:28 gpg-HKMobs       
drwx------   2 anisha users    4096 2010-05-12 17:59 gpg-I7CPMb       
drwx------   2 anisha users    4096 2010-10-07 12:53 gpg-iGNUrI                                          
drwx------   2 anisha users    4096 2010-10-05 10:17 gpg-IHHOZK                                          
drwx------   2 anisha users    4096 2010-07-05 15:13 gpg-iS1sPQ                                          
drwx------   2 anisha users    4096 2010-07-21 11:33 gpg-j56saw                                          
drwx------   2 anisha users    4096 2010-04-23 10:53 gpg-JENd8D                                          
drwx------   2 anisha users    4096 2010-09-27 17:37 gpg-jErzTN                                          
drwx------   2 anisha users    4096 2010-06-14 14:07 gpg-JHDUjH                                          
drwx------   2 anisha users    4096 2010-06-30 15:34 gpg-JRZpIq                                          
drwx------   2 anisha users    4096 2010-06-23 15:40 gpg-LAcSCj                                          
drwx------   2 anisha users    4096 2010-09-27 11:31 gpg-LdZpXd                                          
drwx------   2 anisha users    4096 2010-07-05 17:00 gpg-Lsljls                                          
drwx------   2 anisha users    4096 2010-04-20 16:02 gpg-nE9VMD                                          
drwx------   2 anisha users    4096 2010-09-01 16:37 gpg-nG6HV2                                          
drwx------   2 anisha users    4096 2010-10-01 09:06 gpg-odKb8V                                          
drwx------   2 anisha users    4096 2010-08-17 12:18 gpg-oDln14                                          
drwx------   2 anisha users    4096 2010-04-23 10:17 gpg-PUlz4C                                          
drwx------   2 anisha users    4096 2010-06-21 09:59 gpg-Q2UMit                                          
drwx------   2 anisha users    4096 2010-04-19 10:03 gpg-qgCABp                                          
drwx------   2 anisha users    4096 2010-04-23 12:13 gpg-qGEoZA                                          
drwx------   2 anisha users    4096 2010-07-22 11:37 gpg-RmsGcI                                          
drwx------   2 anisha users    4096 2010-05-14 16:35 gpg-W7e3yj                                          
drwx------   2 anisha users    4096 2010-07-09 17:59 gpg-wC2DCX                                          
drwx------   2 anisha users    4096 2010-07-07 18:22 gpg-WWflrc                                          
drwx------   2 anisha users    4096 2010-04-22 14:26 gpg-xQ1PyE                                          
drwx------   2 anisha users    4096 2010-04-23 10:28 gpg-yJ0j8i                                          
drwx------   2 anisha users    4096 2010-04-22 14:17 gpg-yqWluy                                          
drwx------   2 anisha users    4096 2010-08-17 11:30 gpg-ZcCFqB                                          
drwx------   2 anisha users    4096 2010-10-04 08:30 gpg-zxZUQC                                          
drwxr-xr-x   2 anisha users    4096 2010-10-20 18:05 hsperfdata_anisha                                   
drwxr-xr-x   2 root   root     4096 2010-04-17 10:32 hsperfdata_root                                     
-rw-------   1 anisha users  187684 2010-04-29 10:19 i4IO47oT.pdf.part                                   
drwxrwxrwt   2 root   root     4096 2010-10-21 12:49 .ICE-unix                                           
drwx------   2 root   root     4096 2010-07-29 15:57 isax.33f8Qz                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.b97UQv                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.JQ4R0v                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.K8aQZE                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.PEdqXR                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.tQr07P                                         
drwx------   2 root   root     4096 2010-07-29 15:57 isax.W24E35                                         
drwx------ 127 anisha users   20480 2010-10-21 15:53 kde-anisha                                          
drwx------   2 root   root     4096 2010-05-19 16:40 kde-root                                            
-r--------   1 anisha users     689 2010-04-30 15:03 kdevelop3-1.ymp                                     
-r--------   1 anisha users    1948 2010-04-30 15:09 kdevelop3-2.ymp                                     
-r--------   1 anisha users    1929 2010-04-30 15:12 kdevelop3-devel.ymp                                 
-r--------   1 anisha users     689 2010-04-30 15:00 kdevelop3.ymp                                       
drwx------   2 anisha users    4096 2010-10-05 13:56 keyring-3R1cUK                                      
drwx------   2 anisha users    4096 2010-09-27 17:45 keyring-4Eu0AA                                      
drwx------   2 anisha users    4096 2010-08-19 10:55 keyring-8jkTFn                                      
drwx------   2 anisha users    4096 2010-10-04 09:36 keyring-a2La5R                                      
drwx------   2 anisha users    4096 2010-05-07 15:54 keyring-bEwQTK                                      
drwx------   2 anisha users    4096 2010-09-03 10:24 keyring-bpw7LP                                      
drwx------   2 anisha users    4096 2010-09-01 10:48 keyring-BUkc4X                                      
drwx------   2 anisha users    4096 2010-09-01 17:03 keyring-c2sAOK                                      
drwx------   2 anisha users    4096 2010-08-31 14:16 keyring-CEbk9a                                      
drwx------   2 anisha users    4096 2010-09-13 14:14 keyring-CUtE0P                                      
drwx------   2 anisha users    4096 2010-08-07 14:45 keyring-Dti9d5                                      
drwx------   2 anisha users    4096 2010-08-09 16:38 keyring-EXVKgf                                      
drwx------   2 anisha users    4096 2010-06-09 17:53 keyring-fDM5I3                                      
drwx------   2 anisha users    4096 2010-09-27 11:39 keyring-fWSwqB                                      
drwx------   2 anisha users    4096 2010-10-07 13:19 keyring-GYPXFg                                      
drwx------   2 anisha users    4096 2010-09-23 11:29 keyring-HqUQG5                                      
drwx------   2 anisha users    4096 2010-05-07 15:42 keyring-i1J7Wa                                      
drwx------   2 anisha users    4096 2010-09-01 14:54 keyring-I62x6b                                      
drwx------   2 anisha users    4096 2010-09-29 11:28 keyring-jdXDHz                                      
drwx------   2 anisha users    4096 2010-10-11 09:03 keyring-JHXgSD                                      
drwx------   2 anisha users    4096 2010-08-18 10:09 keyring-jqgT3i                                      
drwx------   2 anisha users    4096 2010-09-16 10:45 keyring-lVKcNA                                      
drwx------   2 anisha users    4096 2010-08-16 10:08 keyring-oMlEGn                                      
drwx------   2 anisha users    4096 2010-09-22 13:37 keyring-PA5tGf                                      
drwx------   2 anisha users    4096 2010-06-16 15:55 keyring-tiNJME                                      
drwx------   2 anisha users    4096 2010-08-09 16:01 keyring-tnkcKY                                      
drwx------   2 anisha users    4096 2010-08-12 09:44 keyring-UGBHRw                                      
drwx------   2 anisha users    4096 2010-09-30 11:03 keyring-vYWXBT                                      
drwx------   2 anisha users    4096 2010-09-15 13:49 keyring-VZGkfM                                      
drwx------   2 anisha users    4096 2010-08-17 14:06 keyring-wZOKOD                                      
drwx------   2 anisha users    4096 2010-10-01 10:07 keyring-xgbyTc                                      
-rw-------   1 anisha users 1080208 2010-06-29 12:28 Khgl608c.bin.part                                   
drwx------   3 anisha users   16384 2010-10-21 13:39 ksocket-anisha                                      
drwx------   2 root   root     4096 2010-05-19 16:40 ksocket-root                                        
-r--------   1 anisha users   13881 2010-04-20 16:24 LXDE.ymp                                            
srwxr-xr-x   1 anisha users       0 2010-08-16 12:22 .lxterminal-socket:0.0-anisha                       
srwxr-xr-x   1 anisha users       0 2010-10-11 08:28 .menu-cached-:0-anisha                              
drwx------   2 anisha users   36864 2010-10-21 13:12 orbit-anisha                                        
drwx------   2 root   root     4096 2010-04-27 11:21 orbit-root                                          
srwxr-xr-x   1 anisha users       0 2010-10-20 17:24 OSL_PIPE_1000_SingleOfficeIPC_39d5fbbd48dbd1783721651b14a685e                                                                                                
srwxr-xr-x   1 anisha users       0 2010-10-11 08:28 .pcmanfm-socket:0.0-anisha                          
drwx------   2 anisha users    4096 2010-04-22 13:26 plugtmp                                             
drwx------   2 anisha users    4096 2010-04-23 10:07 plugtmp-1                                           
drwx------   2 anisha users    4096 2010-04-17 10:41 pulse-ctT9RwKSB1Fe                                  
drwx------   2 root   root     4096 2010-04-23 10:41 pulse-uIodDUXSvvVj                                  
-rw-r--r--   1 anisha users       0 2010-04-17 10:56 qtsingleapplication-5e9b-3e8-lockfile               
drwx------   2 root   root     4096 2010-04-22 10:15 run-crons.hqMmxB                                    
-r--------   1 anisha users    2190 2010-04-23 10:05 signal_kernel.c                                     
drwx------   2 anisha users    4096 2010-07-22 12:27 ssh-aWeqE2299                                       
drwx------   2 anisha users    4096 2010-10-01 09:06 ssh-biPqC2314                                       
drwx------   2 anisha users    4096 2010-07-21 11:10 ssh-BxkpZ2327                                       
drwx------   2 anisha users    4096 2010-08-17 11:39 ssh-CPuUG3362                                       
drwx------   2 anisha users    4096 2010-09-01 16:37 ssh-DSaiA2335                                       
drwx------   2 anisha users    4096 2010-10-11 08:28 ssh-ebVnU2298                                       
drwx------   2 anisha users    4096 2010-05-14 16:35 ssh-EZFAW2425                                       
drwx------   2 anisha users    4096 2010-08-17 12:18 ssh-fxcmS2282                                       
drwx------   2 anisha users    4096 2010-04-20 16:02 ssh-FxYJj2547                                       
drwx------   2 anisha users    4096 2010-04-23 13:47 ssh-HVkmE2360                                       
drwx------   2 anisha users    4096 2010-07-09 17:59 ssh-hwiRy2521                                       
drwx------   2 anisha users    4096 2010-07-21 11:33 ssh-icstG2301                                       
drwx------   2 anisha users    4096 2010-06-14 14:07 ssh-IHXoz2364                                       
drwx------   2 anisha users    4096 2010-05-07 11:30 ssh-IkcmT2399                                       
drwx------   2 anisha users    4096 2010-04-23 10:53 ssh-iQHHk2303                                       
drwx------   2 anisha users    4096 2010-04-22 14:17 ssh-ITQHG2304                                       
drwx------   2 anisha users    4096 2010-04-22 13:31 ssh-jdxwr2293                                       
drwx------   2 anisha users    4096 2010-10-07 12:53 ssh-kDcQC2281                                       
drwx------   2 anisha users    4096 2010-04-23 10:28 ssh-KgyBO2353                                       
drwx------   2 anisha users    4096 2010-08-17 12:32 ssh-kktaJ2299                                       
drwx------   2 anisha users    4096 2010-06-30 15:34 ssh-KNqIW2342                                       
drwx------   2 anisha users    4096 2010-09-27 17:37 ssh-LDMRm3338                                       
drwx------   2 anisha users    4096 2010-07-22 16:37 ssh-mAKls2321                                       
drwx------   2 anisha users    4096 2010-07-07 18:22 ssh-MstnS2396                                       
drwx------   2 anisha users    4096 2010-04-23 12:13 ssh-PrLXH2357                                       
drwx------   2 anisha users    4096 2010-07-05 17:00 ssh-qQxuB2323                                       
drwx------   2 anisha users    4096 2010-06-23 15:40 ssh-RnUJd2364                                       
drwx------   2 anisha users    4096 2010-10-05 10:17 ssh-rUaix2309                                       
drwx------   2 anisha users    4096 2010-06-21 09:59 ssh-Rwajs2370
drwx------   2 anisha users    4096 2010-04-23 10:17 ssh-sMfCE2379
drwx------   2 anisha users    4096 2010-05-12 17:59 ssh-unoXs2358
drwx------   2 anisha users    4096 2010-07-22 11:37 ssh-WCXIL2691
drwx------   2 anisha users    4096 2010-04-19 10:03 ssh-WIVk12713
drwx------   2 anisha users    4096 2010-04-22 10:23 ssh-wPivE2326
drwx------   2 anisha users    4096 2010-07-05 15:13 ssh-wsByS2334
drwx------   2 anisha users    4096 2010-09-27 11:31 ssh-WXFGj2308
drwx------   2 anisha users    4096 2010-08-17 11:30 ssh-xLOJS3346
drwx------   2 anisha users    4096 2010-07-22 11:46 ssh-YdMHb3314
drwx------   2 anisha users    4096 2010-10-04 08:30 ssh-zpHbo2506
drwx------   2 anisha users    4096 2010-05-01 13:12 ssh-zRxKJ2349
drwx------   2 anisha users    4096 2010-04-22 14:26 ssh-ZWBlJ3274
drwxr-xr-x   2 anisha users    4096 2010-10-21 13:39 svoca.tmp
drwxr-xr-x   2 anisha users    4096 2010-10-13 09:06 unique
drwx------   2 anisha users    4096 2010-07-09 18:28 virtual-anisha.gVHK75
drwx------   2 anisha users    4096 2010-08-05 11:10 virtual-anisha.gWf4W2
drwx------   2 anisha users    4096 2010-07-16 13:04 virtual-anisha.JeO8Df
drwx------   2 anisha users    4096 2010-07-13 17:04 virtual-anisha.KmIFj3
drwx------   2 anisha users    4096 2010-07-13 17:04 virtual-anisha.LxTvO1
drwx------   2 anisha users    4096 2010-10-01 13:12 virtual-anisha.NKZ1R3
drwx------   2 anisha users    4096 2010-08-04 13:41 virtual-anisha.opy8BC
drwx------   2 anisha users    4096 2010-09-22 18:04 virtual-anisha.p1hUCP
drwx------   2 anisha users    4096 2010-07-09 18:28 virtual-anisha.pUxZK8
drwx------   2 anisha users    4096 2010-07-16 13:04 virtual-anisha.qb3usf
drwx------   2 anisha users    4096 2010-09-22 18:04 virtual-anisha.stXMJP
drwx------   3 anisha users    4096 2010-08-23 17:14 .wine-1000
-r--r--r--   1 root   root       11 2010-10-11 08:27 .X0-lock
drwxrwxrwt   2 root   root     4096 2010-10-11 08:27 .X11-unix
-rw-------   1 anisha users     422 2010-08-31 14:00 .xfsm-ICE-28G5HV
-rw-------   1 anisha users     422 2010-04-27 10:51 .xfsm-ICE-A8GPBV
-rw-------   1 anisha users     422 2010-04-27 10:51 .xfsm-ICE-KPSZBV
-rw-------   1 anisha users     422 2010-08-31 13:57 .xfsm-ICE-NJFUHV
srwxr-xr-x   1 anisha users       0 2010-06-25 13:16 xmms-ipc-anisha
-rw-r--r--   1 root   root      716 2010-07-29 15:57 xwlog
drwx------   2 anisha users    4096 2010-04-27 10:26 YaST2-06257-30LXdG
drwx------   2 root   root     4096 2010-05-07 15:41 YaST2-06932-nkmRFo
drwx------   2 root   root     4096 2010-05-07 15:41 YaST2-06932-qwgV3T
drwx------   2 root   root     4096 2010-04-20 17:21 YaST2-07937-88foo7
drwx------   2 root   root     4096 2010-04-20 17:21 YaST2-07937-BifvlW
-rw-------   1 root   root        0 2010-04-19 14:01 yast2-err-BL5Yah
-rw-------   1 anisha users       0 2010-04-19 14:28 yast2-err-pIzZyM
linux-uitj:/tmp #
 
Old 10-21-2010, 07:17 AM   #12
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Problem solved !

I followed this post: http://www.linuxquestions.org/questi...2/#post3232993

and when I rebooted the system, I saw:
Code:
anisha@linux-uitj:~> df -m
Filesystem           1M-blocks      Used Available Use% Mounted on
/dev/sda5                20158      8607     10528  45% /
udev                       999         8       991   1% /dev
/dev/sda6               150059     39556    102881  28% /home
anisha@linux-uitj:~>
 
Old 10-21-2010, 07:39 AM   #13
T0sh1r0
Member
 
Registered: Oct 2010
Posts: 51
Blog Entries: 1

Rep: Reputation: Disabled
I just gave a quick look but most of them look like temporary files used by some applications: gpg, evince, yast...

You know better than me what's installed on your system and should be able to know what you can delete or not. (If unsure, backups are never a bad idea before a cleanup ;-) )
 
Old 10-21-2010, 08:41 AM   #14
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by T0sh1r0 View Post
I just gave a quick look but most of them look like temporary files used by some applications: gpg, evince, yast...

You know better than me what's installed on your system and should be able to know what you can delete or not. (If unsure, backups are never a bad idea before a cleanup ;-) )
Thanks for following up, I'll read up on cleanup procedure on Linux.
 
Old 01-09-2011, 10:02 AM   #15
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731

Original Poster
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Unhappy The problem has reoccured

This time it is OpenSuse 11.2 in my home!

I have followed the post no. 12 solution and rebooted the system, this didn't help
I deleted the /tmp:
Code:
linux-dpjj:/tmp # ls
.ICE-unix  .X0-lock  .X11-unix  .xfsm-ICE-PKFOOV
linux-dpjj:/tmp # rm -rf
linux-dpjj:/tmp # ls
.ICE-unix  .X0-lock  .X11-unix  .xfsm-ICE-PKFOOV
These files reappeared even when I deleted them individually, HELP!!
 
  


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
no space left on device cjupiter2 Red Hat 2 09-03-2007 07:55 PM
No space left on device even though it has free space? enine Linux - General 8 05-30-2007 04:22 PM
No space left on device (28) AllanBC Linux - Software 3 04-03-2006 03:55 AM
no space left on device, but it has enough!!! help!!! sarah21 Red Hat 3 02-03-2005 08:37 PM
No space left on the device ashwinipahuja Programming 1 06-24-2004 12:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:54 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