CentOS 5 :: # Cat /proc/cpuinfo - Doesn't Show All Cores Of Processor
Nov 21, 2009
I have just bought new PC (Intel mother board "Intel DP43TF ATX" and Processor "Intel Core 2 Quad Q9550"). and I have installed centos 5.3 32 bit.
NOTE: All cores are enabled in BIOS.
When I issue below command, it shows only one core (not 4 cores): what could be reason!
# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
[Code].....
View 1 Replies
ADVERTISEMENT
Jan 6, 2010
Only lately I notice that my CentOS 5.2
(Linux centos52-64-fuj 2.6.18-92.el5 #1 SMP Tue Jun 10 18:51:06 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux)
does not detect a second core according to /proc/cpuinfo
Quote:
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 15
[Code]....
View 10 Replies
View Related
Sep 2, 2011
There is a computer with two "Xeon(R) CPU X5550 @ 2.67GHz" CPU. The Hyper-threading is enabled, so it looks like 16-core system, but really there is only 8 physical cores.
I know that when hyperthreading is enabled, each physical core is splitted into two virtual cores. I want to know, which pair of virtual cores shares a physical core and which are not. Or, how (in what order) will Linux enumerate HT-cores comparing to real cores. (enumerating is done for sched_setaffinity and taskset masks).
I have a dump of /proc/cpuinfo file from the system.
I think there are possible:
CPU0-CPU7 are not sharing phys. core. CPU8-CPU15 too. But sharing is in pairs CPU0+CPU8, CPU(i)+CPU(i+8) and so on. or CPU0+CPU1 are from single physical, CPU2+CPU3, CPU(2*i)+CPU(2*i+1). or exotic CPU0+CPU15 sharing, CPU1+CPU14 ... or random?
The hard moment in this case is that there are 2 physical dies of CPU (two sockets), and usual recommendation of using "physical id:" field can't help
The cpuinfo:
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU X5550 @ 2.67GHz
[Code].....
View 1 Replies
View Related
Jan 13, 2010
Is there a simple way to determine the CPU socket from the output of /proc/cpuinfo. Determining the type of processor is simple enough, but the processor I have (Celeron) has two different possible sockets. The output of /proc/cpuinfo is:
processor : 0
vendor_id : GenuineIntel
cpu family : 15
[Code]...
I've looked on the Intel processor finder web site with appropriate filters, but the stepping values do not appear to match anything.
View 1 Replies
View Related
May 13, 2011
I have fedora 14 installed and wish to use/learn kvm. I installed via groupinstall the virtualization group. I see vmx in /proc/cpuinfo. but when I start virt-manager I get a message that kvm is not installed or cannot be leaded into the kernel (to make a long message short). I am at a loss here as to what to do. I run cat /proc/modules and see "kvm 257420 0 - Live 0xffffffffa022a000". also after running modprobe kvm I run [root@fed14 ~]# lsmod | grep -i kvmkvm 257420 0 and see kvm there.
View 3 Replies
View Related
Jul 18, 2011
My CPU has 2 cores, so I can see two parts in /proc/cpuinfo.But, I want to know if CPUs that support Hyper-Threading (or similar tech), will /proc/cpuinfo give CPU info per core or per thread (or call it sibling)?I only know that Windows Task Manager will give CPU usage statistics per thread if the CPU supports HT.
View 2 Replies
View Related
Feb 17, 2010
I recently built a new computer. For CPU, I am using AMD Athlon II X2 @ 2.8GHz... However, when I do cat /proc/cpuinfo, I get the following:
processor : 0
vendor_id : AuthenticAMD
cpu family : 16
model : 6
model name : AMD Athlon(tm) II X2 240 Processor
stepping : 2
cpu MHz : 800.000
cache size : 1024 KB
and same thing for processor: 1 Notice that for cpu MHz, it says 800.000. However, that is not correct... Shouldn't it say 2800? Is this a bug? Am I looking at this wrong?
View 2 Replies
View Related
Oct 1, 2010
I'm trying to retrieve a single string or value from /proc/cpuinfo, but when I try to extract the model (not the model name) the model name comes with it, also it likes to print it twice...
Code:
model="`cat /proc/cpuinfo | grep model | cut -d: -f2 | cut -c1-3`"
echo $model
All i want this to do is spit out the model number once. (I need to pass it to another script)
View 14 Replies
View Related
Feb 26, 2011
I have following in cpuinfo:
processor : 0
vendor_id : AuthenticAMD
cpu family : 15
[code]....
View 2 Replies
View Related
Jan 14, 2010
JIt was easy to check in Windows, but I just wanted to know if there's a way to check if Ubuntu is utilizing both cores of my processor (Pentium Core 2 Duo).
View 9 Replies
View Related
Dec 20, 2010
identifying the number of cores each processor is running.
I have checked /proc/cpuinfo but i dont find any core details inside it and I can find only no of processor and its speed.
View 7 Replies
View Related
Dec 20, 2009
Basically system monitor and the "top" command show 2 cpu cores when I only have 1 (a 3 Ghz P4 on my work computer).
I'm not sure if the two are related but I frequently get 100% CPU usage when running a few programs together (Kile, Firefox, Chrome and okular for example) at which point even the movement of the mouse cursor slows down.
View 2 Replies
View Related
May 5, 2010
today i install centos x86_64 in my server, but /proc/cpuinfo display 2000Mhz . My processor model name : Intel(R) Core(TM)2 Quad CPU Q9550 @ 2.83GHz, before the server had centos i386 and display 2800Mhz.
View 3 Replies
View Related
Jan 1, 2010
Man VLC is a bit of a mess in CentOS.I can't get it to show album tracks when playing music CDs.
View 1 Replies
View Related
May 23, 2011
I just discovered that you can automount an ext4 filesystem with acl enabled by running "tune2fs -o acl". (I knew about tune2fs but did not dare to use it until now). However, the acl mount option does not show up in /etc/mtab and /proc/mounts. Can I ignore this, or is there a way of telling the system about the actual mount options?
Edit: I can do "tune2fs -l <device> | grep acl | awk '{print $4}'" and if that isn't empty I can update /etc/mtab with "mount -f -o remount,acl <device>", but like the udev rule I previously messed with this seems lumberingly unelegant to me.
View 2 Replies
View Related
Apr 26, 2010
this might not be a Centos related issue, but since I'm using Centos I guess it doesn't hurt to ask; I've used Ubuntu before and haven't encountered this. So, I've just installed Centos and Webmin and now I'm trying to configure the server. Problem is that on the Apache configuration page I don't have the option (should be there) to configure the Apache modules. I've attached a file to show where the modules option should (as before) appeared.
View 6 Replies
View Related
Aug 28, 2009
I'm using Cpanel on my server, before upgrade to new kernel, i could see 8 cores on my i7 server, now i only see 4 cores, is there anything that i need to do to have another time the 8 cores?
View 2 Replies
View Related
Jul 6, 2010
I've got the F13 LiveCD that I was able to boot and use using the "nomodeset" boot option. From the desktop I'm trying to perform an Install to Hard Drive. I've read the Install from LiveCD post regarding the creation of a /boot partition and a / root partition. I've tried creating them without the LVM group and with. But every time I appempt to install I get...
An error occurred mounting device proc as /proc: mount failed: (9, None). This is a fatal error and the install cannot continue.
Hardware is a Sager 8887 (P4, 3.06HT, 60GB HDD, Radeon 9000 graphics adapter)
View 7 Replies
View Related
Oct 14, 2010
Anyway since I upgraded to Ubuntu 10.10 when I right-click on something and there is another menu in that menu, it doesn't show up for the first time!
for example if I want to create a an "Empty File", I'll right-click on desktop and when I want to go to "Create Document" menu, it doesn't show up! so I must click somewhere else and try again so for the second time it works!!
View 9 Replies
View Related
Sep 26, 2010
Ok For some reason I open my ports in security and firewall. I open ssh and other ports and port 7001 for example but when I go to check to see if they are open or try to connect to them. It shows that they are still closed. I am using - [URL] Also yes my ports are open on my router. I know my router works fine with opening ports because I have shoutcast setup on another computer with xp that is currently running. I am willing to pay for who can ever get this fixed for me...
I open the ports in graphical mode.
View 15 Replies
View Related
Sep 6, 2010
I installed Debian on my NAS and I installed nfs to share the files, but I cannot mount anything over nfs with the it. it seems that I dont get the exports right.I added the IP to the hosts.allow, I added it to the exports.to make it easier, shananigen has the IP 192.168.10.33 and is the serverdebian has the IP 192.168.1.34 and is the clientis there a problem if I go across subnets?anyway, here we go
shananigen:/etc# cat exports
#
/home/gerard 192.168.1.34(rw,sync,no_subtree_check,root_squash)
[code]...
View 3 Replies
View Related
May 13, 2009
Just installed a new CentOS with the control panel Interworx. Everything fine, BUT. I can't add new ipadresses cause there is no network device.When i do 'ifconfig' i get the following:
[root@cobra ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:1C:C0:A7:25:9F
inet addr: Bcast: Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
[code]....
View 1 Replies
View Related
Sep 21, 2010
While experimenting with rsync, I accidently deleted a bunch of files in the /proc directory. I think it was the directories: 1, 2, 3 ... 10.This happened a few days ago and after rebooting a number of times, I do not notice any problems.
View 3 Replies
View Related
Dec 5, 2010
I am trying to install Linux on a 12-year-old PC with an AMD Pentium II equivalent and with 128Mb RAM. Xubuntu 10.04 won't install because the kernel requires "cmov" but the PC's processor doesn't have it. There are loads of posts on the Internet about this but I have not found any listings of Linux distros that don't need cmov other than TinyMe, which I shall try installing.
There is no hope of my being able to use the command line to replace the kernel version or for any such fix -I am just too new to it all. nice-looking distro that should install that doesn't look too old and that has a good set of features?
View 14 Replies
View Related
May 19, 2009
i'm using Centos 5.3 (2.6.27.10-grsec-xxxx-grs-ipv4-64 x86_64 kernel) and i got a problem with installing apf/configuring iptables. It seems that my kernel doesn't support Loadeble Kernel Modules. I'm receiving following message when catting /proc/modules: Quote: cat: /proc/modules: No such file or directory /sbin/modprobe -l FATAL: Could not load /lib/modules/2.6.27.10-grsec-xxxx-grs-ipv4-64/modules.dep: No such file or directory
View 4 Replies
View Related
Jan 5, 2010
i have installed ubuntu in my laptop.since i have AMD processor fedora doesnt support AMD processor..the recent version fedora 12 supprots AMD processor.i am doing my final project in ns2 hence it should support tht too!!! Which is the best choice to override ubuntu grub fedora 12 or redhat linux.
View 3 Replies
View Related
Jun 4, 2010
In my environment all the servers are having more than 5+ cpu's.Please help me to find out from which CPU the OS is booting
View 5 Replies
View Related
Mar 28, 2009
System has a boot partition on raid1. The root filesystem is on RAID1/LVM.During the boot process, it gets to here:
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#1.
CPU1: Intel(R) Celeron(R) CPU E1200 @ 1.60GHz stepping 0d
[code]...
most of the time, it will not reboot. I can cycle power, and, eventually, it does boot. So, hardware issue perhaps? Something else?What can I do, or add to the configuration to help debug this and figure out why? For boot options, I have tried noapic, apm=off, noht, nomce, nousb, nousbstorage, and none of those helped. As the machine is remote, to mess with console stuff, I have to get a KVM over IP hooked up, which I can do.
View 1 Replies
View Related
Dec 11, 2010
I have a small AMD Geode LX 800 (500 MHz) based Nettop that I would like to use at home as home server managing printers, a central data storage, and some other things. Only I can't install CentOS 5.5 due to an Anaconda exception at the very end of the initial setup process, right before it's supposed to start copying the files.Is it true that CentOS/RHEL requires an i686 compatible processor? As far as I know the Geode LX is only i586 and Redhat's system requirements only list x86 as necessary.
View 9 Replies
View Related
Jun 4, 2011
I'm using a 64-bit release. But, my PC doesn't seem to show the full 4GB of RAM that is installed. It shows about 3.4 to 3.6GB of RAM (please see attached picture).I thought that if I could install a 64-bit OS that would mean that I have a 64-bit capable processor. I thought using a 64-bit release would show all 4GB or RAM on my PC. What am I doing wrong? My CPU is a Pentium 4 Prescott DT 630.
More information on my system is below:
Code:
$ lsb_release -rd
Description:Debian GNU/Linux 6.0.1 (squeeze)
Release:6.0.1
[code]....
View 6 Replies
View Related