Notes
latest

Contents

  • c++ notes
  • floating point number
  • ieee 规定的16, 32, 64, 128比特的浮点数格式列表
  • cuda related
    • how to install nvidia driver in linux?
    • download nvidia driver
  • Backpropagation的推导
  • convolution arithmetic
  • tensorrt 学习笔记
  • cmake notes
  • git tricks
  • linux notes
  • reStructuredText notes
Notes
  • Docs »
  • cuda related
  • Edit on GitHub

cuda related¶

how to install nvidia driver in linux?¶

Problem: NVIDIA kernel module ‘nvidia-drm’ already be loaded in kernel

Solution (in root):

  1. goto true tty3, pressing Ctrl+Alt+F2

  2. disable the graphical target:

    systemctl isolate multi-user.target
    
  3. unload the Nvidia drivers:

    modprobe -r nvidia-drm
    
  4. install cuda driver

  5. start the GUI again:

    systemctl start graphical.target
    
  6. confirm your driver version:

    nvidia-smi
    

download nvidia driver¶

website: https://www.nvidia.com/Download/Find.aspx

Next Previous

© Copyright JunLiu@2020 Revision 0e7ca3f2.

Built with Sphinx using a theme provided by Read the Docs.