其他分享
首页 > 其他分享> > 重装系统之后的坑

重装系统之后的坑

作者:互联网

必装

添加 apt 源

修改 apt 源vi /etc/apt/source.list
注释第五行
#deb cdrom:[Debian GNU/Linux 10.2.0 _Buster_ - Official amd64 DVD Binary-1 20191116-09:57]/ buster contrib main
在末尾添加清华源

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free

apt update之后进行apt install vim

添加用户到 sudo

sudo 管理文件是/etc/sudoers,并在第20行后添加

# User privilege specification
root    ALL=(ALL:ALL) ALL
username    ALL=(ALL:ALL) ALL
输入法
sudo apt install fcitx libqt4-declarative
# 到官网下载搜狗输入法 linux 版本
dpkg -i sougou**.deb
sudo apt install -f
dpkg -i sougou**.deb
设置触摸板

复制/usr/share/X11/xorg.conf.d/etc/X11后修改/usr/share/X11/xorg.conf.d

sudo cp -R /usr/share/X11/xorg.conf.d /etc/X11/
sudo vim /usr/share/X11/xorg.conf.d/40-libinput.conf

在37行后添加设置

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
    # 启动轻触即点击
        Option "Tapping" "on"
        # 启动自然滚动
        Option "NaturalScrolling" "true"
        # 点击方式为手指,单指左键,双指右键,三指中键
        Option "ClickMethod" "clickfinger"
        # 键入是禁用触摸板
        Option "DisableWhileTying" "true"
EndSection
双屏显示 原始资料地址

首先需要正常 启动/关闭 计算机,然后安装 NVIDIA 显卡驱动,再设置显卡配置,最后设置双屏.

xrandr --output eDP-1-1 --auto --primary
xrandr --output HDMI-0 --right-of eDP-1-1 --auto

PS:双屏显示太坑,子上次重装系统之后发现必须连接双屏才能使用,否则 lightdm 报错无法进入登录界面,一整天没有找到合适的资料之后不了了之,转投 Ubuntu 了

标签:buster,sudo,重装系统,之后,apt,contrib,deb,main
来源: https://www.cnblogs.com/ha0zi/p/12202978.html