root bin

Saturday, 5 October 2013

Passwordless ssh login

›
You can login to a remote Linux server without entering password in 3 simple steps using ssky-keygen and ssh-copy-id as explained in this a...
Friday, 4 October 2013

Install CSF proxy on Debian 6

›
Step 1: Downloading Config Server Firewall is not currently available in Debian or Ubuntu repositories, and has to be downloaded from the...

Find 10 largest files and directories in Linux

›
To find the largest 10 files (linux/bash): find . -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} T...
Sunday, 9 June 2013

mysql indexing notes

›
Show indexes of a table SHOW INDEX FROM table_name; Create index CREATE INDEX index_name ON table_name ( col_ame )    Drop i...
Saturday, 8 June 2013

Slow query log parser

›
A very nice MySQL log analyzer tool from  Percona #!/usr/bin/perl # # Nathanial Hendler # http://retards.org/ # # 2001-06-26 v1.0 # # ...
Friday, 31 May 2013

MariaDB master/slave Replication tutorial

›
{Note: There are no shortage of replication tutorials but I found this one particularly strightforward to follwo. It is originally written ...
2 comments:
‹
›
Home
View web version
Powered by Blogger.