Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Same happens here.
Environment:
Ubuntu 20.04 LTS
Mate Desktop 1.24.0
HWE-Kernel 5.13.0.40.45
Steam Client Version: 1650493792 (Stean Beta Client 20.04.2022)
Steam System Information - Operating System Version:
"Manjaro Linux" (64 bit)
Kernel Name: Linux
Kernel Version: 5.17.1-3-MANJARO
X Server Vendor: The X.Org Foundation
X Server Release: 12101003
X Window Manager: Xfwm4
Steam Runtime Version: steam-runtime_0.20220315.0
further I use XFCE 4.16
Seems like something to do with the embedded browser, as the "outer" parts of the UI are fine.
Ubuntu 20.04.4 LTS (64 bit)
Kernel Name: Linux
Kernel Version: 5.4.0-107-generic
X Server Vendor: The X.Org Foundation
X Server Release: 12013000
X Window Manager: Metacity (Marco)
Steam Runtime Version: steam-runtime_0.20220315.0
DE: MATE 1.24.0
GPU: NVIDIA GeForce GTX 1660 SUPER (470.129.06 driver)
"Manjaro Linux" (64 bit)
Kernel Name: Linux
Kernel Version: 5.15.41-1-MANJARO
X Server Vendor: The X.Org Foundation
X Server Release: 12101003
X Window Manager: i3
Steam Runtime Version: steam-runtime_0.20220315.0
NVIDIA Corporation NVIDIA GeForce RTX 3060/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 510.73.05
OpenGL Version: 4.6
Ubuntu 22.04 LTS (64 bit)
Kernel Name: Linux
Kernel Version: 5.15.0-39-generic
X Server Vendor: The X.Org Foundation
X Server Release: 12101003
X Window Manager: GNOME Shell
Steam Runtime Version: steam-runtime_0.20220315.0
Driver: NVIDIA Corporation NVIDIA GeForce GTX 750/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 510.73.05
OpenGL Version: 4.6
Operating System Version:
"Manjaro Linux" (64 bit)
Kernel Name: Linux
Kernel Version: 5.15.48-1-MANJARO
X Server Vendor: The X.Org Foundation
X Server Release: 12101003
X Window Manager: KWin
Steam Runtime Version: steam-runtime_0.20220601.1
Video Card:
Driver: NVIDIA Corporation NVIDIA GeForce GTX 1070 Ti/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 515.48.07
OpenGL Version: 4.6
Operating System Version:
Zorin OS 16.1 (64 bit)
Kernel Name: Linux
Kernel Version: 5.15.0-41-generic
X Server Vendor: The X.Org Foundation
X Server Release: 12013000
X Window Manager: GNOME Shell
Steam Runtime Version: steam-runtime_0.20220315.0
Video Card:
Driver: NVIDIA Corporation NVIDIA GeForce GTX 1060 6GB/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 510.73.05
OpenGL Version: 4.6
Desktop Color Depth: 24 bits per pixel
Monitor Refresh Rate: 60 Hz
Revision Not Detected
Number of Monitors: 2
Number of Logical Video Cards: 1
Primary Display Resolution: 1920 x 1080
Desktop Resolution: 3600 x 1080
Primary Display Size: 20.51" x 11.54" (23.50" diag)
52.1cm x 29.3cm (59.7cm diag)
Primary Bus: PCI Express 16x
Primary VRAM: 6144 MB
Supported MSAA Modes: 2x 4x 8x 16x
Copied from above:
The solution is to configure the nvidia kernel module to store video RAM in a temporary file when suspending. We want this file to be in tmpfs (RamDisk) for speed.
Step 1: Enable nvidia-suspend.service:
# systemctl enable nvidia-suspend.service
Step 2: Create /tmp/nvidia-tmpfs directory that will be made a tmpfs (RamDisk):
# mkdir /tmp/nvidia-tmpfs
Step 3: Check if your /tmp directory is tmpfs or on disk:
$ df
If you don't see an entry for /tmp it is under / which is on disk. If you do see /tmp as type tmpfs you can continue at step 5.
Step 4: Mount /tmp/nvidia-tmpfs as tmpfs at boot by adding this line to /etc/fstab
tmpfs /tmp/nvidia-tmpfs tmpfs defaults 0 0
Step 5: Create /etc/modprobe.d/nvidia-power-management.conf with the following text.
options nvidia NVreg_PreserveVideoMemoryAllocations=1 NVreg_TemporaryFilePath=/tmp/nvidia-tmpfs
Step 6: Update initramfs so the nvidia module will read the new parameters:
# update-initramfs -u
Step 7: Reboot
To check that the nvidia module is using the new parameters you can do this
$ grep -i pres /proc/driver/nvidia/params
PreserveVideoMemoryAllocations: 1
$ grep -i temp /proc/driver/nvidia/params
TemporaryFilePath: "/tmp/nvidia-tmpfs"
Thanks again @jamethy!