ubuntu 19.10 在 acer aspire 5750 上卡在加载屏幕上

ubuntu 19.10 在 acer aspire 5750 上卡在加载屏幕上

有人知道为什么 Ubuntu 19.10 有时会卡在加载屏幕上吗?Ubuntu 是笔记本电脑上安装的唯一操作系统,对它所做的唯一修改是我安装了 Chromium 网络浏览器 (snap) 和 GParted。我还通过软件更新程序安装了最新更新。

笔记本电脑规格:

  • 宏碁 Aspire 5750-6456
  • 英特尔酷睿 i5-2450M
  • 英特尔高清显卡 3000
  • 4GB DDR3 内存
  • 500GB 硬盘

结果free -h

在此处输入图片描述

智能数据:

在此处输入图片描述

答案1

发生在我身上的两件事:

  1. 替换交换文件,它位于根目录中。

使用以下命令来执行此操作:

swapon——显示
sudo swapoff -a /swap文件
sudo fallocate -l 4G /swap文件
sudo mkswap /交换文件
sudo swapon/swap文件
swapon——显示

我很高兴地报告说,自从我这样做以来,ubuntu 就再也没有冻结过。

  1. Windows 和 Ubuntu 分区之间的双启动问题:

从 ubuntu 切换到 Windows 时,正常重启即可。从 Windows 切换到 ubuntu 时,只有关机和开机才有效。

也许您的磁盘上曾经有一个 Windows 分区?如果是这样,请看看是否可以删除它,这可能会帮助 grub 程序解决问题。

答案2

韦兰

在启动屏幕上禁用 Wayland 问题......

sudo -H gedit /etc/gdm3/custom.conf# 编辑此文件

并改变...

#WaylandEnable=false

到...

WaylandEnable=false

BIOS

注意:在更新 BIOS 之前,请备份所有重要文件。

注意:当前版本是 1.21。https://www.acer.com/ac/en/US/content/support-product/3474?b=1


交换

对于 4G RAM,您当前的 2G 交换空间太小。我们需要将其扩大。

更多详细信息即将公布...


坏块

您的硬盘出现读取错误和坏块。我们需要对您的硬盘进行坏块处理。

    注意:不要中止坏块扫描!

    注意:不要对 SSD 造成坏块

    注意:请先备份您的重要文件!

    注意:这可能需要几个小时

    注意:您可能面临硬盘故障

启动至 Ubuntu Live DVD/USB。

terminal...

sudo fdisk -l# 识别所有“Linux 文件系统”分区

sudo e2fsck -fcky /dev/sdXX# 只读测试

或者

sudo e2fsck -fccky /dev/sdXX# 非破坏性读写测试(受到推崇的)

-k 很重要,因为它会保存之前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有之前的坏块信息。

-fccky 参数...

   -f    Force checking even if the file system seems clean.

   -c    This option causes e2fsck to use badblocks(8) program  to  do  a
         read-only  scan  of  the device in order to find any bad blocks.
         If any bad blocks are found, they are added  to  the  bad  block
         inode  to  prevent them from being allocated to a file or direc‐
         tory.  If this option is specified twice,  then  the  bad  block
         scan will be done using a non-destructive read-write test.

   -k    When combined with the -c option, any existing bad blocks in the
         bad blocks list are preserved, and any new bad blocks  found  by
         running  badblocks(8)  will  be added to the existing bad blocks
         list.

   -y    Assume  an answer of `yes' to all questions; allows e2fsck to be
         used non-interactively.  This option may not be specified at the
         same time as the -n or -p options.

相关内容