刚刚在一台新机器上安装了全新的 Ubuntu。除了鼠标周期性延迟之外,我非常高兴。即使在延迟期间,其他一切似乎都运行良好。鼠标是无线的,并附带键盘(MS)。我有英特尔 i5 处理器和英特尔 UHD 显卡。我检查了日志,我看到的唯一可疑的事情已经在这里提到(但仍未解决):
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1857392
我还确保通过软件和更新更新了所有内容。我已将前置麦克风和辅助插孔与耳机连接起来(2 到 1 个辅助插孔)。
任何帮助,将不胜感激。
瑞泽
编辑:@heynnema 两者都是 Microsoft 和无线的。这里您按顺序要求的输出如下:
编辑2:@heynnema
# swap was on /dev/sda3 during installation
UUID=9cd65f59-278f-416d-aede-189ce6ff4086 none swap sw 0 0
total 12
drwx------ 2 reuven reuven 4096 Oct 8 03:08 .
drwx------ 23 reuven reuven 4096 Oct 8 00:45 ..
-rw-rw-r-- 1 reuven reuven 2476 Oct 8 03:08 application_state
-rw-rw-r-- 1 reuven reuven 0 Oct 5 14:47 gnome-overrides-migrated
编辑3:@heynnema
>>> sudo dmicode -s bios-version
1401
>>> sudo dmicode -t 2
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.1.1 present.
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: ASUSTeK COMPUTER INC.
Product Name: PRIME H310M-E R2.0
Version: Rev X.0x
Serial Number: 200265349501746
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
>>> sudo dmicode -t baseboard
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.1.1 present.
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: ASUSTeK COMPUTER INC.
Product Name: PRIME H310M-E R2.0
Version: Rev X.0x
Serial Number: 200265349501746
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x001D, DMI type 10, 6 bytes
On Board Device Information
Type: Video
Status: Enabled
Description: To Be Filled By O.E.M.
Handle 0x004A, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:00.0
Handle 0x004B, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Video
Type: Video
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:02.0
Handle 0x004C, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 2
Bus Address: 0000:00:14.0
Handle 0x004D, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 3
Bus Address: 0000:00:16.0
Handle 0x004E, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - SATA
Type: SATA Controller
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:17.0
Handle 0x004F, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 4
Bus Address: 0000:00:1f.0
Handle 0x0050, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 5
Bus Address: 0000:00:1f.2
Handle 0x0051, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Sound
Type: Sound
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:1f.3
Handle 0x0052, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
答案1
BIOS
华硕 PRIME H310M-E R2.0
您的 BIOS 修订版为 1401。
有较新的 BIOS 可用,版本 1605,日期为 2020 年 8 月 11 日,可以下载这里。
注意:确认我拥有适合您型号的正确网页。
注意:更新 BIOS 之前请做好备份。
交换
您的交换分区超过 37G。让我们将 37G 的交换分区更改为 4G 的 /swapfile。
在里面terminal
...
sudo swapoff -a # turn off swap
要编辑 /etc/fstab,请使用sudo -H gedit /etc/fstab
或sudo pico /etc/fstab
注释掉以下行:
UUID=9cd65f59-278f-416d-aede-189ce6ff4086 none swap sw 0 0
保存编辑并退出编辑器。
笔记:命令使用不当dd
可能导致数据丢失。建议复制/粘贴。
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 8G 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
注意:37G 交换分区(/dev/sda3)不再使用,可能会被删除,并且未分配的空间可能会使用 添加回您的 Ubuntu 分区gparted
。