You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvidia-patch/README.md

53 lines
1.3 KiB
Markdown

7 years ago
# nvidia-patch
7 years ago
Requirements:
- ubuntu (< 16.04 for 375.39 nvidia driver or kernel < 4.15)
- nvenc-compatible gpu (https://developer.nvidia.com/video-encode-decode-gpu-support-matrix#Encoder)
- nvidia driver (patch availible for 375.39 or 396.24)
7 years ago
Tested on Ubuntu 18.04 LTS (GNU/Linux 4.15.0-23-generic x86_64)
7 years ago
## step-by-step :
### Download driver
http://us.download.nvidia.com/XFree86/Linux-x86_64/375.39/NVIDIA-Linux-x86_64-375.39.run
http://us.download.nvidia.com/XFree86/Linux-x86_64/396.24/NVIDIA-Linux-x86_64-396.24.run
### Install driver 396.24
7 years ago
```bash
mkdir /opt/nvidia && cd /opt/nvidia
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/396.24/NVIDIA-Linux-x86_64-396.24.run
7 years ago
chmod +x ./NVIDIA-Linux-x86_64-375.39.run
./NVIDIA-Linux-x86_64-396.24.run
7 years ago
```
7 years ago
### Check driver
7 years ago
```bash
7 years ago
nvidia-smi
```
7 years ago
### Patch libnvidia-encode.so (with backup)
```bash
bash ./patch.sh
```
7 years ago
### Silent patch libnvidia-encode.so
```bash
bash ./patch.sh -s
```
7 years ago
### Rollback libnvidia-encode.so (restore from backup)
```bash
bash ./patch.sh -r
7 years ago
```
7 years ago
7 years ago
## See also
https://habr.com/post/262563/
7 years ago
If you experience `CreateBitstreamBuffer failed: out of memory (10)`, then you have to lower buffers number used for every encoding session. If you are using `ffmpeg`, consider using this [patch](https://gist.github.com/Snawoot/70ae403716c698cb86ab015626d72bd4).
7 years ago
7 years ago