haithcockce

System info

Aug 18th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.92 KB | None | 0 0
  1. $ uname -a
  2. Linux <HOSTNAME> 4.6.6-300.fc24.x86_64 #1 SMP Wed Aug 10 21:07:35 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
  3.  
  4.  
  5. $ cat /etc/redhat-release
  6. Fedora release 24 (Twenty Four)
  7.  
  8.  
  9. $ lspci
  10. 00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
  11. 00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
  12. 00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller
  13. 00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1
  14. 00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (2) I218-V
  15. 00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2
  16. 00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller
  17. 00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0)
  18. 00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d0)
  19. 00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1
  20. 00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family Z97 LPC Controller
  21. 00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode]
  22. 00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller
  23. 01:00.0 VGA compatible controller: NVIDIA Corporation GM206 [GeForce GTX 960] (rev a1)
  24. 01:00.1 Audio device: NVIDIA Corporation Device 0fba (rev a1)
  25. 03:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04)
  26.  
  27.  
  28. $ lspci -v | awk '/VGA/,/^$/ {print}'
  29. 01:00.0 VGA compatible controller: NVIDIA Corporation GM206 [GeForce GTX 960] (rev a1) (prog-if 00 [VGA controller])
  30.     Subsystem: Device 196e:1138
  31.     Flags: bus master, fast devsel, latency 0, IRQ 30
  32.     Memory at de000000 (32-bit, non-prefetchable) [size=16M]
  33.     Memory at c0000000 (64-bit, prefetchable) [size=256M]
  34.     Memory at d0000000 (64-bit, prefetchable) [size=32M]
  35.     I/O ports at e000 [size=128]
  36.     [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
  37.     Capabilities: <access denied>
  38.     Kernel driver in use: nvidia
  39.     Kernel modules: nouveau, nvidia_drm, nvidia
  40.  
  41.  
  42. $ ll /dev/nvidia*
  43. crw-rw-rw- 1 root root 195,   0 Aug 18 20:11 /dev/nvidia0
  44. crw-rw-rw- 1 root root 195, 255 Aug 18 20:11 /dev/nvidiactl
  45. crw-rw-rw- 1 root root 195, 254 Aug 18 20:11 /dev/nvidia-modeset
  46.  
  47.  
  48. $ lsmod | grep -e nvidia -e nouveau
  49. nvidia_drm             45056  2
  50. nvidia_modeset        765952  7 nvidia_drm
  51. nvidia              11243520  116 nvidia_modeset
  52. drm_kms_helper        143360  1 nvidia_drm
  53. drm                   339968  5 drm_kms_helper,nvidia_drm
  54.  
  55.  
  56. $ rpm -qa | grep -i -e nvidia -e nouveau
  57. akmod-nvidia-367.35-1.fc24.x86_64
  58. kmod-nvidia-4.6.6-300.fc24.x86_64-367.35-1.fc24.x86_64
  59. xorg-x11-drv-nvidia-367.35-1.fc24.x86_64
  60. xorg-x11-drv-nvidia-kmodsrc-367.35-1.fc24.x86_64
  61. xorg-x11-drv-nvidia-cuda-367.35-1.fc24.x86_64
  62. xorg-x11-drv-nvidia-libs-367.35-1.fc24.x86_64
Add Comment
Please, Sign In to add comment