Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Hi I am slowly learning the basics of linux and have Debian Squeeze (6.0.6) installed on my old pc as well as Win XP dual boot using grub. The installation seems to be running slow so I am in the process of reinstalling iceweasel and dabbling. However I have noticed that Debian seems to think I have 2 CPUs where I only have one. If I run
Code:
cat /proc/cpuinfo | grep "model name"
I get 2 cpus both the same as below.
Code:
model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
System monitor also thinks I have 2 CPUs and reports activity for both?
However the PC is an HPD330 which only has 1 CPU P4 2.8. Is there an error in my installation of have I just misunderstood?
If I am right, it may be hyperthreading.
Honestly I don't remember if Pentium 4 already get this.
I would search for below keyword in cpuinfo file:
- physical id
- processor
This should report the total number of physical CPUs:
grep -i "physical id" /proc/cpuinfo | sort -u | wc -l
This should report the total number of logical CPUs:
grep -i "processor" /proc/cpuinfo | sort -u | wc -l
Just an FYI: if you had a quad core processor you would get reports as if you had 4 processors. the utilities actually count CORES, they cannot 'see' how they are packaged.
I am not sure that this is involved in your specific case, just a point of clarification.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.