惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
小众软件
小众软件
量子位
月光博客
月光博客
P
Proofpoint News Feed
IT之家
IT之家
腾讯CDC
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog

Arch Linux Forums

Avidemux crashes without strace / Applications & Desktop Environments how to apply patches with non-linux linends / Newbie Corner Replicating CachyOS on vanilla Arch (or at least getting close) / Arch Discussion What's arch linux GUI package manager ? / Newbie Corner Hibernation failing due to insufficient memory / System Administration profiledef.sh editting question / Installation trying to script kde plasma wallpaper settings / Programming & Scripting Looking for new Audacious package maintainer / Creating & Modifying Packages issues installing arch with LUKS2 encryption / Newbie Corner QEMU PXE booting does not work with OVMF.4m.fd / Applications & Desktop Environments Wired lan regular disconnect / Newbie Corner Need Help setting up ARCH in my G16 G634JZR iwlwifi started failing consistently, trying to determine root cause Windows randomly jumping between monitors after GNOME 50 update No display via DP or HDMI after boot. / Kernel & Hardware how to change acpi platform_profile? / Newbie Corner Linux denied all kernel modules which not loaded right now Use iPhone as Webcam for Arch Linux Video Output Failure on nvidia-580xx-dkms on TTY --> Desktop switch (Page 2) / Kernel & Hardware I was going to rant ..WINE32 Sabotage compliments of Arvind Krishna / Arch Discussion [SOLVED] LUKS drive auto unlocked by TPM when expected not to / Networking, Server, and Protection Hibernate/suspend from X = dark panel; from TTY = works (ASUS G14, hyb (Page 2) / Laptop Issues Headphone jack noise/buzz / Newbie Corner segmentation fault in cc1plus when building CLK / AUR Issues, Discussion & PKGBUILD Requests Console alternative to meld / GNU/Linux Discussion Problem with paru git clone / Newbie Corner XKB questions / Applications & Desktop Environments gnome-keyring-daemon is not working correctly / Applications & Desktop Environments [SOLVED] Steam opens and immediately closes constantly / Newbie Corner Firefox rounded edges on Sway / Applications & Desktop Environments
Connection issues with Marshall Major IV headphones / Mul...
sigurd4 · 2026-06-13 · via Arch Linux Forums

I had no problems for months until i did a kernel update around christmas 2025. Ever since, i get various failures when connecting, such as timeout, low RSSI and authentication failure. I wrote a script that somehow fixed the issue temporarily, but now that one doesn't even work anymore. Here's the script, if that matters:

#!/bin/bash

bluetoothctl <<EOF
scan off
disconnect 1C:6E:4C:AD:33:ED
remove 1C:6E:4C:AD:33:ED
EOF

echo "Perform a factory reset on the Major IV headphones"
read
sudo systemctl restart bluetooth
systemctl restart --user pipewire
systemctl restart --user pipewire-pulse
systemctl restart --user wireplumber

bluetoothctl <<EOF
power on
discoverable on
pairable on
agent KeyboardDisplay
default-agent
scan on
connect 1C:6E:4C:AD:33:ED
EOF

`1C:6E:4C:AD:33:ED` is the ID of my bluetooth headset (Marshall Major IV). For those who want to try the script, change the bluetooth-ID to whatever your device has. The script kinda fails at the connect step, but i remember it worked once when i wrote it the first time. For those with similar problems, it might be worth trying.

It seems to occasionally perform the first step or so of the connection process, but tends to fail at some point, where the computer and the headset tend to disagree on whether or not they are connected, and then a timeout occurs. Something like that. If not, i get a low RSSI error, authentication failure, or br-connection-key-missing. I'm not entirely sure why.

Apparently this thing's firmware can be updated. I need an app for that on my phone, which doesn't even work. The app doesn't find the headset, so i guess that's out of the question. (unless someone knows a solution. I don't know.)

I've tried resetting my `/etc/bluetooth` configuration, but it didn't help. Now i really don't know what to do. This is a major source of frustration. At least it supports a headphone jack.

My laptop is an old HP Elitebook 8560w. Maybe the old hardware is a cause? I've heard others have had problems with bluetooth around the same time, so i'm wondering if there was a breaking change in the firmware or bluez or something along those lines at that point. Or maybe not. Does anyone know? Any help/advice appreciated.