Good afternoon!!
After many years of Linux, I have finally switched to FreeBSD 14.3-RELEASE with GENERIC kernel, amd64.
So far being a good ride, already solved some problems I had on my own (thanks Linux for the training wheels LOL), but there's one little thing:
I have set the sound card and sound output its alright, but I can't get my laptop internal microphone to work.
Here's some information from
	
	
	
		
Information from
	
	
	
		
And information from
	
	
	
		
As per indicated by the Handbook, I have
I also have
After some research, I was able to grasp some understanding that this line:
of
	
	
	
		
indicates that its volume is set to 0.
So, I tried to set it with
	
	
	
		
Searching on the internet gave very few results, even considering both Google and DuckDuckGo results...
Can anyone help me out?
				
			After many years of Linux, I have finally switched to FreeBSD 14.3-RELEASE with GENERIC kernel, amd64.
So far being a good ride, already solved some problems I had on my own (thanks Linux for the training wheels LOL), but there's one little thing:
I have set the sound card and sound output its alright, but I can't get my laptop internal microphone to work.
Here's some information from
 cat /dev/sndstat
		Code:
	
	Installed devices:
pcm0: <Realtek ALC272 (Analog 2.0+HP/2.0)> (play/rec) default
pcm1: <Realtek ALC272 (Left Analog Mic)> (rec)
pcm2: <Intel Ibex Peak (HDMI/DP 8ch)> (play)
No devices installed from userspace.
	Information from
 mixer -f /dev/mixer0 (the speaker)
		Code:
	
	pcm0:mixer: <Realtek ALC272 (Analog 2.0+HP/2.0)> on hdaa0 (play/rec) (default)
    vol       = 1.00:1.00     pbk
    pcm       = 1.00:1.00     pbk
    speaker   = 1.00:1.00     rec
    mix       = 0.74:0.74     rec
    rec       = 1.00:1.00     pbk
    igain     = 1.00:1.00     pbk
    ogain     = 1.00:1.00     pbk
    monitor   = 0.67:0.67     rec src
	And information from
 mixer -f /dev/mixer1 (the microphone)
		Code:
	
	pcm1:mixer: <Realtek ALC272 (Left Analog Mic)> on hdaa0 (rec)
    speaker   = 0.00:0.00     rec
    mic       = 1.00:1.00     rec src
    rec       = 0.91:0.91     pbk
	As per indicated by the Handbook, I have
 snd_driver_load="YES" defined on  /boot/loader.conf loaded at boot time.I also have
 hw.snd.default_unit=0 defined on  /etc/sysctl.conf, also indicated by the Handbook.After some research, I was able to grasp some understanding that this line:
 speaker   = 0.00:0.00     recof
 mixer -f /dev/mixer1 output (for the microphone)
		Code:
	
	pcm1:mixer: <Realtek ALC272 (Left Analog Mic)> on hdaa0 (rec)
    speaker   = 0.00:0.00     rec
    mic       = 1.00:1.00     rec src
    rec       = 0.91:0.91     pbk
	indicates that its volume is set to 0.
So, I tried to set it with
 mixer -f /dev/mixer1 speaker=1.0, but this gave me (perhaps the most insightful?) output:
		Code:
	
	mixer: speaker.volume=1.00:1.00: Device not configured
pcm1:mixer: <Realtek ALC272 (Left Analog Mic)> on hdaa0 (rec)
    speaker   = 0.00:0.00     rec
    mic       = 1.00:1.00     rec src
    rec       = 0.91:0.91     pbk
	Searching on the internet gave very few results, even considering both Google and DuckDuckGo results...
Can anyone help me out?