33
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

使ってるUbuntuが64bitなのか32bitなのか確認する

Last updated at Posted at 2014-04-06

#その情報が必要になった時って
大体忘れてる頃なのです。

#確認します。

$ uname -a
Linux tea 3.8.0-37-generic #53~precise1-Ubuntu SMP Wed Feb 19 21:37:54 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

x86_64の文字があるので64bitぽい

#判断基準は
uname -aの結果に、

  • i686 i686 i386などと表示されれば32bit
  • x86_64amd64などと表示されれば64bit

#でも出てくる情報が多くてよくわからないね…
uname -muname -iが非常にわかりやすい
getconf LONG_BITという手もある
##ただし
uname -mはハードウェアとしてのCPUのbit数を確認するものなようなので、注意

#結局
getconf LONG_BITが一番わかりやすくていいと思う

###蛇足
gcc -vしてTargetの欄を見るのもあり(煩雑

33
25
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
33
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?