I have a quick question. The board and CPU that I'm using in one of my machines was given to me. I didn't take the time to look up the info on the board or anything. I was busy, so I just put the board in a pc case, hooked everything up, and loaded the os on the machine. I didn't know it at the time, but there's a chance it may be a 64bit board and cpu. I don't want to pull the machine out of the desk, and open it up to find out. Is there a command entered by way of the terminal window that will tell me what kind of cpu I have? I want to say that it's an AMD sempron 3000+, but I'm not sure. Thanks Jim
Around 12:06pm on Sunday, February 03, 2008 (UK time), Jimmy Bradley scrawled:> and open it up to find out. Is there a command entered by way of the > terminal window that will tell me what kind of cpu I have? I want to say > that it's an AMD sempron 3000+, but I'm not sure.cat /proc/cpuinfo Steve -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting a bad thing? 12:12:10 up 9 days, 13:37, 1 user, load average: 0.16, 0.10, 0.09 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://lists.centos.org/pipermail/centos/attachments/20080203/eda970a6/attachment-0001.sig>
On Sun, 2008-02-03 at 12:12 +0000, Steve Searle wrote:> Around 12:06pm on Sunday, February 03, 2008 (UK time), Jimmy Bradley scrawled: > > > and open it up to find out. Is there a command entered by way of the > > terminal window that will tell me what kind of cpu I have? I want to say > > that it's an AMD sempron 3000+, but I'm not sure. > > cat /proc/cpuinfo > > Steve >Thanks, Below is my cpu info. I'm thinking it's a 32bit cpu. Correct me if I'm wrong please. While I'm on the subject, I have a 64bit board that I haven't installed in a case yet. Plus I still need to get a cpu for it. My question is, would I really gain anything right now by going to a 64bit machine? Sure I know I would if I was doing graphics and multimedia, but I'm just doing record keeping,plus the other regular computer stuff, finances and email, and so on. Jim processor : 0 vendor_id : AuthenticAMD cpu family : 15 model : 44 model name : Mobile AMD Sempron(tm) Processor 3000+ stepping : 2 cpu MHz : 800.000 cache size : 128 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext fxsr_opt 3dnowext 3dnow up pni lahf_lm ts fid vid ttp tm stc bogomips : 1601.05> _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos
On Sunday 03 February 2008 12:12:49 Steve Searle wrote:> Around 12:06pm on Sunday, February 03, 2008 (UK time), Jimmy Bradleyscrawled:> > and open it up to find out. Is there a command entered by way of the > > terminal window that will tell me what kind of cpu I have? I want to say > > that it's an AMD sempron 3000+, but I'm not sure. > > cat /proc/cpuinfo > > SteveThis command tells you what CPU you are running, but not what CPU the motherboard is capable of tacking. That depends on the type of CPU socket is on the motherboard and sometimes the BIOS revision. When the machine boots up and displays the bios screen it should display a longish line of letters and text at the bottom or top of the screen, (in between the memory / hard drive info). Make a note of it and do a Google search on it will give you the motherboards manufacturer and bios revision. If the board is out of a HP, Del or other branded manufacturer then you can use software to interrogate the motherboard and bios to get this info. I don't know of any Linux commands to do this though. -- Guy Fawkes, the only man to enter the house's of Parliament with honest intentions, (he was going to blow them up!) Registered Linux user number 414240
On Sun, 2008-02-03 at 06:06 -0600, Jimmy Bradley wrote:> I have a quick question. > The board and CPU that I'm using in one of my machines was given > to me. I didn't take the time to look up the info on the board or > anything. I was busy, so I just put the board in a pc case, hooked > everything up, and loaded the os on the machine. > I didn't know it at the time, but there's a chance it may be a > 64bit board and cpu. I don't want to pull the machine out of the desk, > and open it up to find out. Is there a command entered by way of the > terminal window that will tell me what kind of cpu I have? I want to say > that it's an AMD sempron 3000+, but I'm not sure. > > Thanks > > Jim >Jim, Here is a short script that identifies the OS as well as a 64 bit machine. The script is not mine, but was posted on this site 6 months or so ago. Greg #!/bin/bash echo -n "Running " RES=`uname -a | grep 64` if [ $? -eq 0 ]; then echo -n "64-bit " else echo -n "32-bit " fi echo -n "operating system on a " RES=`cat /proc/cpuinfo | grep " lm "` if [ $? -eq 0 ]; then echo -n "64-bit " else echo -n "32-bit " fi echo "machine"