我刚刚在我的旧笔记本电脑上安装了 Ubuntu,它有 4GB RAM 和 512GB SSD。Ubuntu 是我唯一的操作系统,没有双启动。
我在工作中遇到了令人沮丧的意外崩溃。当它们发生时,我只能重新启动。我不确定发生了什么。
我完全是初学者,不是程序员、程序员或计算机科学家。
输出ls -al /var/crash
:
total 88
drwxrwsrwt 2 root whoopsie 4096 Oct 19 11:41 .
drwxr-xr-x 14 root root 4096 Apr 26 2018 ..
-rw-r----- 1 grillea whoopsie 80634 Oct 19 11:41 _usr_bin_update-manager.1000.crash
输出free -h
:
total used free shared buff/cache available
Mem: 2.9G 1.1G 1.2G 24M 652M 1.8G
Swap: 2.0G 0B 2.0G
输出grep -i swap /etc/fstab
:
/swapfile none swap sw 0 0
谢谢大家的回复。
答案1
交换
让我们将您的 /swapfile 从 2G 增加到 4G...
笔记:命令使用不当dd
可能导致数据丢失。建议复制/粘贴。
在里面terminal
...
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
确认 /etc/fstab 末尾的 /swapfile 行...并确认没有其他“swap”行...
要编辑,使用sudo -H gedit /etc/fstab
或sudo pico /etc/fstab
/swapfile none swap sw 0 0
reboot # reboot and verify operation
记忆测试
笔记:根据您正在运行的应用程序,您可能需要添加更多内存。
让我们测试一下你的记忆力...
去https://www.memtest86.com/并免费下载/运行它们memtest
来测试你的记忆力。至少完成一次所有 4/4 测试以确认记忆力良好。这可能需要几个小时才能完成。