Linux下檢視作業系統的位數和系統名稱版本資訊

2022-08-02 10:30:10 字數 594 閱讀 6288

linux下如何明確地檢視作業系統的位數

如何知曉作業系統是32位還是64位?這裡介紹一種簡單的方式:

[plain]

[root@localhost mysql-5.1.57]# getconf long_bit

通過上面操作,我們可以很方便看到是64位。我的版本資訊如下:

[plain]

[root@localhost mysql-5.1.57]# lsb_release -a

lsb version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-

4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-

4.0-ia32:printing-4.0-noarch

distributor id: centos

description: centos release 5.8 (final)

release: 5.8

codename: final

如果你的顯示不出來,請man getconf,檢視下幫助。

Linux下如何檢視作業系統的位數

linux下如何明確地檢視作業系統的位數 如何知曉作業系統是32位還是64位?這裡介紹一種簡單的方式 plain root localhost mysql 5.1.57 getconf long bit 64通過上面操作,我們可以很方便看到是64位。我的版本資訊如下 plain root local...

Linux作業系統位數檢視

方法一 執行命令列 uname a 若顯示 uname a linux pmx002 2.6.32 71.el6.x86 64 1 smp wed sep 1 01 33 01 edt 2010 x86 64 x86 64 x86 64 gnu linuxx86 64表示64位機器 若顯示 unam...

如何檢視Linux作業系統的位數

如何檢視linux作業系統的位數 在安裝乙份64位oracle資料庫之前,想先確認一下作業系統是否是64位。用uname a命令檢視了,但結果中並沒有明確說明是多少位,於是再繼續找其它方法。1.程式設計實現 在程式中返回sizeof int 的值,返回的結果是作業系統的位元組數。若返回4則是32位作...