Archives
- October 2024
- August 2024
- June 2024
- May 2024
- February 2024
- December 2023
- October 2023
- June 2023
- April 2023
- August 2016
- June 2016
- May 2016
- February 2016
- December 2015
- October 2015
- May 2015
- April 2015
- January 2015
- December 2014
- November 2014
- October 2014
- January 2014
- December 2013
- November 2013
- October 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- April 2012
Categories
Meta
Monthly Archives: August 2013
Comparison of different package managers
https://wiki.archlinux.org/index.php/Pacman_Rosetta
Posted in Linux
Comments Off on Comparison of different package managers
PostgreSQL examples
http://darthdeus.github.io/blog/2013/08/19/postgresql-basics-by-example/ To look at a stored procedure: Use this to find the procedure name: SELECT routine_schema As schema_name, routine_name As procedure_name FROM information_schema.routines; Then use this from the psql prompt to read the sql: SELECT pg_get_functiondef(( SELECT oid FROM pg_proc … Continue reading
Posted in Linux
Comments Off on PostgreSQL examples
Editing the siteurl in the database of a wordpress site
use dbname; update wp_options set option_value = http://www.domain.com where option_name = ‘siteurl’ and option_value = ‘http://www.olddomain.com’;
Posted in Linux
Comments Off on Editing the siteurl in the database of a wordpress site
Difference between which and whereis
#Which command checks the user’s path: which iptables /sbin/iptables #Whereis command checks a list of standard Linux places whereis iptables iptables: /sbin/iptables /usr/share/man/man8/iptables.8.gz
Posted in Linux
Comments Off on Difference between which and whereis