우분투(Ubuntu) 32비트/64비트 확인

현재 사용하고 있는 우분투(Ubuntu) 버전이 궁금할 때가 있습니다.
그럴 때는 콘솔창에서 다음과 같이 입력하면 확인 가능합니다.

# uname -a
Linux snowdeer-desktop 2.6.32-24.generic #39-Ubuntu SMP Wed Jul 28 05:14:15 UTC 2010 x86_64 GNU/Linux
또한 현재 우분투가 32비트 버전인지 64비트 버전인지 알고 싶을 때는
다음과 같이 입력하면 됩니다.

# dpkg -s libc6 | grep Arch
Architecture: amd64

이 경우는 64비트 버전이며,
amd64 대신 i386이 나오면 32비트 버전입니다.
amd64 지만, 인텔(Intel) CPU에서도 64비트 우분투를 설치할 수 있습니다.

//32bit
test@ubuntu:~$ dpkg -s libc6 | grep Arch
Multi-Arch: same
Architecture: i386

//64bit
test@ubuntu:~# dpkg -s libc6 | grep Arch
Multi-Arch: same
Architecture: amd64