我刚刚安装了 lubuntu,一切都很好,直到我打开 Firefox 时,发现应用程序就冻结了,我试图进入终端,但我的笔记本电脑没有响应,唯一的办法是使用电源按钮强制关闭笔记本电脑。请帮帮我
笔记本电脑规格:2GB RAM Intel i3 2gen
答案1
让我们为您设置一个 /swapfile......
笔记:命令使用不当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 2G 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