关于V20显卡驱动
Tofloor
poster avatar
caicaven
deepin
2020-09-21 02:46
Author
我今天装的V20版本,安装完之后,非常卡顿感,看网页视频都算非常卡,看了显卡驱动
是使用的开源的1.1.0


不知道,是不是显卡驱动,但是我切换到闭源也切换不过去,是不是V20没有GTX750的显卡驱动?



Reply Favorite View the author
All Replies
Ziggy
deepin
2020-09-21 02:59
#1
用我的帖子,390版本
Reply View the author
caicaven
deepin
2020-09-21 04:20
#2
https://bbs.deepin.org/post/202563
用我的帖子,390版本

装了显示内存是256M的,我2G的显存 怎么回事
Reply View the author
Ziggy
deepin
2020-09-21 07:02
#3
https://bbs.deepin.org/post/202563
装了显示内存是256M的,我2G的显存 怎么回事

贴出来
Reply View the author
是大橙子呀
deepin
2020-09-21 19:48
#4
安装源内版本
sudo apt install nvidia-driver 然后重启

先查询lspci | egrep 'VGA|3D',获取设备BusID,举栗子我N卡01:00:00 填写PCI:1:0:0
终端:sudo dedit /etc/X11/xorg.conf

Section "Module"
    Load "modesetting"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "CI:X:X:X"      
    Option "AllowEmptyInitialConfiguration"
EndSection
保存关闭

终端:sudo dedit ~/.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
保存关闭
终端:sudo chmod +x /etc/lightdm/display_setup.sh

终端sudo dedit /etc/lightdm/lightdm.conf
在[Seat:*]行下添加一下代码:display-setup-script=/etc/lightdm/display_setup.sh
保存关闭
安装控制面板sudo apt-get nvidia-settings

可查装态sudo apt-get nvidia-smi
参考的这个https://bbs.deepin.org/post/192957#
Reply View the author