Day: August 11, 2006

  • View and kill processes in Linux and Solaris

    On *nix system, the ps command is kind of like Windows task manager. It provides running processes information. Once you find the process ID, you can kill it using kill command. On Linux machines, you can type ps ux to list all your own running processes. The second column, PID, is Process Identifier. By looking…