This repository includes details on how to fix Speakers (ALC298) not working in Linux on the new Razer Blade 14 (2023)
- Install alsa-tools using
- Ubuntu
sudo apt get update sudo apt install alsa-tools
- Arch
sudo pacman -Syu sudo pacman -S alsa-tools
- Ubuntu
- Download the rb_audio.sh script
- Change permissions of the script
sudo chmod +x ~/Downloads/rb_audio.sh
- Run the script
sudo bash ~/Downloads/rb_audio.sh
- Copy the file to /usr/bin/ folder
sudo cp ~/Downloads/rb_audio.sh /usr/bin/
- Create a new service file in /etc/systemd/system/ folder
sudo nano /etc/systemd/system/rb_audio.service
- Add the following in the file
[Unit] Description=Razer Blade 14 audio fix [Service] ExecStart=/usr/bin/rb_audio.sh [Install] WantedBy=multi-user.target
- Change permissions and enable the service using
sudo chmod 755 /usr/bin/rb_audio.sh sudo systemctl enable rb_audio.service
- Restart and test speakers
Credits to jamir for his work