Name mv – move (rename) files
Category Archives: Linux
Linux command Reboot – Restart linux
Command Library NAME halt, reboot, poweroff – stop the system. SYNOPSIS /sbin/halt [-n] [-w] [-d] [-f] [-i] [-p] [-h] /sbin/reboot [-n] [-w] [-d] [-f] [-i] /sbin/poweroff [-n] [-w] [-d] [-f] [-i] [-h] DESCRIPTION Halt notes that the system is being brought down in the file /var/log/wtmp, and then either tells the kernel to halt, reboot …
Install PHP PECL_HTTP Support
pecl list-all pecl install pecl_http configuration option “php_ini” is not set to php.ini location You should add “extension=http.so” to php.ini
Install Curl on linux
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 …
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.