this post was submitted on 10 Mar 2024
10 points (91.7% liked)

Linux

47237 readers
3343 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I have a Galaxy Book (2017) that I recently installed Kubuntu on and discovered that the speakers don't work, after some research it seems I'm not the only one who had this issue. Others have been able to fix the speakers using sof-firmware and verb lists, I've tried using lists for ALC298 but it still isn't working, I can't really use this tablet without speakers so any help would be appreciated.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 6 months ago (1 children)

My issue seems to be that when those guides were written it assumed I had pulse audio and no pipewire.

[–] [email protected] 2 points 6 months ago

The Fedora and Debian thread solution should definitely work with Pipewire, as both those distros comes with pipewire default and no changes are discussed.

Keep an eye on the issue here:
https://github.com/thesofproject/linux/issues/4055#issuecomment-1332331409

Just to make sure we're on the same page, I take it that the following isn't working for you:

  1. Download necessary-verbs.sh from https://github.com/joshuagrisham/galaxy-book2-pro-linux/blob/main/sound/necessary-verbs.sh

  2. move it to /usr/local/sbin/necessary-verbs.sh

  3. make it executable with
    chmod +x necessary-verbs.sh

  4. Create a systemd service in /etc/systemd/system that runs the script at startup:
    [Unit]
    Description=Run internal speaker fix script at startup
    After=getty.target

    [Service]
    User=root
    Group=root
    Type=oneshot
    ExecStart=/usr/local/sbin/necessary-verbs.sh
    RemainAfterExit=yes

    [Install]
    WantedBy=default.target