I finally threw in the towel and went to Google for help. I searched around a bit and found Ubuntu bug report #1769423. This was the exact problem I was having and luckily provided a kernel parameter to help mend the situation. To make it easy on anyone who stumbles upon this post I'll outline how to fix this problem below.
First open Gnome Terminal and type in this command.
sudo -sThis will drop you to a root shell. While in this shell don't dick around or do anything stupid. You can royally e'ff up your system. After you're in the root shell you'll want to type in the below command.
echo 1 > /sys/module/bluetooth/parameters/disable_ertmThis command disables ERTM within Bluetooth's protocols. ERTM stand for enhanced retransmission mode. It is an improved version of retransmission and flow control modes. ERTM is required when using an AMP (Alternate MAC/PHY), such as 802.11abgn. If you're using AMP then this might cause a problem. For my needs I had no use for ERTM so disabling it was fine. The above command will have to be done with every reboot unless you add a kernel parameter disabling ERTM from the get go. If you want to disable ERTM at boot time you can do so by editing the grub file located in /etc/default/. Just add bluetooth.disable_ertm=1 in the GRUB_CMDLINE_LINUX section of the config file. I put it at the begining of the "rhgb quiet" part. Make sure it's between the " ". If confused check out the image below.
And that's the end of the story. The above fixed my problem and got me back to gaming. Keep in mind the above info is for Fedora 28. It's may or may not pertain to other Linux distros.
No comments:
Post a Comment