A Quote from qotd.org
Parents rarely let go of their children, so children let go of them.
Mitch AlbomArchives
- September 2017
- June 2017
- February 2017
- June 2016
- December 2015
- September 2015
- July 2015
- June 2015
- January 2015
- November 2014
- August 2014
- June 2014
- May 2014
- April 2014
- February 2014
- January 2014
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- March 2013
- February 2013
- January 2013
- November 2012
- August 2012
- June 2012
- February 2012
- January 2012
- December 2011
UserOnline
Recent comments
Monthly Archives: August 2013
Handling arrays in bash scripts
You can create an array by using the following command: arrayname=( value1 value2 …. valueN ). Here we create an array with 5 elements. myarray=( “string 1” “string 2” “string 3” “” “string4″ ) or myarray=( [0]=”string 1″ [1]=”string 2” … Continue reading
Posted in Bash, Linux
Leave a comment
Check the load balancing mode of bonded interfaces in Linux
To check the current lb mode execute the command below: cat /sys/class/net/<interface name>/bonding/mode
Posted in Beginner, Linux
Leave a comment