Realtek hd audio linux arch

Arch Linux

This is a fresh install on a new computer, alsa is installed, everything is unmuted. I have sound, system notifications, youtube, vlc even in virutal box. Then for reason’s I don’t fully understand yet, I get KDE notifications like this: The audio playback device HD-Audio Generic (ALC662 rev3 Analog) does not work. Falling back to Default. Or KDE tells me the device has been removed. If I go into Kmix Audio Setup I have a nice list of devices that no longer work.
If I log out and log back in, everything is working again. Any help would be appreciated, this is driving me insane.

aplay -l **** List of PLAYBACK Hardware Devices **** card 0: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Generic [HD-Audio Generic], device 0: ALC662 rev3 Analog [ALC662 rev3 Analog] Subdevices: 0/1 Subdevice #0: subdevice #0 
lsmod | grep snd snd_hda_codec_realtek 46566 1 snd_hda_codec_generic 53211 1 snd_hda_codec_realtek snd_hda_codec_hdmi 36588 1 snd_hda_intel 37704 6 snd_hda_codec 99871 4 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_codec_generic,da_intel snd_hwdep 6332 1 snd_hda_codec snd_pcm 79815 5 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel snd_timer 18718 1 snd_pcm snd 59286 18 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,sm,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel soundcore 5418 1 snd

Last edited by LinuxChick (2014-04-26 22:45:35)

Источник

Как установить драйвера Realtek HD на Linux: шаг за шагом руководство

Realtek HD Audio является одним из самых популярных аудио-драйверов для операционных систем Windows. Но что делать, если вы используете Linux? В этой статье мы опишем пошаговое руководство по установке драйверов Realtek HD на Linux.

Читайте также:  Linux подключение модулей ядра

Шаг 1: Определите точную модель звуковой карты

Прежде всего, вам нужно определить, какая модель звуковой карты установлена в вашем компьютере. Это можно сделать с помощью команды lspci в терминале:

Команда должна выдать информацию о звуковой карте. Например:

00:1f.3 Audio device: Intel Corporation 200 Series PCH HD Audio 

Шаг 2: Установите необходимые зависимости

Перед установкой драйверов, убедитесь, что у вас установлены необходимые зависимости. Откройте терминал и выполните следующую команду:

sudo apt-get install build-essential linux-headers-generic 

Шаг 3: Скачайте драйверы Realtek HD от производителя

Чтобы загрузить драйверы Realtek HD для Linux, перейдите на сайт производителя и найдите соответствующий раздел поддержки. Оттуда вы можете загрузить драйверы для вашей модели звуковой карты.

Шаг 4: Распакуйте драйверы и перейдите в папку

После того, как вы скачали драйверы, распакуйте их и перейдите в папку с помощью команд:

Шаг 5: Настройка конфигурации звука

Прежде чем компилировать драйвер, необходимо внести изменения в конфигурацию звука. Для этого откройте файл с помощью текстового редактора:

sudo nano /etc/modprobe.d/alsa-base.conf 

Добавьте следующую строку в конец файла:

options snd-hda-intel model=auto 

Шаг 6: Установите драйверы

Теперь, когда конфигурация звука настроена, вы можете установить драйверы. Для этого выполните следующие команды:

sudo su make make install 

Шаг 7: Перезагрузите систему

После установки драйверов рекомендуется перезагрузить компьютер, чтобы изменения вступили в силу:

Вывод

В этой статье мы показали, как установить драйверы Realtek HD на Linux. Следуя этим простым шагам, вы сможете наслаждаться качественным звуком на вашем компьютере под управлением Linux.

Источник

ArchPKGs

Full Guide on realtek-firmware Installation on Arch Linux (Manjaro, ArcoLinux)

realtek-firmware is «Realtek-specific firmware for WiFI, Bluetooth and Ethernet cards» based on its definition. To install or remove realtek-firmware from AUR (Arch User Repository) on Arch Linux, Manjaro, EndeavourOS, Garuda and Anarchy is comparatively simple. This tutorial will taught you how to install/update/uninstall the package with either the default package manager pacman or an AUR helper like yay .

Table of Contents

There are two well known approaches to install realtek-firmware from AUR. pacman is the choice for you if you are an experienced Linux user and know the concept of how packages are built. Otherwise, yay is a convenient alternative to install packages without the hassle of reviewing PKGBUILD and build packages with makepkg yourself.

Читайте также:  Astra linux samba share
sudo pacman -S --needed git && git clone https://aur.archlinux.org/realtek-firmware.git && cd realtek-firmware && makepkg -si
  1. Install git if it is not on your system.
  2. clone the package’s git repository from upstream URL.
  3. cd into the folder of the repository.
  4. Use makepkg to build the package, then install it with pacman .
yay -S realtek-firmware

Just like installing AUR packages, updating them is considerably the same. Simply pull it from AUR then re-build it. However, it is still recommended to upgrade your whole system first with sudo pacman -Syu before updating any packages to avoid breaking your system, since Arch is a rolling-release Linux distro.

Before running the command, make certain you’re in the folder of the repository you previously cloned:

git pull && makepkg -si
  1. pull from the package’s git repository.
  2. Build the package with makepkg , then update it with pacman .

Compared to installing and updating packages, uninstalling is the simplest of these three,just choose whether to keep the unused dependencies and the configuration files used by the package.

sudo pacman -R realtek-firmware
sudo pacman -Rs realtek-firmware
sudo pacman -Rns realtek-firmware
yay -R realtek-firmware
yay -Rs realtek-firmware
yay -Rns realtek-firmware

For more details about installing/updating AUR packages or how to install yay , please refer to Two Ways to Install Packages from AUR on Arch Linux/Manjaro.

Full Tutorial on bilimini-git Installation on Arch Linux/Manjaro/Artix

bilimini-git is «Hide!bilibili» quoting from its gist. To get bilimini-git from AUR (Arch User Repository) on Arch Linux, Manjaro, EndeavourOS, ArcoLinux, BlackArch, Artix and RebornOS is quite easy. This guide will cover how to install, update and uninstall the package with either the default package manager pacman or an AUR helper like yay.

Читайте также:  Linux device driver programming using beaglebone black ldd1

How to Install (Update/Remove) perl-lingua-stem-ru on Arch Linux/Manjaro/EndeavourOS

perl-lingua-stem-ru is «Porter’s stemming algorithm for Russian (KOI8-R only)» referring to its outline. To get perl-lingua-stem-ru from AUR (Arch User Repository) on Arch Linux and Arch-based distributions (e.g. Manjaro, EndeavourOS, RebornOS) is rather uncomplicated. This guide will show you step-by-step how to install/update/uninstall the package with either the default package manager pacman or an AUR helper like yay.

The Complete Tutorial on Installing dhcplease-git on Arch-Based Linux (Manjaro/Garuda)

Referring to dhcplease-git’s definition, it’s «A parser for dhcpcd lease files (/var/lib/dhcpcd/dhcpcd*.leases)». To install and update this package (dhcplease-git) from AUR (Arch User Repository) on Arch Linux and Arch-based distros (e.g. Manjaro, EndeavourOS, Parabola) is quite straightforward. This guide will taught you how to install/update/remove the package with either the built-in package manager pacman or an AUR helper (e.g. yay).

The Complete Guide on Installing r-plier on Arch Linux, Manjaro and ArcoLinux

Quoting from r-plier’s own gist, it’s «Implements the Affymetrix PLIER algorithm». To get this package (r-plier) from AUR (Arch User Repository) on Arch Linux, Manjaro, EndeavourOS, Garuda and ArcoLinux is relatively simple. This tutorial will taught you how to install/update/remove the package with either the built-in package manager pacman or an AUR helper like yay.

wingpanel-indicator-a11y-git Install (Update/Uninstall) Tutorial on Arch Linux/Manjaro/Garuda

wingpanel-indicator-a11y-git is «Universal Access indicator for Wingpanel» based on its own outline. To install wingpanel-indicator-a11y-git from AUR (Arch User Repository) on Arch Linux, Manjaro, EndeavourOS and ArcoLinux is quite straightforward. This tutorial will cover how to install/update/remove the package with either the default package manager pacman or an AUR helper (e.g. yay).

How to Install haskell-aws (Full Instructions) on Arch Linux, Manjaro and Parabola

Referring to extra/haskell-aws’s definition, it’s «Amazon Web Services (AWS) for Haskell». To install and update this package (extra/haskell-aws) from Arch official repository (Extra) on Arch Linux, Manjaro, EndeavourOS, Parabola, ArcoLinux and Garuda is rather uncomplicated. This tutorial will be covering how to install, update and remove the package with either the built-in package manager pacman or an AUR helper like yay.

More guides… copyright 2023 ArchPKGs. All Rights Reserved.

Источник

Оцените статью
Adblock
detector