64-32 architecture checker also OS version


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting 64-32 architecture checker also OS version
# 1  
Old 09-21-2013
64-32 architecture checker also OS version

hello
is it possible to check systsme architecture and also system OS versions?
like
32 bit centos 5
64 bit centos 6


how about cpu versions?
# 2  
Old 09-21-2013
Try
Code:
uname -m

# 3  
Old 09-21-2013
i know uname
i want to check os and architecture with if
like if users machine is 32 bit and also centos version 5
so wget pack32-5
and for 64 and centos 6 same
# 4  
Old 09-21-2013
I guess you parse output of u name -m
# 5  
Old 09-21-2013
i dont need the output of uname -m
actually i had written this part last year now im thinking to new way IF YOU KNOW.

Code:
OS=`cat /etc/redhat-release|awk '{print int($3)}'`
             bit=`uname -i`
                    if [ $bit = "i386" ] || [ $bit = "i686" ] || [ $bit = "i586" ] ; then
                             rpm -ivh $MIRROR/packages/$OS/i386/*
                     else
                            rpm -ivh $MIRROR/packages/$OS/x86_64/*

# 6  
Old 09-21-2013
Quote:
Originally Posted by nimafire
how about cpu versions?
Code:
# cat /proc/cpuinfo

# 7  
Old 09-24-2013
Code:
if grep -q '^flags.* lm ' /proc/cpuinfo
then
    echo "64 bit processor"
else
    echo "32 bit processor"
fi

Of course, this doesn't mean the OS is 64-bit just that the processor supports 64 bit
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

Nu Html Checker at w3.org

Started out today with around 350 errors or warnings using the Nu Html Checker. After working nearly 6 hours, it's down to only 6 (5 errors and 1 warning). What an accomplishment! LOL https://www.unix.com/members/1-albums215-picture943.png (2 Replies)
Discussion started by: Neo
2 Replies

2. Shell Programming and Scripting

Lottery number checker

hi , Let me put it in a different way with words. Assume the lottery have numbers from 1-50. Out of this 50 numbers, I am going to pick up only 35 numbers randomly. so, my total numbers would be 35 numbers shuffled from nos. I have list of winning numbers in file. Now, the... (9 Replies)
Discussion started by: gsiva
9 Replies

3. Shell Programming and Scripting

Lottery result checker

So, i made a simple lottery number generator like this: for i in `seq 10`; do seq 1 35 | shuf -n 7 | sort -g | tr '\n' ' ' ;echo; done i've file with winning numbers: Eg:1 10 15 20 25 30 35 2 6 10 14 18 22 26 My problem here is how to compare or check if my generated numbers are match... (10 Replies)
Discussion started by: PuLPi
10 Replies

4. Debian

Getting a better spell checker

Guys I am new to Linux in general and want to know what is the use of the following files-: /usr/share/dict/words /usr/share/dict/words.pre-dictionaries-common Are they used by the spell checker to find potential typos ? If so are there any better larger word lists out there ? I am sure... (2 Replies)
Discussion started by: sreyan32
2 Replies

5. Homework & Coursework Questions

spell checker script

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: When "niuspell" is invoked from the command line it reads "file" and checks it for spelling of the words it... (1 Reply)
Discussion started by: Jeffthrow5
1 Replies

6. Shell Programming and Scripting

Date format checker

Hi I want the user to enter a date in the format 16-APR-2000 . I need to put validations for that in my script .. Please help Thanks and Regards Ultimatix (1 Reply)
Discussion started by: ultimatix
1 Replies

7. Programming

Proxy Checker in C

Hello Everyone Im planning to make a C program to check a proxy server if it is working or bot, test the proxy speed ,response time , as well as a proxy type. i'm learning using libcurl right now to fetch http headers. do you guys have some links about how to check proxy headers?. Thank you. ... (0 Replies)
Discussion started by: magictalong
0 Replies

8. Shell Programming and Scripting

spell checker program

2.I need shell script to list all the 'words' in a given file (text) that are not listed in a specified dictionary. Let us call this utility 'spell-check'. 'spell-check' will be called as follows. $ spell-check letter Lucent UNIX UNIX OS a $ dictionary words are listed in lower... (2 Replies)
Discussion started by: ksjanakan
2 Replies
Login or Register to Ask a Question