---
title: "Deepin UOS Linux 睡眠唤醒后键盘失灵解决方法"
id: "2959"
type: "post"
slug: "deepin-uos-linux-%e7%9d%a1%e7%9c%a0%e5%94%a4%e9%86%92%e5%90%8e%e9%94%ae%e7%9b%98%e5%a4%b1%e7%81%b5%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95"
published_at: "2020-04-28T04:59:39+00:00"
modified_at: "2020-05-04T05:39:12+00:00"
url: "https://seq.ink/all/2959.html"
markdown_url: "https://seq.ink/all/2959.html.md"
excerpt: "在grub里加上i8042.nomux=1参数 (base) master@archlinux ~$ cat /etc/default/grub # GRUB boot loader configuration GRUB_DEFAULT=0 ..."
taxonomy_category:
  - "ALL"
  - "Linux"
---

在grub里加上i8042.nomux=1参数  
 (base) master@archlinux ~$ cat /etc/default/grub

```
# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="i8042.nomux=1 loglevel=3 quiet  ipv6.disable=1"
GRUB_CMDLINE_LINUX=""
```

保存后执行下面命令更新到grub.cfg重启生效

```
sudo grub-mkconfig -o /boot/grub/grub.cfg
```
