matar processos zombies
A zombie process doesn't react to signals because it's not really a process at all. A zombie is already dead. Therefore it cannot be killed. ;-)
If you want too kill the parent process of zombie process then do the following:
ps xal | grep '[z]ombie' The third field on each line is the parent pid. then use normal kill command for that.
http://forums.cpanel.net/f5/how-kill-zombie-process-server-62738.html
converter nrg para iso
debugging drupal
debian php5 e fastcgi
How a Corrupted USB Drive Was Saved by GNU/Linux
datastudio
depois de instalado o software os controladores dos sensores encontram-se numa pasta na instalação.
ver também:
http://www.pasco.com/support/technical-support/technote/techIDlookup.cf…
http://www.pasco.com/support/downloads/datastudio-update.cfm
hard disk drive repair tools
juntar vários documentos do word num só
Sub MergeDocs()
Dim rng As Range
Dim MainDoc As Document
Dim strFile As String
Const strFolder = "C:\Book\Chapters\" 'change to suit
Set MainDoc = Documents.Add
strFile = Dir$(strFolder & "*.doc") ' can change to .docx
Do Until strFile = ""
Set rng = MainDoc.Range
rng.Collapse wdCollapseEnd
Selection.InsertBreak Type:=wdPageBreak ' inserir quebra de página
rng.InsertFile strFolder & strFile
strFile = Dir$()
Loop
End Sub