https://github.com/juanro49/rtl88x2ce-dkms/releases/tag/5.7.3_35403
Featured Collection
Popular Ranking
Popular Events
安装deepin/uos存在的问题与解决办法
二,安装nvidia显卡驱动
在新建的blacklist.conf文件中复制以下内容并保存---blacklist nouveau
blacklist lbm-nouveau
options nouveau modeset=0
alias nouveau off
alias lbm-nouveau off
---
sudo update-initramfs -u
第三步:重启系统
方法一:apt安装--可选
sudo apt install nvidia-driver
方法二:run文件安装--可选
sudo chmod a+x ./NVIDIA-Linux-x86_64-455.28.run
sudo ./NVIDIA-Linux-x86_64-455.28.run --no-opengl-files
全独立显卡运行--可选
第一步:查看自己电脑存在的显卡,
lspci | egrep "VGA|3D"
第二步:配置Xorg
sudo dedit /etc/X11/xorg.conf
Section "Module"
Load "modesetting"
EndSectionSection "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "
Option "AllowEmptyInitialConfiguration"
EndSection
第三步:配置xinitrc
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
xrandr --dpi 96
第四步:配置默认显卡脚本
sudo dedit /etc/lightdm/display_setup.sh
\#!/bin/sh
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
xrandr --dpi 96
第五步:启用默认显卡脚本
Identifier "layout"
Option "AllowNVIDIAGPUScreens"
EndSection
__NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only __GLX_VENDOR_LIBRARY_NAME=nvidia "$@"
三,隐藏win10分区
四,双系统时间配置统一
五,升级内核--可选
curl --proto '=https' --tlsv1.2 -sSf https://gitee.com/2016_12_21/up_kernel/raw/master/get_kernel_zip.sh | sh
六,gcc10.2--可选1,安装依赖
sudo apt-get install m4
sudo apt-get install libgmp3-dev
sudo apt-get install build-essentials
sudo apt-get install g++
cd /usr/lib/x86_64-linux-gnu/
sudo cp libisl.so.19 libisl.so.15
2,安装gcc
1.安装gmp
./configure --prefix=/usr/local/gmp-6.1.0
make -j8
sudo make install
2.安装mpfr
./configure --prefix=/usr/local/mpfr-4.1.0 --with-gmp=/usr/local/gmp-6.1.0
make -j8
sudo make install
3.安装mpc
./configure --prefix=/usr/local/mpc-1.1.0 --with-gmp=/usr/local/gmp-6.1.0 --with-mpfr=/usr/local/mpfr-4.1.0
make -j8
sudo make install
4.安装isl
./configure --prefix=/usr/local/isl-0.18 --with-gmp=/usr/local/gmp-6.1.0
make -j8
sudo make install
5.安装gcc
./configure --prefix=/usr/local/gcc-10.2.0/ --enable-checking=release --enable-languages=c,c++ --disable-multilib --with-gmp=/usr/local/gmp-6.1.0 --with-mpfr=/usr/local/mpfr-4.1.0 --with-mpc=/usr/local/mpc-1.1.0 --with-isl=/usr/local/isl-0.18
make -j16
sudo make install
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 10 --slave /usr/bin/g++ g++ /usr/bin/g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/local/gcc-10.2.0/bin/gcc 20 --slave /usr/bin/g++ g++ /usr/local/gcc-10.2.0/bin/g++
sudo update-alternatives --config gcc