Update linux-fix-audio-distortion-issue.md

This commit is contained in:
Brandon Scott 2019-09-12 21:56:06 -05:00 committed by GitHub
parent 35a6cab8d6
commit 764179910e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 7 deletions

View File

@ -1,15 +1,31 @@
## Stop audio distortion issue on Linux Mint 19.2 (could affect other ubuntu flavors as well) ## Stop audio distortion issue on Linux Mint 19.2 (could affect other ubuntu flavors as well)
`nano /etc/pulse/default.pa` 1. Open pulse audio configuration file.
then find a line containing: ```
nano /etc/pulse/default.pa
```
`load-module module-udev-detect` 2. find a line containing:
modify this to become: ```
load-module module-udev-detect
```
`load-module module-udev-detect tsched=0` 3. modify this to become:
then run this to kill existing pulseaudio ```
load-module module-udev-detect tsched=0
```
`pulseaudio -k` 4. then run this to kill existing pulseaudio
```
pulseaudio -k
```
### Why this works?
This disables something called "Glitch-free audio" which doesn't seem to play nice with my sound chip (ALC1220).
Ironic given the name, since it's causing me glitches!