How do I determine whether I run 32 bit oder 64 bit?

Hi guys,
this is probably a very simple question. How do I find out whether my processor runs 32bit or 64bit? Using the Terminal, I can't find that piece of information with system_profiler.
Thank you in advance!

Use the apropos command to list system commands that you do not know exist. For example I used "apropos CPU" and it returned arch. arch is like a manaul way to tell your Mac to use one type of CPU archetecture over another. It's presedence.
This sound dangerous. But it does not really address your question.
Typing arch returns i386 in standard output.
There is a AppleDev pages on this topic -
http://developer.apple.com/documentation/Darwin/Reference/Manpages/man3/arch.3.h tml.
At least I looked.

Similar Messages

  • I can't shut down my MacBook Pro.  I'm getting the following message: "The Finder can't quit because some operations are still in progress." How can I determine what is running?

    I can't shut down my MacBook Pro.  Each time I try, I get the following message: "The Finder can't quit because some operations are still in progress."  How can I determine what is running?

    Yea,
    I bought an original CRT iMac  two day's before  they were launched, which got the reseller into trouble, and had it replaced by APPLE.
    This was a great learning process for me dealing with the glitches. :-)
    I LOVE MAC. Now own 4 and on my 10th. in 15 years + 7  bought for family.
    Cheers,
    Tom

  • How do I determine whether I have PCI Express v1.1 or v2.0?

    This article in Mac Fixit states that computers with PCI Express v1.1 slots will NOT be able to take full advantage of OpenCL in Snow Leopard:
    http://www.macfixit.com/article.php?story=20090612121357227
    ... In terms of PCI Express, My Mac Pro is on the cusp. PCI 2.0 was announced in January 2007 and presumably made it's way onto the assembly line a few months after that. I bought my refurbished Mac Pro in June 2007. I can't determine in the System Profiler if I have PCIv1.1 or v2.0. Does anyone know how to find out? MacTracker and machistory.com haven't answered the question. It seems some of the MacPro1,1 models shipped with v1.1 and some with v2.0. How do I determine what I have? Thanks for your help!
    SPECS FROM MY SYSTEM PROFILER (SERIAL RM727......)
    GRAPHICS/DISPLAYS
    NVIDIA GeForce 7300 GT
    Chipset Model: NVIDIA GeForce 7300 GT
    Type: Display
    Bus: PCIe
    Slot: Slot-1
    PCIe Lane Width: x16
    VRAM (Total): 256 MB
    Vendor: NVIDIA (0x10de)
    Device ID: 0x0393
    Revision ID: 0x00a1
    ROM Revision: 3008
    PCI CARDS
    NVIDIA GeForce 7300 GT
    Name: NVDA,Display-B
    Type: display
    Bus: PCI
    Slot: Slot-1
    Vendor ID: 0x10de
    Device ID: 0x0393
    Subsystem Vendor ID: 0x0000
    Subsystem ID: 0x0010
    ROM Revision: 3008
    Revision ID: 0x00a1
    Link Width: x16

    How do I determine whether I have PCI Express v1.1 or v2.0?
    Hi,
    Open Apple System Profiler (About this Mac:More info) and look at the Hardware: Model Identifier. If it says Mac Pro 1,1 or Mac Pro 2,1 you have PCIe v1.1 slots.
    http://www.amug.org/amug-web/html/amug/reviews/articles/intel/macpro/
    If it says Mac Pro 3,1 you have PCIe v1.1 in slots 3 and 4 and PCIe v2.0 in slots 1 and 2.
    http://www.amug.org/amug-web/html/amug/reviews/articles/intel/macpro-2008/
    If it says Mac Pro 4,1 you have PCIe v2.0 in all four slots.
    http://www.amug.org/amug-web/html/amug/reviews/articles/intel/macpro-2009/
    Hope that helps!

  • How to Quickly Determine Whether or not Specific Hotfixes or Updates are Installed?

    I have a handful of applications that require specific hotfixes or updates to be installed.  An excellent example of this is Internet Explorer 11 which has
    9 prerequisites. (well only 6 are required, the remaining 3 prerequisites provide a better experience.)
    Is there a reliable & fast way of checking for whether or not a specific hotfix and/or patch/update has been installed? 
    I am aware of `wmic qfe` but
    According to
    this, it will only "retrieve updates for Windows OS itself and its components (such as Windows Internet Explorer (IE) or Windows Server roles and features)"
    Even if I'm checking for just 1 hotifx, it takes roughly 6 seconds to retrieve that information.  When we're checking for dozen or two hotfixid's that quickly adds up. `Measure-Command {wmic qfe where "hotfixid='kb982018'"}`  So
    for IE11, we're looking at nearly 1 minute of waiting.  Nonsense.
    Note: I'm not asking "is my system patched?" nor am I asking for a report of installed patches.  I could use WSUS, SCCM, MBSA and a multitude of other solutions for that.  I need something scriptable that will install a specific prerequisite
    at runtime, so I'm looking for a batch/vbscript/powershell solution that'll be quick, like 1 second quick, not 5+ per KB.

    Thanks.  I'm no expert.  I don't have a slew of characters before or after my name.  This isn't an I'm right/you're wrong situation.  I don't claim to know everything - just trying to mitigate the questions I know I'm going to be asked.
    Prior to posting, I saw
    your post here (which is great I might add) which works, and it will work for determining whether or not a machine has a specific update/hotfix installed.  But it consistently took 6 seconds to retrieve a single result on our assets.  This
    was on a Core i7 with 8GB and an SSD running Windows 8.1 Pro.  This doesn't bode well for our day-to-day systems which are Core 2 Duo's with 4GB and spindle disks.  Unless my math is wrong, if I'm checking for all 6 possible required IE11 prereqs
    thats 36 seconds of wait time just for WMI queries.  I'm just shocked it takes so long which made me wonder whether or not there was a faster retrieval method.
    Why would I think there's a faster method?  The closest example I can think of might be a software install.  Sure, I can query WMI, but that too takes a while.  But I could a
    `reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{product code}` or `reg query HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla Firefox 29.0.1 (x86 en-US)`
    then check errorlevel to determine if the product was installed, right?  Or take it a step further & check the `/v Version` to make sure it matches what I expect it to be, right?   We don't have fancy tools here like Altiris or SCCM
    :(  Reg query just appears to be significantly faster than wmic/gwmi in that specific scenario.  That gave me hope there
    might be a faster option for checking for installed updates & hotfixes.
    IE11
    tries to install the proper prerequisites.  If that fails, they'll have to be done manually. 
    And it just so happens that the IE11 install
    does fail in our environment when we don't install the manually.  Fortunately we're not ready to deploy IE11, so there's no rush to push IE11.  I was merely using IE11 as an example because by virtue of the articles existence, this
    is a possible real-world scenario.  If I know that we can safely regression test the 6 patches for IE11, and just have it be an optional installation for the users that want or need it, then I can add the prerequisite logic to the script to help ensure
    a successful installation.  Again, an IE11 deployment isn't the goal here.  IE11 is just the example.

  • How should we determine whether a business document is edi enabled

    Hi,
    One of my requirement is to find whether a business document is edi enabled or not.Example : Sales Order,ASN,PO,Planning Schedule,Warehouse Shipping Order,Warehouse Shipping Advice.The requirement is we should be able to send these documents to/from SAP system.
    Custom development is not preferred.Could any one help me in saying how should I research whether a these documents are EDI enabled or not.
    Regards ,
    Nagaraju Donikena.

    Nagaraju,
    If you are talking about IDOCs for the documents that you have specified, then they are NOT EDI enabled. EDI is nothing but a specific format.
    You might need a middleware.
    Regards,
    Ravi
    Message was edited by: Ravikumar Allampallam

  • How do I determine whether a serial number is still good?

    I have two serial numbers for Final Cut Studio, and one of them has been used. How do I determine which number is still good without installing the software?

    You can't. The only way you can tell if a serial number is already used is if you try to launch FCP and another machine on the same network already has FCP open with the same SN.  If the other machine isn't on...or not on the network, then FCP will launch fine. This is how you can install one copy of FCP with one SN onto two machines...a tower and a laptop...but use only one at a time...per the license agreement.

  • HT3696 how can I determine whether I am running 64 or 32 bit on my i7 mac

    I have a i7 that is 64 bit I want to run in 32 bit how can I view which bit its running ?

    If it's OS X 10.7 it's 64 bit OS, if you have 32 bit Intel programs they can run, but only use half the registers, swtich to 64 bit versions of your programs when avaialble.
    No need to worry about anything.
    Having a issue?

  • How do I determine whether the current page in Forms is the last page.

    I have a requirement of printing amount in words using SPELL_AMOUNT Funtion Module, in SAP Scripts.
    When I have only one Item Line, I am able to successfully, print the amount.
    The moment i have line items pouring to the next page, I see that the I am unable to retrieve the spelled amount from the Function Module.
    I think may be i need to find out if the current page is the last page, and if it is so, print the amount on the last page, .i.e., the page where the item lines have overflowed to. How do i find this out.
    Can anybody, suggest something.
    Regards,
    Owais...

    I wonder if you could do something like this.  Wrap your logic with this IF statement.
    /: IF &PAGE& = &SAPSCRIPT-FORMPAGES&
    /: ENDIF
    Regards,
    Rich Heilman

  • How can I determine what is running in the background on my ipad?

    I have had my Ipad for 6 months.  I use wi-fi and cellular 250MB data plan.  I have never exceeded 250 MB in a month.  This month I ran out of data in 5 days.  Also, I usually get a couple of days before I have to recharge.  Now I need to recharge in less than a day.  The only thing I can think is something is running in the background.  Is there a way to see what is running in the background (this is my first apple product, I have always used windows products so I am not sure I am using the apple nomenclature),  I have rebooted so I will see if that fixes the problem.  I am curious to see what is happening in the background

    A double click on the Home button will reveal a tray containing all apps that are currently running (suspended?).
    Side swiping this will reveal as many as are active, with a swipe to the right when on the first display will reveal further controls for the iPad, mainly relating to the iPod part, but also containing a screen lock option I believe.
    Click and hold any one of them till they 'jiggle' and show a - you can then click this to remove it, relaunching the app as required in the normal way.
    Regards,
    Colin R.
    Message was edited by: Colin Robinson
    PS Tap the Home button once to get out of this mode.

  • When I close my IPAD it continues to run intermittently. This is something new. How do I determine what is running.    y

    somthing continues to run when I close my macbook. It did not do this before 2 days ago. Any ideas?

    See:
    * http://kb.mozillazine.org/Preferences_not_saved

  • How can I determine whether to use an event structure or a case structure?

    I'm starting a large project and need a state machine. I can't decide on whether to use a case structure or event structure. Is there an article  or other information that describes criteria for selecting between the two approaches?
    Thank you,
    Chuck
    Solved!
    Go to Solution.

    Hi Chuck,
    Well case structures and event structures differ quite alot.  Here's a link for indepth information on Event Structures, and using them in state machines: http://zone.ni.com/devzone/cda/tut/p/id/2962.  Hopefuly this will help you make up your mind.  
    Let me know if you have any questions after reading it. 
    Regards,
    Dominic Walker
    Cardiff University
    Electrical and Electronic Engineering Student

  • How can I determine whether my Exchange 2007 32-bit or 64-bit

    I want to apply SP1 and would like to know which is the correct SP1 for me.
    thanks in advance.
    Omar Nawaz

    Exchange 2007 is 64 bits only.
    For production, yes. But for labs and testing, there is a 32-bit version:
    Download Exchange 2007 Evaluation
    http://www.petri.co.il/download_exchange_2007_evaluation.htm
    Exchange Server 2007 Service Pack 3
    http://www.microsoft.com/downloads/details.aspx?FamilyID=1687160b-634a-43cb-a65a-f355cff0afa6&displaylang=en
    MCTS: Messaging | MCSE: S+M | Small Business Specialist

  • How to determine Frozen and Running apps?

    For the purpose of saving battery life, how do we determine frozen and running apps? Is there a tool available for this?

    Thanks HangTime! What do I multiply it by?
    Multiply it by the seconds I counted?
    This is going to help TONS going forward.
    Message was edited by: Macthang

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • How can I determine Bus Speed

    Hi all
    Dumb question #2.
    The beast is a G4 MDD with dual 450MHz chips and the model number is M5183 and the machine number as per System Profiler is 406. Serial number is SG03402HK5W
    Got all that.
    I need to determine Bus Speed so I can buy the proper Ram Cards for this machine. It was supplies from the eBay seller with PC133 chips in there and surprisingly enough it runs 9.2.1 just fine.
    How can I determine whether my machine is a 100MHz or 133MHz.
    I suspect my Machine is not an MMD but a Gigabit Ethernet with dual 450 processors. Is this correct?
    John Fenn

    You can find all the G4 specs here to identify your machine and get the RAM specs and bus speed.
    -Douggo
    G4 Dual 867 MDD   Mac OS X (10.4.3)   1.25GB RAM; 3 HDD's; Pioneer 106D; 20" Cinema Display; 30GB iPod Photo

Maybe you are looking for

  • How do i remove an existing email account

    Long story short, i bought the tour for my son, he didnt like it so i traded him my droid for the blackberry. His email was already in the phone so i hid hit so i wouldnt see it but for some reason it is still popping up with emails. I am trying to d

  • Sender File Adapter and content conversion

    Hi, How can we remove the last line from the file using content conversion? The last line should not be read from the input file. Like for the first line we can use Document Offset .......similarly do we have any option for the last line?

  • Labview using access database

    "I need to use labview in order to read and write to an access database (8 columns per entry). I'm not too familiar with the program, but i know that we have the database connectivity toolset and the sql toolset installed. Does anyone have any simple

  • XI  pdf materials

    Hi ..      If anybody is having the pdf materials of the XI(Related to sap basis concepts), then please forward them to my email id: <b> email ID removed</b> I will be thankfull to you.. Regards Abhi Message was edited by: SDN PI/XI Forum Moderator  

  • No padlock reflects to show secure website since upgrading to firefox 4.

    Since upgrading to Firefox 4 I can't find the padlock anywhere which shows that I am on a secure website.