Ubuntu 因未知原因不定期冻结

Ubuntu 因未知原因不定期冻结

我正在使用 ubuntu 20.04 LTS Desktop(Focal Fossa)。我最近安装了它,它是一个全新安装。

当这种情况发生时,一切都会停止,甚至光标也是如此,但有时我仍然可以缓慢移动它。我设法使用 MagicSysRqKey 重置设备。

我使用 Chrome,但我已经禁用了硬件加速和 GPU 光栅化。我还用官方版本更新了我的计算机的 BIOS。这确实有帮助,但有时仍会发生这种情况。


以下是我的设备的规格:

Lenovo Thinkpad 440
Memory: 3.7 GiB
Processor: Intel® Core™ i5-4300U CPU @ 1.90GHz × 4 
Graphics: Intel® HD Graphics 4400 (HSW GT2)
Os Type: 64-bit
GNOME Version: 3.36.2

SMBIOS 2.7 present.
61 structures occupying 2457 bytes.

$ free -h
              total        used        free      shared  buff/cache   available
Mem:          3.7Gi       1.1Gi       1.1Gi       116Mi       1.5Gi       2.3Gi
Swap:         2.0Gi          0B       2.0Gi

$ sysctl vm.swappiness
vm.swappiness = 60

$ grep -i swap /etc/fstab
/swapfile                                 none            swap    sw              0       0

顶部

答案1

由于只有 4G RAM 和 2G 交换空间,我认为您遇到了交换空间问题。我们将 /swapfile 从 2G 增加到 4G。

笔记:命令使用不当dd可能导致数据丢失。建议复制/粘贴。

sudo swapoff -a           # turn off swap
sudo rm -i /swapfile      # remove old /swapfile

sudo dd if=/dev/zero of=/swapfile bs=1M count=4096

sudo chmod 600 /swapfile  # set proper file protections
sudo mkswap /swapfile     # init /swapfile
sudo swapon /swapfile     # turn on swap
free -h                   # confirm 4G RAM and 4G swap
reboot                    # reboot and verify operation

相关内容