sharfah@starship:~> rpm -q glibc glibc-2.3.3-98.73
Tuesday, September 23, 2008
Find Your Version of glibc
This is how you can find the version of glibc installed on your Linux machine:
Thursday, September 04, 2008
Howto: Sign Automated Emails [Unix]
This summary is not available. Please 
    
   click here  to view the post.
Labels:
programming,
scripting,
UNIX
Tuesday, September 02, 2008
How to Find Your Solaris Version
If you are developing an application which runs on Solaris, you may need to know which version of Solaris it is, so that you can use the correct JRE build, Sybase libraries etc.
You can do this using the 
uname command which prints out useful system information. In order to get just the version number (release level) use the -r flag:
sharfah@starship:~> uname -r 5.10Example:
OS=`uname`
OS_VERSION=`uname -r`
if [ "$OS" = "SunOS" ]
then
 JAVA=/utils/solaris/java_${OS_VERSION}/bin
elif [ "$OS" = "Linux" ]
then
 JAVA=/utils/linux/java/bin
else
 echo "Unknown operating system $OS"
fi
If you want more details on your Solaris version, look at /etc/release.
sharfah@starship:~> cat /etc/release
                        Solaris 10 8/07 s10x_u4wos_12b X86
           Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
                        Use is subject to license terms.
                            Assembled 16 August 2007
Subscribe to:
Comments (Atom)