After the Mashed Museum day yesterday, I finally got in gear to see what the OpenCalais service could do to enrich the tags upon our blog post archives and forthcoming posts. To do this I used two separate plugins that have already been written and tested out by others (i’ll write about this in a …
Category Archives: OS
Install php-pear on linux
APC, Alternate PHP Cache, is now the most maintained free/open source op-code cache, and is being used more and more as it emerges to be the most stable.
Linux task manager like windows
‘ps’ actually only shows you the tasks started in that shell. To see all running tasks, use: Code: ps aux You can then use ‘kill PID’ or ‘killall <process-name>’. Note that the latter will, of course, end all instances of that application.
Update Centos From SSh
yum update
Remove – Uninstall ASL Atomic Secure Linux
1) vim /etc/yum.repos.d/asl.repo 2) Delete all lines from file 3)Save & quit the doc :wq more command for VIM http://www.prosoxi.gr/2008/08/25/basic-vi-features-vim/
Basic “vi” features VIM
Basic “vi” features One edits a file in vi by issuing the command: vi file-to-edit.txt The vi editor has three modes, command mode, insert mode and command line mode. Command mode: letters or sequence of letters interactively command vi. Commands are case sensitive. The ESC key can end a command. Insert mode: Text is inserted. …