How to fix audio and mic problems (HP ZBook 17 G3) Zorin 18 Pro

Worked for me to discover the problem.
Venice.ai will help you to fix.

a_user@HP-ZBook-17-G3:~$ sudo lshw -C multimedia
[sudo] password for a_user:
*-usb:1
description: Video
product: HP HD Camera
vendor: DETNQ019I633SH
physical id: 7
bus info: usb@1:7
version: 0.08
serial: 200901010001
capabilities: usb-2.00
configuration: driver=uvcvideo maxpower=500mA speed=480Mbit/s
*-multimedia
description: Audio device
product: 100 Series/C230 Series Chipset Family HD Audio Controller
vendor: Intel Corporation
physical id: 1f.3
bus info: pci@0000:00:1f.3
version: 31
width: 64 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list
configuration: driver=snd_soc_avs latency=64
resources: irq:131 memory:e5344000-e5347fff memory:e5330000-e533ffff
*-sound
description: avsprobemb
physical id: 2
logical name: card1
logical name: /dev/snd/comprC1D0
logical name: /dev/snd/controlC1

Verify the Fix: After your system reboots, log in and check the driver again:
bash

lshw -C multimedia

Look at the audio device line. It should now say driver=snd_hda_intel. If it does, check your sound in the system settings. You should now have output and input devices available.

Solution 2: If the Above Doesn't Work, Check PulseAudio/Alsa

If forcing the driver doesn't work, the issue might be with the sound server (PulseAudio) or its configuration.

Reload PulseAudio: Sometimes, the sound server just needs to be restarted to detect the hardware correctly.
bash

pulseaudio -k && pulseaudio --start

Check alsamixer: This is a command-line tool for managing audio levels. It's possible your outputs or inputs are simply muted.
    Run alsamixer in the terminal.
    Use the arrow keys to navigate to the "Master" and "Speaker" channels. Press the M key to unmute them if they show "MM" (muted). Use the up arrow to raise the volume.
    Look for a channel called "Internal Mic" or "Capture". Make sure it is unmuted (M key) and the volume is up.
    Press Esc to exit.

Solution 3: Check BIOS/UEFI Settings

HP ZBooks have an extensive BIOS. It's worth checking if there's an audio-related setting that could be interfering.

Reboot your laptop and press F10 repeatedly to enter the BIOS setup.
Look for tabs like "Advanced", "Device Options", or "Built-in Device Options".
See if there is an option for "Audio Controller" or "HD Audio". Ensure it is Enabled. Some systems have an "Audio Mode" setting; try setting it to "Standard" or "Compatible" if options are available.
Save and exit the BIOS.

Summary

Your problem is a classic case of the Linux kernel loading a modern but incompatible audio driver (snd_soc_avs) for your hardware. Solution 1 is your best bet and has a very high chance of resolving both your no-sound and no-microphone issues by forcing the use of the stable snd_hda_intel driver.