Results 1 to 4 of 4
Hi,
I want to know how to find out wheather Linux is 32 bit or 64 bit os?
Regards,
Manoj...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-22-2009 #1Just Joined!
- Join Date
- Feb 2008
- Posts
- 28
linux 32 bit or 64 bit
Hi,
I want to know how to find out wheather Linux is 32 bit or 64 bit os?
Regards,
Manoj
- 02-22-2009 #2
Usually when you download a 64 bit ISO, it will have a name with 64 in the title, like this
http://ubuntu.univ-nantes.fr/ubuntu-...ktop-amd64.isoI do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
I'd rather be lost at the lake than found at home.
- 02-22-2009 #3
Open a terminal and type:
Mine shows:Code:uname -a
This i686 means it is 32bit. 386, 586 and 686 all mean 32bit.Linux ubuntu 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC 2009 i686 GNU/Linux
If yours is 64bit, it will say so in the output of uname -a.
- 04-26-2009 #4Just Joined!
- Join Date
- Apr 2009
- Posts
- 33
If you have the kernel sources and your machine supports the 64-bit
architecture and your current kernel is 32-bit you can rebuild it so as
it is 64-bit
In the config file, you can see it
# zcat /proc/config.gz > ~/config
# less config
you should see lines like
# CONFIG_64BIT is not set
CONFIG_x86_32=y
# CONFIG_x86_64 is not set
you can change it by first reconfiguring it:
cd /usr/src/linux-$(uname -r)
# make menuconfig
and then rebuilding it



