I downloaded and installed Ubuntu from the official site. However, I don't know if I installed the 32-bit or 64-bit version.
In Windows 7 I could right click My Computer and it listed which version it was.
Is there an easy way to check in Ubuntu?
I downloaded and installed Ubuntu from the official site. However, I don't know if I installed the 32-bit or 64-bit version.
In Windows 7 I could right click My Computer and it listed which version it was.
Is there an easy way to check in Ubuntu?
I know at least 2 ways. Open a terminal(Ctrl+Alt+T) and type:
uname -a
Result for 32-bit Ubuntu:
whereas the 64-bit Ubuntu will show:
Shorter version:
or
file /sbin/init
Result for 32-bit Ubuntu:
whereas for the 64-bit version it would look like:
Same for systems using systemd (16.04):
file /lib/systemd/systemd
Result for 64-bit:
Ubuntu 12.04+ with Unity
Details
, and select "Details" iconAlternative to get the above screen:
I know the terminal responses are good but I guess this is the GUI answer. :)
Ubuntu 11.04 with Unity
System info
, and select System Info iconA very easy and short way is:
Open the Terminal, write the following and press Enter.
The resulting number (in my case 64) is the answer.
Reference: How Do I Know if I’m Running 32-bit or 64-bit Linux?
Use the command:
You will typically get:
for 32-bit (or possibly i586 or i386), and:
for 64-bit.
Open terminal and try the
arch
command. If its output is x86_64 then it's 64 bit. If it says i686, i386, etc. then it's 32 bit.However, the best way to determine the architecture is to run the
arch
command and google the output.dpkg --print-architecture
command will display whether you have installed a 32 bit or 64 bit Ubuntu OS.On 64 bit systems
On 32 bit systems
`
Architecture Checker
Download Link
The script is basically this:
This will need to be in a executable text file, and
zenity
will need to be installed.Go to the System Settings and under the System section, hit Details. You will get every detail including your OS, your processor as well as the fact whether the system is running a 64-bit or a 32-bit version.
Open the Ubuntu Software Center and search for
lib32
. If that turns up any results, you are on a 64-bit install (the results are compatibility libraries for running 32-bit applications on a 64-bit install).Not exactly a better answer, but at least it doesn't require a terminal... ;-)
Edit
I found an even easier one: open Help -> About Mozilla Firefox and you will see it right there... ;-)
At the bottom it displays the "user agent string", e.g. on my 64-bit system:
or on my 32-bit system:
x86_64
is 64-bit,i686
is 32-bit(But this is still not the answer that should be there ;) )
The power button (top-most, extreme right) has an "About this Computer" option. :)