второй моник

Ответить
ya
^-^
Сообщения: 2336
Зарегистрирован: 16 дек 2021, 19:56

второй моник

Сообщение ya »

sudo apt install lcdproc

Open the following:
sudo nano /etc/default/grub

Find the following line, uncomment it and change it to 1920x1080:
#GRUB_GFXMODE=640x480 --> GRUB_GFXMODE=1920x1080

Update it:
sudo update-grub

Then restart your computer:
sudo reboot

/etc/default/grub
В окне редактора с помощью клавиш со стрелками переместите курсор на строку, начинающуюся с "GRUB_CMDLINE_LINUX_DEFAULT", затем отредактируйте эту строку, добавив свой параметр в текст, заключенный в двойные кавычки после слов "quiet splash". (Обязательно добавьте ПРОБЕЛ после слова "splash" перед добавлением нового параметра).

Это должно выглядеть так: "quiet splash i915.alpha_support=1".


https://dgpu-docs.intel.com/installation-guides/ubuntu/ubuntu-jammy-arc.html

Код: Выделить всё

sudo apt-get install -y gpg-agent wget
wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | \
  sudo gpg --dearmor --output /usr/share/keyrings/intel-graphics.gpg

Код: Выделить всё

echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/debian bullseye arc' | \
  sudo tee  /etc/apt/sources.list.d/intel.gpu.bullseye.list
ya
^-^
Сообщения: 2336
Зарегистрирован: 16 дек 2021, 19:56

Re: второй моник

Сообщение ya »

Дрова на чипсет intel
https://dgpu-docs.intel.com/driver/installation.html

Установка драйверов через пересборку ядра
https://www.intel.com/content/www/us/en/docs/vtune-profiler/user-guide/2023-0/rebuild-and-install-i915-module-ubuntu.html

Информация о графическом устройстве

Код: Выделить всё

sudo hwinfo --display
https://unix.stackexchange.com/questions/556946/possible-missing-firmware-lib-firmware-i915-for-module-i915

Detailed instructions:

For Debian 10, add non-free to your /etc/apt/sources.list:

Код: Выделить всё

deb http://deb.debian.org/debian buster main contrib non-free
deb http://deb.debian.org/debian-security/ buster/updates main contrib non-free 
deb http://deb.debian.org/debian buster-updates main contrib non-free 
Debian 11 bullseye
/etc/apt/sources.list

Код: Выделить всё

deb http://deb.debian.org/debian bullseye main contrib non-free
deb http://deb.debian.org/debian-security/ bullseye/updates main contrib non-free 
deb http://deb.debian.org/debian bullseye-updates main contrib non-free 
sudo apt update
For Debian 12, add non-free-firmware to your /etc/apt/sources.list as instructed:

Код: Выделить всё

deb http://deb.debian.org/debian bookworm main non-free-firmware
deb http://deb.debian.org/debian-security/ bookworm-security main non-free-firmware
deb http://deb.debian.org/debian bookworm-updates main non-free-firmware 
Решение:
https://unix.stackexchange.com/questions/556946/possible-missing-firmware-lib-firmware-i915-for-module-i915/556947#556947

Код: Выделить всё

sudo apt-get install firmware-linux
Ответить