---
title: "deepin v20 双显卡笔记本新手上车指南"
id: "2869"
type: "post"
slug: "deepin-v20-%e5%8f%8c%e6%98%be%e5%8d%a1%e7%ac%94%e8%ae%b0%e6%9c%ac%e6%96%b0%e6%89%8b%e4%b8%8a%e8%bd%a6%e6%8c%87%e5%8d%97"
published_at: "2020-04-15T14:45:55+00:00"
modified_at: "2020-05-19T03:04:05+00:00"
url: "https://seq.ink/all/2869.html"
markdown_url: "https://seq.ink/all/2869.html.md"
excerpt: "ISO下载：https://mirrors.nju.edu.cn/deepin-cd/20Beta/deepin-20Beta-desktop-amd64.iso 安装盘推荐工具：http://www.ventoy.net/index.ht ..."
taxonomy_category:
  - "ALL"
  - "Linux"
---

ISO下载：[https://mirrors.nju.edu.cn/deepin-cd/20Beta/deepin-20Beta-desktop-amd64.iso](https://mirrors.nju.edu.cn/deepin-cd/20Beta/deepin-20Beta-desktop-amd64.iso)

安装盘推荐工具：[http://www.ventoy.net/index.html](http://www.ventoy.net/index.html)

grub参数：  
 `nouveau.modeset=0 ipv6.disable=1`

`nouveau.modeset=0`是为了禁用nvidia开源驱动防止画面冻结 ;`ipv6.disable=1` 禁用ipv6是为了让wineQQ图片正常显示。

1.在grub安装引导界面按e键进入编辑

2.在splash quiet代码后面添加上述2个参数 `nouveau.modeset=0 ipv6.disable=1`

3.按F10引导开始安装。

4.安装完毕后重启的时候（此时还没设置系统账号），按上述操作再次修改grub引导参数

5.登录系统，按Ctrl Alt T打开终端。

6.输入`sudo dedit /etc/default/grub` ;此时要求输入密码（登录密码，输入时不会显示密码，输入完成直接回车即可）。

7.将上述代码按同样要求添加到该文件

```
# Written by com.deepin.daemon.Grub2
DEEPIN_GFXMODE_ADJUSTED=1
GRUB_BACKGROUND="/boot/grub/themes/deepin/background.jpg"
GRUB_CMDLINE_LINUX=""
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet nouveau.modeset=0 ipv6.disable=1"
GRUB_DEFAULT=0
GRUB_DISTRIBUTOR="`/usr/bin/lsb_release -d -s 2>/dev/null || echo Deepin`"
GRUB_GFXMODE=1920x1080
GRUB_THEME="/boot/grub/themes/deepin/theme.txt"
GRUB_TIMEOUT=5
```

8.终端输入`sudo update-grub` 更新

9.打开 `设置>鼠标>鼠标>插入鼠标时禁用触控板`

10.打开 `设置>声音>系统音效` 取消开机&关机音效

启用nvidia官方显卡驱动方法与上一篇文章相同：[https://seq.ink/all/2643.html](https://seq.ink/all/2643.html)
