Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Kernel & Hardware
  • Search

[SOLVED] No sound with Intel CM238 HD Audio

Kernel not recognizing your hardware? Problems with power management or PCMCIA? What hardware is compatible with Gentoo? See here. (Only for kernels supported by Gentoo.)
Post Reply
Advanced search
40 posts
  • Previous
  • 1
  • 2
Author
Message
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Fri Jul 24, 2020 5:52 pm

egrep,

dmesg is missing.

Its certainly a kernel issue as

Code: Select all

00:1f.3 Audio device [0403]: Intel Corporation CM238 HD Audio Controller [8086:a171] (rev 31)
	Subsystem: Lenovo CM238 HD Audio Controller [17aa:3803]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
is correct and you still don't have any sound devices.

Why do you think that

Code: Select all

CONFIG_SND_HDA_CODEC_REALTEK=m
is the correct codec?
Last edited by NeddySeagoon on Fri Jul 24, 2020 5:55 pm, edited 1 time in total.
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
fturco
Veteran
Veteran
Posts: 1181
Joined: Wed Dec 08, 2010 8:38 pm

  • Quote

Post by fturco » Fri Jul 24, 2020 5:54 pm

@egrep: did you update GRUB configuration after installing the kernel?
Top
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Fri Jul 24, 2020 6:07 pm

fturco,

dmesg will tell :)
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Fri Jul 24, 2020 6:30 pm

I'm sorry for the missed dmesg output. Here it is: https://pastebin.com/raw/mKV7rT0z
NeddySeagoon wrote:Why do you think that

Code: Select all

CONFIG_SND_HDA_CODEC_REALTEK=m
is the correct codec?
It was just may try because of this:
theotherjoe wrote:also, you may want to include all the other available audio codecs in your
kernel just to be on the safe side (even though it should be a Realtek ALC233,
from what I understand).
Yes, I should disable this of course.

fturco wrote:@egrep: did you update GRUB configuration after installing the kernel?
I did this once when I updated the kernel version.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Fri Jul 24, 2020 6:36 pm

NeddySeagoon wrote:egrep,

dmesg is missing.

Its certainly a kernel issue as

Code: Select all

00:1f.3 Audio device [0403]: Intel Corporation CM238 HD Audio Controller [8086:a171] (rev 31)
	Subsystem: Lenovo CM238 HD Audio Controller [17aa:3803]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
is correct and you still don't have any sound devices.

Why do you think that

Code: Select all

CONFIG_SND_HDA_CODEC_REALTEK=m
is the correct codec?
Btw, Lenovo says this is Realtek: https://pcsupport.lenovo.com/us/en/prod ... s/DS120220
Top
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Fri Jul 24, 2020 7:10 pm

egrep,

Code: Select all

[    0.000000] Linux version 5.7.10-gentoo (root@saturn) (gcc version 10.2.0 (Gentoo 10.2.0 p1), GNU ld (Gentoo 2.34 p4) 2.34.0) #31 SMP Fri Jul 24 18:51:26 EEST 2020
Thats 31 kernel builds and this one was built at Fri Jul 24 18:51:26 EEST 2020.
Good. Many people with sound problems are not running the kernel they think they are. Thats not you though.

Code: Select all

[    1.356128] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Thats the the HDMI output but there is no entry in /dev/snd for it.

Code: Select all

[    1.488692] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0
comes from ./sound/hda/hdac_controller.c
The code is

Code: Select all

        for (timeout = 1000; timeout > 0; timeout--) {
                if (snd_hdac_chip_readw(bus, CORBRP) & AZX_CORBRP_RST)
                        break;
                udelay(1);
        }
Either something is missing, or the timeout is not long enough for your hardware. I suspect the former.
If you want to try a longer timeout, change the timeout = 1000 for a bigger number and rebuild the kernel.

There is this kernel bug report.

Code: Select all

[    1.490220] snd_hda_intel 0000:00:1f.3: no codecs found!
is consistent with having some other codec that the one in the kernel.
Enable them all as modules. It may not matter unless that timeout is fixed.

Does this happen on a power on boot or resume from suspend or both?

Educated shot in the dark ... add the INTEL_LPSS options to your kernel.
There are about half a dozen.

Don't use

Code: Select all

[    1.571293] ntfs: driver 2.1.32 [Flags: R/W MODULE].
It won't do what you think it does but al least it no longer trashes NTFS filesystems.
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Fri Jul 24, 2020 8:39 pm

NeddySeagoon wrote:egrep,

Code: Select all

[    0.000000] Linux version 5.7.10-gentoo (root@saturn) (gcc version 10.2.0 (Gentoo 10.2.0 p1), GNU ld (Gentoo 2.34 p4) 2.34.0) #31 SMP Fri Jul 24 18:51:26 EEST 2020
Thats 31 kernel builds and this one was built at Fri Jul 24 18:51:26 EEST 2020.
Good. Many people with sound problems are not running the kernel they think they are. Thats not you though.

Code: Select all

[    1.356128] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Thats the the HDMI output but there is no entry in /dev/snd for it.

Code: Select all

[    1.488692] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0
comes from ./sound/hda/hdac_controller.c
The code is

Code: Select all

        for (timeout = 1000; timeout > 0; timeout--) {
                if (snd_hdac_chip_readw(bus, CORBRP) & AZX_CORBRP_RST)
                        break;
                udelay(1);
        }
Either something is missing, or the timeout is not long enough for your hardware. I suspect the former.
If you want to try a longer timeout, change the timeout = 1000 for a bigger number and rebuild the kernel.

There is this kernel bug report.

Code: Select all

[    1.490220] snd_hda_intel 0000:00:1f.3: no codecs found!
is consistent with having some other codec that the one in the kernel.
Enable them all as modules. It may not matter unless that timeout is fixed.

Does this happen on a power on boot or resume from suspend or both?

Educated shot in the dark ... add the INTEL_LPSS options to your kernel.
There are about half a dozen.

Don't use

Code: Select all

[    1.571293] ntfs: driver 2.1.32 [Flags: R/W MODULE].
It won't do what you think it does but al least it no longer trashes NTFS filesystems.
No luck :-/

Code: Select all

$ dmesg | grep -Ei '(sound|alsa|hda)'
[    1.359487] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    1.480967] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0
[    1.482100] snd_hda_intel 0000:00:1f.3: no codecs found!
[    1.515079] random: alsactl: uninitialized urandom read (4 bytes read)
[    2.064798] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0
dmesg: https://pastebin.com/raw/tSVPBaDM
Kernel Config: https://pastebin.com/raw/fPmttMH7

Did I missed to enable something else?
Last edited by egrep on Sat Jul 25, 2020 11:54 am, edited 1 time in total.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Sat Jul 25, 2020 9:14 am

Changing sound/hda/hdac_controller.c does not help at all.

I changed it a bit from:

Code: Select all

int timeout;

for (timeout = 1000; timeout > 0; timeout--) {
  if (snd_hdac_chip_readw(bus, CORBRP) & AZX_CORBRP_RST)
    break;
  udelay(1);
}
if (timeout <= 0)
  dev_err(bus->dev, "CORB reset timeout#1, CORBRP = %d\n",
	  snd_hdac_chip_readw(bus, CORBRP));
to:

Code: Select all

int timeout;
int reads = 0;

for (timeout = 100000; timeout > 0; timeout--) {
  reads++;
  if (snd_hdac_chip_readw(bus, CORBRP) & AZX_CORBRP_RST)
    break;
  udelay(1);
}
if (timeout <= 0)
  dev_err(bus->dev, "CORB reset timeout#1, CORBRP = %d (performed reads: %d)\n",
	  snd_hdac_chip_readw(bus, CORBRP), reads);
Now dmesg looks as follows:

Code: Select all

$ dmesg -w | grep snd_hda_intel
[    1.365090] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    1.658443] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0 (performed reads: 100000)
[    1.659746] snd_hda_intel 0000:00:1f.3: no codecs found!
[    2.445595] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0 (performed reads: 100000)
I've tried setting "snd_hda_intel.single_cmd=1" and "snd_hda_intel.probe_mask=1" as proposed here, but this does not change anything.

Adding "intel_idle.max_cstate=0" and "intel_pstate=disable" boot options as mentioned here changes nothing.
Top
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Sat Jul 25, 2020 10:43 am

egrep,

There is lots of good reading in
/usr/src/linux/Documentation/sound/hd-audio
In particular, notes.rst and models.rst. Start with notes.rst.

Both files give module parameters you can pass to
snd_hda_intel when it loads.

As you have CONFIG_SND_HDA_INTEL=m and CONFIG_MODULE_UNLOAD=y, that makes life easy.

Do

Code: Select all

modprobe -r snd_hda_intel
That will fail if other modules are using snd_hda_intel, they must be removed first.
Its a bit of trial and error but lsmod can help.

Once snd_hda_intel has been removed, it can be reloaded with

Code: Select all

modprobe snd_hda_intel <some list of parameters>

Code: Select all

modinfo snd_hda_intel
will show a list of possible parameters.
It will make you head hurt, as one invocation of modprobe snd_hda_intel can be used to set up lots of HD-Audio cards differently, hence the Array of ...

Once snd_hda_intel is reloaded, have a look at the end of dmesg. You want the timeout message to have gone away and your codec to be detected.

Rinse and repeat for the next

Code: Select all

modprobe snd_hda_intel <some list of parameters>
that you want to try.
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Sat Jul 25, 2020 11:21 am

I managed to get it working. Finally!

I have reset my motherboard and CMOS. After that, I setup Kernel as follows:

Code: Select all

$ cat /usr/src/linux/.config | grep SND | grep -v '^#'
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_SEQ_DEVICE=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_PCM_TIMER=y
CONFIG_SND_HRTIMER=m
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_SEQUENCER=m
CONFIG_SND_SEQ_DUMMY=m
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_SEQ_MIDI_EVENT=m
CONFIG_SND_SEQ_MIDI=m
CONFIG_SND_SEQ_VIRMIDI=m
CONFIG_SND_DRIVERS=y
CONFIG_SND_VIRMIDI=m
CONFIG_SND_PCI=y
CONFIG_SND_HDA=m
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_CODEC_REALTEK=m
CONFIG_SND_HDA_CODEC_HDMI=m
CONFIG_SND_HDA_GENERIC=m
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDA_CORE=m
CONFIG_SND_HDA_COMPONENT=y
CONFIG_SND_HDA_I915=y
CONFIG_SND_HDA_PREALLOC_SIZE=2048
CONFIG_SND_INTEL_NHLT=y
CONFIG_SND_INTEL_DSP_CONFIG=m
CONFIG_SND_USB=y
CONFIG_SND_PCMCIA=y
CONFIG_SND_X86=y
After reboot dmesg is:

Code: Select all

$ dmesg | grep -Ei '(sound|alsa|hda)'
[    1.334604] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    1.372768] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    1.372770] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.372772] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    1.372773] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    1.372774] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    1.372775] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    1.372776] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    1.426306] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[    1.426366] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[    1.426413] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[    1.426460] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    1.426502] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    1.426545] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    1.426585] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    1.458811] random: alsactl: uninitialized urandom read (4 bytes read)
Thank you guys for the help!
Top
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Sat Jul 25, 2020 11:33 am

egrep,

I'm pleased that its working but I don't understand what resetting the CMOS did.
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
egrep
n00b
n00b
User avatar
Posts: 49
Joined: Thu Jul 16, 2020 10:19 am

  • Quote

Post by egrep » Sat Jul 25, 2020 11:43 am

NeddySeagoon wrote:egrep,

I'm pleased that its working but I don't understand what resetting the CMOS did.
NeddySeagoon,

I decided to check if it would work after reading this comment. It was just a theory. However, it looks like it works. It is interesting that I have never changed the CMOS settings before.
Top
NeddySeagoon
Administrator
Administrator
User avatar
Posts: 56094
Joined: Sat Jul 05, 2003 9:37 am
Location: 56N 3W

  • Quote

Post by NeddySeagoon » Sat Jul 25, 2020 11:46 am

egrep,

Thank you for sharing that. I'm sure it will help future readers of this topic.
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Top
fturco
Veteran
Veteran
Posts: 1181
Joined: Wed Dec 08, 2010 8:38 pm

  • Quote

Post by fturco » Sat Jul 25, 2020 11:46 am

egrep wrote:I managed to get it working. Finally!
I'm glad you fixed this problem! :)
Top
AmirKabir
n00b
n00b
User avatar
Posts: 3
Joined: Tue Nov 10, 2020 12:26 pm
Location: Iran

  • Quote

Post by AmirKabir » Tue Nov 10, 2020 12:48 pm

egrep wrote:I managed to get it working. Finally!

I have reset my motherboard and CMOS. After that, I setup Kernel as follows:

Code: Select all

$ cat /usr/src/linux/.config | grep SND | grep -v '^#'
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_SEQ_DEVICE=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_PCM_TIMER=y
CONFIG_SND_HRTIMER=m
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_SEQUENCER=m
CONFIG_SND_SEQ_DUMMY=m
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_SEQ_MIDI_EVENT=m
CONFIG_SND_SEQ_MIDI=m
CONFIG_SND_SEQ_VIRMIDI=m
CONFIG_SND_DRIVERS=y
CONFIG_SND_VIRMIDI=m
CONFIG_SND_PCI=y
CONFIG_SND_HDA=m
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_CODEC_REALTEK=m
CONFIG_SND_HDA_CODEC_HDMI=m
CONFIG_SND_HDA_GENERIC=m
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDA_CORE=m
CONFIG_SND_HDA_COMPONENT=y
CONFIG_SND_HDA_I915=y
CONFIG_SND_HDA_PREALLOC_SIZE=2048
CONFIG_SND_INTEL_NHLT=y
CONFIG_SND_INTEL_DSP_CONFIG=m
CONFIG_SND_USB=y
CONFIG_SND_PCMCIA=y
CONFIG_SND_X86=y
After reboot dmesg is:

Code: Select all

$ dmesg | grep -Ei '(sound|alsa|hda)'
[    1.334604] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    1.372768] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    1.372770] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.372772] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    1.372773] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    1.372774] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    1.372775] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    1.372776] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    1.426306] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[    1.426366] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[    1.426413] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[    1.426460] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    1.426502] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    1.426545] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    1.426585] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    1.458811] random: alsactl: uninitialized urandom read (4 bytes read)
Thank you guys for the help!
You don't actually need all of this.

All you have to do ( for me at least ) was the enable CONFIG_SND_HDA_CODEC_REALTEK in:

Code: Select all


-> Device Drivers              
                                                                                     
         -> Sound card support (SOUND [=y])                                                                                          
           -> Advanced Linux Sound Architecture (SND [=y])                                                                           
             -> HD-Audio

                     <*> Build Realtek HD-audio codec support

You can also enable these just to be sure:

Code: Select all


CONFIG_SND_HDA_INTEL
CONFIG_SND_HDA_HWDEP
CONFIG_SND_HDA_RECONFIG
CONFIG_SND_HDA_INPUT_BEEP
CONFIG_SND_HDA_PATCH_LOADER
CONFIG_SND_HDA_GENERIC

Also I don't really think taking out and putting back your CMOS battery really does anything since I didn't do it and it worked.
Top
Post Reply

40 posts
  • Previous
  • 1
  • 2

Return to “Kernel & Hardware”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic