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: May 2015
How to get readable output from df on HP-UX
df -Pk | awk ‘ BEGIN {print “Filesystem Mount Point Total GB Avail GB Used GB Used” print “———————————– ————————- ———- ———- ———- —–“} END {print “”} /dev/ || /^[0-9a-zA-Z.]*:\// { printf (“%-35.35s %-25s %10.2f %10.2f %10.2f %4.0f%\n”,$1,$6,$2/1024/1024,$4/1024/1024,$3/1024/1024,$5) }’
Posted in Linux
Comments Off on How to get readable output from df on HP-UX
How to tell if a system is virtual or physical (linux)
sudo dmidecode |grep “Product Name:” |head -1 If the above command doesn’t work: dmidecode |grep -i “vm” will return nothing on a virtual system and something like “VME (Virtual mode extension)” on a host system.
Posted in Linux
Comments Off on How to tell if a system is virtual or physical (linux)
Analyzing kernel core dumps on Red Hat
On a Red Hat system, look for the crash command: http://magazine.redhat.com/2007/08/15/a-quick-overview-of-linux-kernel-crash-dump-analysis/
Posted in Linux
Comments Off on Analyzing kernel core dumps on Red Hat
Rough comparison of BASH and Kornshell
• BASH is much easier to set a prompt that displays the current directory. To do the same in Kornshell is hackish. • Kornshell has associative arrays and BASH doesn’t. Now, the last time I used Associative arrays was… Let … Continue reading
Posted in Linux
Comments Off on Rough comparison of BASH and Kornshell