ULPS режим ультра энергосбережения на видеокартах AMD

Опубликовано jeord -

Если присутствуют фризы в играх, либо долгое переключение из спящего режима, помогает поиск в реестре EnableULPS, и перевод значения в 0.

Как ставить AMDGPU-PRO на Mint

Опубликовано jeord -

Hello,

you need to edit the "amdgpu-pro-install"-file.

Change the string "ubuntu" to debian or debianlinux or so.

The string "ubuntu" you can find in function os_release()

 

With Linux Mint i need to change it to "linuxmint" and installation will be fine

Error was encountered while opening journal files: Input/output error

Опубликовано NowhereMan -
journalctl -e
Error was encountered while opening journal files: Input/output error

Такая ерунда происходит, если в каталоге /var/log/journal/<MachineID> появляются файлы с нулевой длиной. Если удалить такие файлы, все работает.

Как отправить вывод команды в файл и не только

Опубликовано NowhereMan -
  • command > output.txt

    The standard output stream will be redirected to the file only, it will not be visible in the terminal. If the file already exists, it gets overwritten.

  • command >> output.txt

    The standard output stream will be redirected to the file only, it will not be visible in the terminal. If the file already exists, the new data will get appended to the end of the file.

  • command 2> output.txt

Видеодрайвер amdkmdap перестал отвечать и был успешно восстановлен.

Опубликовано jeord -

Лечится disable ULPS, можно прям в реестре.

_________________________________
Спасибо пользователю Крестовик с сайта https://forums.overclockers.ru
https://forums.overclockers.ru/viewtopic.php?p=11499907

Linux - как узнать, кто сидит в свопе?

Опубликовано NowhereMan -

Как в линуксах узнать, кто сидит в свопе? Очень просто:

#!/bin/bash
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less

Теги