Thursday, October 22, 2020

Ubuntu20 audio not working, Dummy output in settings

I have upgraded my laptop from Ubuntu 18 to Ubuntu 20 after that I faced this issue and below are some of the steps that helps in resolution.

1) Try reinstalling "pavuconrol"
$ sudo apt-get install pavucontrol; pavucontrol &

2) Reinstall Pulse audio and reload alsa

$ sudo apt-get install --reinstall alsa-base pulseaudio
$ sudo alsa force-reload

3) Edit modprobe

$ sudo gedit /etc/modprobe.d/alsa-base.conf
and add below line
options snd-hda-intel model=generic

Then reboot.

More info on this step can be found here, https://www.linuxuprising.com/2018/06/fix-no-sound-dummy-output-issue-in.html

***

Saturday, October 3, 2020

Link to a page section in zyro.com website builder


How to link a page selection in Zyro website builder(zyro.com) instead of creating another page and linking

In simple words, find the section ID with in the page and hash tag in the actual URL for the button.

To find the section ID, please open your website in a new tab and click "Inspect" (there is an option when you right click the mouse). Then under "Elements" section, choose the corresponding section and find its ID (this is different for each section).


Which, when you insert this section ID to URL link in the button with # tag(this is important) before it, will automatically redirect you to corresponding block.

Example: If section ID is "yjrP-6Uid", then use as "#yjrP-6Uid" in the button URL


***