OpenSUSE Hardware :: Missing I2c-core.ko In 11.3 X86-64 (kernel 2.6.36)?

Nov 13, 2010

I was bugging around with my nvidia driver and while reading README.txt I saw the following:

"NVIDIA has noted that in some distibutions, i2c support is enabled. However, the Linux kernel module i2c-core.o (2.4) or i2c-core.ko (2.6), which provides the export infrastructure, was not shipped. In this case, you will need to build the i2c support module. For directions on how to build and install your kernel's i2c support, refer to your distribution's documentation for configuring, building, and installing the kernel and associated modules."

So I checked if I have i2c-core.ko and I saw that it is not present as a built module, but only as a source code. So, my question is, is there any reason that the module is not shipped with openSUSE 11.3 x86_64 (I use the kernel HEAD repository)? Actually, does it make sense to use this module if I want to monitor the temperature of my GPU with sensors? How can I compile only that module and install it?

View 4 Replies


ADVERTISEMENT

OpenSUSE :: Get Application To Utilize More Than One Core In Multi-core Setup?

Mar 27, 2011

I have a command line OCR program called OCR Shop XTR (Vividata corp) that I am using on a system with a 6-core AMD chip. I changed the bios so that the 6-cores were activated, but htop shows me that while the program is running, I am only getting activity on one core (the program maxes out the one core with consistent usage between 97% and 100%).

I have read that many programs are not written to take advantage of multiple core cpu's. However, I am just hoping that there is some way to get this program to take advantage of the extra cores. Does anyone know of a way to invoke programs from the command line which would spread the workload out among additional cores?

Here is the output of uname -a:Linux linux 2.6.37.1-1.2-desktop #1 SMP PREEMPT 2011-02-21 10:34:10 +0100 i686 athlon i386 GNU/LinuxAnd here is the output for one of the cores from cat /proc/cpuinfo:processor : 5

vendor_id : AuthenticAMD
cpu family : 16
model : 10
model name : AMD Phenom(tm) II X6 1100T Processor
stepping : 0

[Code].....

View 5 Replies View Related

General :: Missing CPU Core On Boot?

Jun 11, 2010

I'm running Linux on an Intel Core 2 Duo processor. When I apply power to my computer, it boots into one core but appears to leave the other one idle. On the screen, it prints:

....
SMP: Allowing 2 CPUs, 1 hotplug CPUs
.....

I can confirm that only 1 CPU is active by logging in and examining /proc/interrupts and /proc/cpuinfo. After issuing a "reboot" command, the screen shows:

...
SMP: Allowing 2 CPUs, 0 hotplug CPUs
...

So, when I do a cold boot, I one get 1 CPU. When I do a warm boot, I get both CPUs. This is a problem for me because I'm running Linux on an embedded board and I need both CPUs to be running.

I've played around with BIOS settings, the boot string, kernel configuration, and CPU hot plugging. I can't seem to find a way to get both processors running without booting the system twice.

I thought that the CPU hot plugging path showed some promise but I can't seem to get that feature working on my system. The first issue is that the Linux documentation doesn't seem to match with what I'm seeing. It states that you should be able to go into /sys/devices/system/cpu/cpuX/ and write a zero or a one to the file labeled 'online' to disable it or enable it. When I go to /sys/devices/system/cpu I only see a directory for cpu0. There isn't a directory for cpu1.

After a reboot, I do see two directories int /sys/devices/system/cpu (cpu0 and cpu1). At this point, it won't let me 'offline' the second processor. The echo command gives me an error. (By the Way: the 'online' file in each cpuX directory has read only permissions.) This error occurs after I've changed the permissions on the file to read/write.

I confirmed that the following parameters are set in my .config file: CONFIG_HOTPLUG, CONFIG_HOTPLUG_CPU, CONFIG_SMP, CONFIG_SUSPEND_SMP

I've done searches on google until my eyes popped out and can't find much information. I see others have had similar problems but they all seem to link back to ACPI in BIOS. I've already played with all of those settings and I didn't see any effect. One reason I don't think it's a BIOS problem is because a warm boot (reboot) seems to 'fix' it.

I've tried different kernels, different distributions, and different computers. I see similar behavior in all configurations. I feel like I'm missing something fundamental.

View 4 Replies View Related

OpenSUSE :: Missing Kernel Symbol File For Latest Update?

Feb 14, 2010

opensuse v11.2linux 2.6.31.12-0.1-desktop x86_64The kernel symbol file is still at 2.6.31.3. Apparently the symbol file did not get updated with the rest of the kernel development files. At least one program does not build because of that

View 9 Replies View Related

OpenSUSE Hardware :: Nvidia Driver On 11.1 Missing Kernel Source?

Aug 20, 2011

i would like to install the newest nvidia driver NVIDIA-Linux-x86-280.13 on my Suse 11.1 with kernel. kernel-pae-2.6.27.56-0.1.1

however the nvidia driver installer claims that kernel source and devel are missing and I don' know how to get and install them for this kernel.

View 1 Replies View Related

OpenSUSE Install :: Boot.preload Complains About The Missing Preloadtrace.ko Kernel Module?

Nov 23, 2009

I've built my own kernel and now boot.preload complains about the missing preloadtrace.ko kernel module.

Where can one find the source for this module?

View 1 Replies View Related

Fedora Installation :: VLC - Error: Missing Dependency: Libdvdnav.so.4 Is Needed By Package Vlc-core

Jan 7, 2009

installing on linux i try to install VLC and get [user@localhost ~]$ sudo yum install vlc Setting up Install Process Parsing package install arguments Resolving Dependencies

--> Running transaction check
---> Package vlc.i386 0:0.8.7-0.8.fc8 set to be updated
--> Processing Dependency: vlc-core = 0.8.7-0.8.fc8 for package: vlc
[Code]...

View 3 Replies View Related

Ubuntu :: Which Kernel To Use W/ Intel Core 2 Duo

Aug 20, 2010

I've read that you can use specialized kernels for your hardware, and I was wondering if there's a kernel I can use for my Intel Core 2 duo. I read in a previous post about using a "smp" variant, but kinda wanted some confirmation. Here's CPU info:

Code:
processor : 0
vendor_id : GenuineIntel

[code]....

View 1 Replies View Related

Programming :: Allocate A Cpu Core For Kernel Process?

Aug 3, 2010

My system has Intel Xeon 4-core cpu(hyperthreading 8-core) and run 64-bit linux. I want to allocate one core for general process(kernel process & other processes). And then, I want to allocate the rest of core for the specific multi-thread program.

Q1: I know that I can pthread_setaffinity() for user-mode thread and mpstat for monitoring. So, how can I allocate a core for kernel process and monitor it?

Q2: How can I restrict use of the cores for the multi-thread program? I don't want kernel process to use the cores for the multi-thread program.

View 1 Replies View Related

Software :: Error: Missing Kernel-devel And Kernel-source

Mar 11, 2010

I've been trying to install nvidia drivers yesterday, so I went to runlevel 3, ran the .bin installer and it came up with error: missing kernel-devel and kernel-source.

So I go yum install kernel-devel, it does, but it doesnt find anything like kernel-source.

How do I fix this issue? I have Fedora 12, and I ran drivers from:[URL]..

View 14 Replies View Related

Ubuntu Servers :: Kernel And Core System Same As In Desktop 9.10?

Mar 18, 2010

Is the kernel and core system same in server and desktop 9.10? How do I update/upgrade server similar to what update manager does in desktop?

View 9 Replies View Related

Debian Installation :: Kernel Failure After Lenny Install (on Core I7 870)?

Jan 5, 2011

I just installed the lenny (amd64) on my new core i7 870 computer (with netinst), but the kernel failure message appeared everytime I booted into gnome. I don't know how to solve this problem. Sorry I don't have much experience with installing linux, though I have been its user for a few years.

View 4 Replies View Related

OpenSUSE Wireless :: Ndiswrapper 1.55 Won't Compile - "The Program 'kernel-headers' Is Missing On Your System"

Jan 24, 2010

I am using Opensuse 11.2 on an HP Pavilion laptop. The internal wireless (Broadcom device) quit on me - It is no longer detected at boot so I assume it is dead. No problem since I have a D_Link USB adaptor (DWL-G132). To get it working however I need ndiswrapper. I then installed ndiswrapper 1.55 and the user interface supplied with Opensuse. Problem1- The interface says "The program 'kernel-headers' is missing on your system".

I have checked with Yast and the kernel-headers are installed. Problem2- I have downloaded ndiswrapper 1.55 from Sourceforge.net to attempt the traditional installation method. The 'make' command returns the following message: "Cannot find kernel version in /lib/modules/2.6.31.8-0.1-desktop/build, is it configured?."

View 9 Replies View Related

Fedora :: Where To Find Vmlinux File Corresponding To Current Running Core 10 Kernel

Aug 19, 2009

Where can I find the vmlinux file corresponding to my current running fedora core 10 kernel? I find only vmlinuz file in /boot

View 5 Replies View Related

Programming :: Kernel API *get_super (struct Block_device *bdev) Producing Error With Fedora Core 5

Feb 2, 2011

I understand that block_device pointer *bd sholuld get initialized. Program should produce initialization error for *bd. Compiler is producing '->'. I am not understanding why?

[code]...

View 1 Replies View Related

Ubuntu :: Run Dual Core - Crash - Single Core Runs Perfect

Apr 1, 2011

i am running gigabyte GA-M68M-S2P and AMD sempron 2.7. the problem is when i try to run dual core. it will boot and run for 2mins then it crashes. single core runs perfect.

View 6 Replies View Related

Fedora Installation :: Dual Core Only Showing Single Core On F14?

Nov 3, 2010

I just loaded F14 on an old Dell Dimension 3000 with a dual core processor but only one is showing. Here's the output from top:

processor: 0
vendor_id: GenuineIntel
cpu family: 15
model: 4

[Code]....

View 2 Replies View Related

Ubuntu Installation :: Dual Core Support Core 2 E8500 Out Of Box?

Feb 14, 2010

Just a quick question. Does Kubuntu Karmic support core 2 E8500 out of the box or do you need the SMP kernel?

View 3 Replies View Related

Programming :: Multi-core Support - Control On What Core Will A Thread Run

Oct 31, 2010

Is there any Linux API that will let me control on what core will a thread run? If not, do I have to use assembly language?

View 2 Replies View Related

Debian :: Wheezy Only Recognizes 1 Core Or Dual Core CPU?

Sep 7, 2011

I have now installed Wheezy on two different hard drives and in each case it seems only one CPU of my dual core CPU computer is recognized. System Monitor, Gkrellm and lscpu show just one when prior to the new install the old Wheezy showed both CPU's. I have put the hard drive into two other computers with dual core CPU's and all show just one CPU.

Interestingly System Profiler and Benchmark (hardinfo?) > Devices > Processors now show a large amount of processor infomation when with the old Wheezy I would only see both CPU's listed and nothing else.

View 14 Replies View Related

Ubuntu :: Lucid Lynx - Dual Core - One Core Always At 100%

May 15, 2010

I've a Compaq CQ61 laptop, and i noticed that one of the cores is always at 100%.

I didn't check the duration of the battery but surely it will "eat" my battery in a hurry

View 1 Replies View Related

General :: Only One Core Of Dual Core Processor Are Working

Mar 14, 2011

I recently read in a forum that by default the Linux kernel only activates one of two cores in a dual core processor. Searching online gave one option to find out and that was the mpstat command. I therefore ran the command and got the following output.As the result says, it shows only 1 cpu. I was wondering what I could do to activate both cores in my machine, and whether doing so was going to cause me any problems.

View 14 Replies View Related

Programming :: Get Process Running CPU Core And The Utilization On That Core?

Apr 27, 2010

Assume someone bind a particular process to a particular CPU core(In multi core machine) by using sched_setaffinity() like functions. Then how we can get that process running core id and CPU core utilisation of that process on that running CPU core(Pragmatically or by a Linux command)?.

View 5 Replies View Related

General :: "KVM ... Consists Of A Loadable Kernel Module, Kvm.ko That Provides The Core Virtualization Infrastructure"

Feb 27, 2011

At linux-kvm.org it is stated: "KVM ... consists of a loadable kernel module, kvm.ko that provides the core virtualization infrastructure" and yet there's no mention of Xen, which runs as the hypervisor with KVM. The site seems to be implying the module is the hypervisor. My question to you is: What is the relationship between KVM and Xen on a server that is "running KVM"?

View 2 Replies View Related

Fedora Installation :: Upgrading From Core 4 To Core 10?

May 20, 2009

I have created a virtual machine of a system running Fedora Core 4 and I need to upgrade it to Fedora Core 10. Based on what I have read, it iis possible so I started theupgrade process. I get an error message saying that /dev/hda6 (my root paritition does not exist) even though it does.

Does the installer need to read a label from /etc/fstab? I executed tune2fs -L / /dev/hda6 amd ,and added LABEL=/ for the corresponding entry for fstab. but the FEDORA CORE 10 is still giving the same problems for the installation process. Should I upgrade to an intermediate verson like Fedora Core 7 first?

View 14 Replies View Related

General :: Processes And CPU 4-core - Which Core The Program Used?

Mar 26, 2011

I've a program that launches new processes, and wait for them to die before it exits. So, for example, my program is a process, and it launches 3 more processes, and when the 3 child processes end, it will exit.

As you see, at end of the example, the program used a total number of 4 processes.

1 - Now, I'm running this program in a CPU with 4 cores. This means that the program used each core for each process?

2 - How can I know which core the program used?

View 1 Replies View Related

OpenSUSE Install :: Type Of Kernel In OpenSUSE 11.2 / Kernel Optimized For Server Machine?

Dec 11, 2009

default in openSUSE 11.2 we have installed kernel-desktop. This kernel is optimized for the desktop.

What is the name of kernel optimized for server machine? In my case Firebird database + Apache + PHP?

View 9 Replies View Related

OpenSUSE Install :: Only Getting 1 Core Of 4?

May 5, 2011

I own an Athlon II X4, with 4 physical cores, and opensuse 11.4 x86_64 is only recognizing 1 of them. Although, when i disable ACPI from the BIOS, i get all 4 cores showing on cpuinfo.

Code:
Linux version 2.6.38.4-2-desktop (geeko@buildhost) (gcc version 4.5.1 20101208 [gcc-4_5-branch revision 167585] (SUSE Linux) ) #1 SMP PREEMPT 2011-04-26 17:30:28 +0200

[Code].....

View 9 Replies View Related

OpenSUSE Install :: 11.3: Will The 'only One Core Seen' Be Addressed

Jun 27, 2010

It's known that with previous iterations, up to and including 11.2, with certain motherboards ( I can only speak for Asus/Abit ) a quad ( or duo ) core cpu can only be installed with acpi-off or similar options; this leads to only one core running in OpenSUSE, although the board itself declares 4 cores run.And this seems to mean that various other unimportant ( for a desktop ) acpi functions are affected, including the os system clock.

Typing top or cat /proc/cpuinfo always shows only one core, and although the computer is fine, it seems a pointless state of affairs. Googling shows various suggestions, including removing acpi=off or noapic in the boot options and substituting pci=nommconf, or changing the kernel to an SMP kernel ( which is probably out-of-date as advice now ); still, I can live with it in 11.2: I just wondered if 11.3 addresses this installation problem. Or will any future editions address it ?Whilst one can live with it, the initial impossibility of installing ( with no clue as to why it shan't install ) must have put off a deal of people from even going forward with OpenSUSE ( or any similarly affected distro ).

View 9 Replies View Related

Fedora :: Nvidia.ko Missing From Latest Kernel?

Jun 15, 2010

Anyone know what happened here or what I need to do? I'm running Fedora 12 and had the nvidia video driver setup and working perfectly from rpmfusion repo ... I just did a yum update and now my display is stuck on 800X600 ....

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved