Saturday, April 20, 2024
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 885  / 2 Years ago, tue, october 4, 2022, 7:00:28
tomasz@tomasz-lenovo-ideapad-Y530:~$ lscpu
Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 2
On-line CPU(s) list: 0,1
Thread(s) per core: 1
Core(s) per socket: 2
Socket(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 23
Stepping: 6
CPU MHz: 2000.000
BogoMIPS: 4000.12
Cache L1d: 32K
Cache L1i: 32K
Cache L2: 3072K


I can see that my architecture is 32-bit (i686). But CPU op-mode(s) are 32-bit and 64-bit. The question is: how come? How is it handled that a 32-bit processor performs 64-bit operations? I guess it's a lot slower than native 32-bit operations. Is it built-in processor functionality (to emulate being 64-bit) or is it software dependent? When does it make sense for a 32-bit processor to run 64-bit operations?


More From » cpu-architecture

 Answers
7

lscpu is telling you that your architecture is i686 (an Intel 32-bit CPU), and that your CPU supports both 32-bit and 64-bit operating modes. You won't be able to install x64 built applications since they're built specifically for x64 architectures.



Your particular CPU can handle either the i386 or i686 built packages. There are a number of ways to verify your architecture & OS preferences.



Try uname -m. It will show i686, that means your CPU is 32 bit support.


[#27296] Thursday, October 6, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lawain

Total Points: 150
Total Questions: 106
Total Answers: 101

Location: China
Member since Mon, Aug 22, 2022
2 Years ago
;