Hi,
I just bought a brand new LG Gram. For the 2 minutes that I used Windows, the speakers worked fine. Since I installed pop OS the speakers don’t work at all. I even tried reinstalling the whole entire OS and they still aren’t working.
Thanks in advance!
Great, I’m glad you now have sound :)
To have the script run at boot, you need to create a service file:
sudo gedit /etc/systemd/system/necessary-verbs.service
That should open a text editor that you can write into. You can replace
gedit
withvim
ornano
if you prefer those.In that file, you want to put the following contents:
[Unit] Description=Run internal speaker fix script at startup After=getty.target [Service] Type=simple ExecStart=/usr/local/sbin/necessary-verbs.sh TimeoutStartSec=0 [Install] WantedBy=default.target
Once you save that file, you can enable it as follows:
sudo systemctl daemon-reload sudo systemctl enable necessary-verbs.service
Now, when you boot, this service will run that script and thus setup your audio.
See if you can get that to work.
Thank you so so so much for taking the time to write that! But before I read you message I actually had to restart my laptop for a different reason and the sound still works. This is very weird because it said in the link to the script that it wouldn’t still work after a reboot, but it is. Thanks again so much!!!