Tagged Questions
1
vote
1answer
309 views
Second GPU does not show up in `lspci`
I switched the second GPU in one of our servers (Ubuntu 12.04.1 LTS). But now lspci only gives one entry:
$lspci | grep -i nvidia
04:00.0 VGA compatible controller: NVIDIA Corporation G94 [Quadro FX ...
4
votes
2answers
2k views
How does the Linux kernel handle shared IRQs?
According to what I've read so far, "when the kernel receives an interrupt, all the registered handlers are invoked."
I understand that the registered handlers for each IRQ can be viewed via ...
4
votes
1answer
285 views
force re-negotiation of PCIe speed on Linux
I'm working with PCIe Gen 3 cards and from time to time they seem to fall back to PCIe 1 or 2 speeds (according to lspci and also observed by the throughput).
When rebooting/power cycling the machine ...
4
votes
3answers
3k views
Reset a PCI Device in Linux
Is there a generic way to reset a PCI device in Linux from the command line? That is, cause the PCI bus to issue a reset command.
2
votes
4answers
473 views
sudo without password - security? [duplicate]
Possible Duplicate:
What specific vulnerabilities am I creating by disabling the sudo password?
I'm involved yet again in the old argument on whether sudo without password is secure enough ...
2
votes
1answer
933 views
What determines whether an interrupt is IO-APIC-edge or IO-APIC-level?
Looking at the contents of /proc/interrupts on an x86 Linux, I see that some of the interrupts are IO-APIC-edge while others are IO-APIC-level.
I wonder what determines the interrupt type, is it the ...