linux

[TUTORIAL] How to Install and Play Escape From Tarkov on GNU/Linux

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

Introduction

The information found in this guide has been acquired through a thread on Linux Support from Escape From Tarkov's official forum. You can find a link to the page HERE. Without the efforts of the developers at CodeWeavers, WINE, Valve, and so many other individuals, this would not be possible. Thank you all for your work!

Теги

Как ставить 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> появляются файлы с нулевой длиной. Если удалить такие файлы, все работает.

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

Теги

Подключения по SSH без Ввода Пароля

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

1. Генерируем пару ключей на локальной машине

Сгенерируем ключи аутентификации для SSH с помощью ssh-keygen.

$ ssh-keygen

Вывод: