Ubuntu 桌面速度变慢

Ubuntu 桌面速度变慢

首先我要说的是,我是 Linux 新手。我使用的是 Ubuntu 18.04.2 LTS。我的桌面出现了问题。桌面有时会变慢,文件夹并不总是拖到另一个位置并冻结。问题可能是什么?

对于@Marmayogi 的请求

free --giga
              total        used        free      shared  buff/cache   available
Mem:              8           1           5           0           1           5
Swap:             2           0           2
sudo lshw -short -class memory
H/W path       Device     Class          Description
====================================================
/0/0                      memory         64KiB BIOS
/0/8                      memory         8GiB System Memory
/0/8/0                    memory         8GiB SODIMM DDR4 Synchronous 2400 MHz (0,
/0/8/1                    memory         [empty]
/0/8/2                    memory         [empty]
/0/8/3                    memory         [empty]
/0/e                      memory         128KiB L1 cache
/0/f                      memory         512KiB L2 cache
/0/10                     memory         4MiB L3 cache
/0/100/1f.2               memory         Memory controller

对于@heynnema 请求

ls -al ~/.local/share/gnome-shell/extensions
total 12
drwxrwxr-x 3 zuodion zuodion 4096 apr  6 10:25 .
drwx------ 3 zuodion zuodion 4096 apr  6 19:10 ..
drwxrwxr-x 3 zuodion zuodion 4096 apr  6 10:25 [email protected]

答案1

完成这些任务...

  • 在登录屏幕齿轮上选择“Ubuntu”环境

  • 将 BIOS 升级到 313/314https://www.asus.com/ph/Laptops/ASUS-Vivobook-X556UQ/HelpDesk_BIOS/

  • 从 Ubuntu Live DVD/USB运行memtest(如果有时间,请完成 4/4 次)

  • 禁用独立显卡,因为它已损坏(禁用驱动程序,或在 BIOS 中)

  • 禁用 Wayland,就像这样……


您的旧电脑和旧 GPU 可能存在问题。试试这个...

  • 启动到恢复模式
  • 选择根访问权限

类型:

sudo mount -o remount,rw /      # to remount the disk r/w

sudo pico /etc/gdm3/custom.conf # edit this file

改变:

#WaylandEnable=false

到:

WaylandEnable=false

然后重新启动。

更新#1:

我们启动了 Ubuntu Live 18.10 USB,没有发现任何问题。

更新 #2:

在升级到 18.10 之前,为了查看是否能解决桌面问题,我们应该先fsck检查一下您的文件系统,然后才能Software Updater进行升级。当然……备份好总是好的……以防万一出现问题 :-)

对于 18.04 或更新版本...

  • 启动至 Ubuntu Live DVD/USB
  • 打开terminal窗户
  • 类型sudo fdisk -l
  • 识别“Linux 文件系统”的 /dev/XXXX 设备名称
  • 输入sudo fsck -f /dev/XXXX# 用你之前找到的数字替换 XXXX
  • 如果有错误,请重复 fsck 命令
  • 类型reboot

更新 #3:

为了消除您的硬盘上的坏块导致问题的可能性,我们将进行测试以查找任何坏块。

首先,启动Disks应用程序,选择您的硬盘,然后转到“汉堡包”图标,并选择SMART Data & Tests。查看数据,注意包含单词“扇区”的项目。然后运行测试。

另外,让我们检查系统日志中是否存在磁盘错误......grep -i sda /var/log/syslog*如果输出很长,请将其复制/粘贴到 imgur.com(或 paste.ubuntu.com)中。

笔记:备份重要的 Ubuntu 文件总是一个好主意。

因此这样做可以测试坏块...(这可能需要一段时间)...

启动至 Ubuntu Live DVD/USB。

打开terminal...

使用 fdisk 方法更新 #2弄清楚/dev/sdaX

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

或者

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

-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.

更新 #4:

在坏块扫描期间/之后,驱动器损坏。需要更换。

答案2

如果该问题发生在虚拟机中,我也遇到过类似的问题。在 vmbox 中,可以通过从“设置”>“系统”>“处理器”将处理器数量更改为 2(或更多,具体取决于您的系统)来解决该问题。

相关内容