Re: how to identify 32 vs 64 bit CPU?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> ----- Original Message ----
> From: Rick Stevens <rstevens@xxxxxxxxxxxx>
> To: For users of Fedora <fedora-list@xxxxxxxxxx>
> Sent: Thursday, August 9, 2007 12:24:25 PM
> Subject: Re: how to identify 32 vs 64 bit CPU?
> 
> On Thu, 2007-08-09 at 17:50 +0100, Chris Jones wrote:
> > > How about uname?  `uname -a` gives all of it.  See `man uname` for subsets
> > > and the ordering of the "-a" output.  If you need more than just x86, I
> > > think any solution will be a bit involved.
> > 
> > AFAIK, uname only tells you what you are running, not what you *could* 
> > run. I.e. you couldn't tell the diffrence between a 32 bit os on a 64 
> > bit capable machine or a 32 bit only machine.
> 
> If you get a result from 
> 
>     cat /proc/cpuinfo | grep " lm "
> 
> you're on a 64-bit processor regardless whether it's a 32- or 64-bit OS.
> If you want to know if the OS is 64-bit, then a result from 
> 
>     uname -a | grep 64
> 
> would indicate a 64-bit OS.
> 

Stupid shell script:

    #!/bin/bash
    echo -n "Running "
    RES=`uname -a | grep 64`
    if [ $? -eq 0 ]; then
        echo -n "64-bit "
    else
        echo -n "32-bit "
    fi
    echo -n "operating system on a "
    RES=`cat /proc/cpuinfo | grep " lm "`
    if [ $? -eq 0 ]; then
        echo -n "64-bit "
    else
        echo -n "32-bit "
    fi
    echo "machine"

Have fun, gang.
----------------------------------------------------------------------
- Rick Stevens, Principal Engineer             rstevens@xxxxxxxxxxxx -
- CDN Systems, Internap, Inc.                http://www.internap.com -
-                                                                    -
-        Brain:  The organ with which we think that we think.        -
----------------------------------------------------------------------

Rick,

   This is not a "Stupid Shell Script" it is an AWESOME shell script that does the job it is intended for.  Thank you for providing excellent advice through the years.  Along with several others on this list whose names I think not need mention make this list one of the best.  I always enjoy reading these kinds of posts.  

Regards,

Antonio 

[olivares@localhost Documents]$ uname -ipr
2.6.22.1-41.fc7 athlon i386
[olivares@localhost Documents]$ cat /etc/fedora-release 
Fedora release 7 (Moonshine)






       
____________________________________________________________________________________
Sick sense of humor? Visit Yahoo! TV's 
Comedy with an Edge to see what's on, when. 
http://tv.yahoo.com/collections/222

-- 
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux