Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Cleaning /tmp
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
enx89
Apprentice
Apprentice


Joined: 21 Mar 2003
Posts: 192
Location: Milano

PostPosted: Mon Apr 21, 2003 10:03 am    Post subject: Cleaning /tmp Reply with quote

Da un po' di tempo quando booto il sistema ci mette un sacco di tempo a fare il Cleaning di /tmp. Perchè? Ci mette anche 5 minuti!
Grazie ENx
Back to top
View user's profile Send private message
Ginko
Guru
Guru


Joined: 01 May 2002
Posts: 371
Location: nearby my linux laptop

PostPosted: Tue Apr 22, 2003 11:45 am    Post subject: Reply with quote

Hai per caso un proxy che ha la cache su /tmp o qualcosa di simile?

A me e' successo che avevo messo la cache del reverse proxy su /var/tmp, che veniva pulita ad ogni reboot.

Visto la grande quantita' di directory nella cache, anche se non c'erano file da cancellare, la sola ricerca impiegava parecchi minuti.

--Gianluca
Back to top
View user's profile Send private message
enx89
Apprentice
Apprentice


Joined: 21 Mar 2003
Posts: 192
Location: Milano

PostPosted: Tue Apr 22, 2003 8:38 pm    Post subject: Reply with quote

La directory /tmp non l'ho toccata, e non un proxy o qualcosa che faccia della cache molto grossa, i soliti programmi di linux.
Cmq non mi succede sempre, qualche rara volta lo fa subito e non ne capisco il perchè :(
ENx
Back to top
View user's profile Send private message
cerri
Bodhisattva
Bodhisattva


Joined: 05 Mar 2003
Posts: 2957
Location: # init S

PostPosted: Thu Apr 24, 2003 5:55 am    Post subject: Reply with quote

Cosa c'e' nella tua tmp?
_________________
Enjoy your freedom.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
<----------------------->
Andrea Cerrito
Back to top
View user's profile Send private message
enx89
Apprentice
Apprentice


Joined: 21 Mar 2003
Posts: 192
Location: Milano

PostPosted: Thu Apr 24, 2003 6:56 am    Post subject: Reply with quote

cerri wrote:
Cosa c'e' nella tua tmp?

Booooooooooohh!!!! Ci sono i file temporanei che mettono i vari programmi che uso, suppongo! Niente di particolare, i soliti kde (e relativi programmini annessi), k3b per masterizzare, phoenix per il web e Eclipse per sviluppare.
Questo e quanto :( :( :( . Qualche tempo fa ci metteva sempre pochissimo a fare il "Cleaning /tmp directory" ma e` da un po' di tempo che spesso ci mette una vita! Ci puo` essere qualche programma che impesta la suddetta directory?
ENx
Back to top
View user's profile Send private message
Ginko
Guru
Guru


Joined: 01 May 2002
Posts: 371
Location: nearby my linux laptop

PostPosted: Thu Apr 24, 2003 7:01 am    Post subject: Reply with quote

enx89 wrote:
Ci puo` essere qualche programma che impesta la suddetta directory?


Code:
ls -lR /tmp


magari mettilo su /etc/conf.d/local.stop e local.start ridirezionando l'output su un file (non in /tmp :-) )

--Gianluca
Back to top
View user's profile Send private message
enx89
Apprentice
Apprentice


Joined: 21 Mar 2003
Posts: 192
Location: Milano

PostPosted: Fri May 02, 2003 9:57 am    Post subject: Reply with quote

finalmente ho capito dove sta l' inghippo!! :D :D :D All' avvio viene fatto eseguire
Code:
/etc/init.d/bootmisc
che a sua volta fa il
Code:
Cleaning /tmp directory

Questo è il codice responsabile
Code:
#                                                                                                                                                     
                # Clean up /tmp directory                                                                                                                             
                #                                                                                                                                                     
                ebegin "Cleaning /tmp directory"                                                                                                                       
                rm -f /tmp/.X*-lock /tmp/esrv* /tmp/kio* /tmp/jpsock.* /tmp/.fam* &>/dev/null                                                                                                                                                                                                     
                rm -rf /tmp/.esd* /tmp/orbit-* /tmp/ssh-* /tmp/ksocket-* /tmp/.*-unix &>/dev/null                                                                                                                       
                # Make sure our X11 stuff have the correct permissions                                                                                                 
                mkdir -p /tmp/.{ICE,X11}-unix &>/dev/null                                                                                                                                                           
                chown root.root /tmp/.{ICE,X11}-unix &>/dev/null                                                                                                                                                                                                                                                         
                chmod 1777 /tmp/.{ICE,X11}-unix &>/dev/null                                                                                                                                                                                                               
                eend 0

lo scriptino si blocca per un po' di tempo qui
Code:
chown root.root /tmp/.{ICE,X11}-unix &>/dev/null
, ma non capisco perchè. Ho risolto commentando quella linea, che tanto mi sembra inutile visto che quando crea le directory
Code:
mkdir -p /tmp/.{ICE,X11}-unix &>/dev/null   
il proprietario e il gruppo sono root!
Grazie a tutti per l' aiuto :D :D :D :D :D
ENx
Back to top
View user's profile Send private message
cerri
Bodhisattva
Bodhisattva


Joined: 05 Mar 2003
Posts: 2957
Location: # init S

PostPosted: Fri May 02, 2003 3:35 pm    Post subject: Reply with quote

E' grave.
E' un permesso importante quello.
_________________
Enjoy your freedom.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
<----------------------->
Andrea Cerrito
Back to top
View user's profile Send private message
enx89
Apprentice
Apprentice


Joined: 21 Mar 2003
Posts: 192
Location: Milano

PostPosted: Fri May 02, 2003 3:59 pm    Post subject: Reply with quote

cerri wrote:
E' grave.
E' un permesso importante quello.

Imposta le il proprietario e il gruppo delle directory .X11-unix e .ICE-unix a root, ma avendola commentata il sistema funziona lo stesso! Putroppo non so perchè ci metta tanto tempo e l'unica soluzione che ho trovato è quella di commentare la linea
Code:
chown root.root /tmp/.{ICE,X11}-unix &>/dev/null

ENx
Back to top
View user's profile Send private message
Peach
Advocate
Advocate


Joined: 08 Mar 2003
Posts: 3686
Location: London, UK

PostPosted: Fri May 02, 2003 3:59 pm    Post subject: Reply with quote

cerri wrote:
E' grave.
E' un permesso importante quello.


e' Il Permesso
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum