jie1018
deepin
2020-05-14 07:45 CPU调节,2种怎么区分,你的1,2,3
Reply Like 0 View the author

https://bbs.deepin.org/post/194220
显卡升级只有nvidia么,amd有没有/
https://bbs.deepin.org/post/194220
竟然和我的一样的。 再给你一条。wine 双击打开EXE
1、终端
sudo deepin-editor /usr/share/applications/W ...

https://bbs.deepin.org/post/194220
同问a卡驱动升级命令
https://bbs.deepin.org/post/194220
CPU调节,2种怎么区分,你的1,2,3
https://bbs.deepin.org/post/194220
竟然和我的一样的。 再给你一条。wine 双击打开EXE
1、终端
sudo deepin-editor /usr/share/applications/W ...
https://bbs.deepin.org/post/194220
显卡这块我还没找的好的方法 试了几个帖子的方法都是开机进不了界面 等我找到好的方法实验成功了 在发吧 ...
好活
Popular Ranking
ChangePopular Events
More
(1)加入以管理员身份打开
sudo dde-file-manager
下载“以管理员身份打开”附件复制到 /usr/share/deepin/dde-file-manager/oem-menuextensions
sudo apt-get -f install// 修复依赖关系
sudo apt-get update -y&& sudo apt-get dist-upgrade -y更新口令
sudo apt-get dist-upgrade //更新已安装的软件包(识别并处理依赖关系的改变)
sudo apt --fix-broken install//修复系统更新失败
(2)升级显卡
sudo apt-get install nvidia-driver
下载显卡驱动管理器 sudo apt install deepin-graphics-driver-manager
(3)wifi网速慢:
sudo deepin-editor /etc/modprobe.d/iwlwifi.conf
将11n_disable=1修改为11n_disable=0
重启电脑
实测100m宽带可以跑到最高8m
(4)插电情况下cpu满频率运行发热大(2种方法)
1.安装tlp电源管理(实测安装后即使开启睿频,cpu频率不再像以前那样满载发热,大概稳定在40度左右)
sudo apt install tlp tlp-rdw
sudo apt install smartmontools
sudo systemctl enable tlp.service
由于deepin仓库里tlp版本低于1.2.2,我们还需设置以下服务自启动
sudo systemctl enable tlp-sleep.service
sudo systemctl enable NetworkManager-dispatcher.service
因为下面两个服务可能会影响到tlp的正常工作我们屏蔽掉他们
sudo systemctl mask systemd-rfkill.service
sudo systemctl mask systemd-rfkill.socket
2.
安装 i7z,终端执行 :sudo apt-get install i7z
运行 i7z: sudo i7z
可以看到,即使什么也没做,cpu 一直以最大频率运行。
修改内核启动参数
打开终端,执行: sudo deepin-editor /etc/default/grub,当然,也可以在文件管理器 /etc/default 目录中找到这个文件,右键管理员打开,编辑。
GRUB_CMDLINE_LINUX="splash quiet "
GRUB_CMDLINE_LINUX_DEFAULT="intel_pstate=disable"
保存后,在终端执行:sudo update-grub,更新实际启动参数,然后重启。
CPU 频率终于降下来了。
(5)蓝牙解决方法
sudo apt install bluetooth blueman
systemctl enable bluetooth --now
service bluetooth stop
sudo apt install bc module-assistant build-essential dkms
sudo m-a prepare
(6)升级wine
sudo dpkg --add-architecture i386
然后安装被用于签发安装包的密钥:
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
然后在 /etc/apt/sources.list.d/ 创建一个名为 winehq.list 的文件(sudo deepin-editor /etc/apt/sources.list.d/winehq.list),并包含以下内容:
deb https://dl.winehq.org/wine-builds/debian/ stretch main
注意:uos 对应 debian 10,应包含的内容为:
deb https://dl.winehq.org/wine-builds/debian/ buster main
添加验证公钥
sudo apt install dirmngr
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 76F1A20FF987672F
更新软件仓库:
sudo apt update
安装稳定分支:
sudo apt install --install-recommends winehq-stable
测试分支更新更频繁:
sudo apt install --install-recommends winehq-devel
验证当前版本号:
wine --version
(7)
wine 双击打开EXE(转贴huar 感谢)
1、终端
sudo deepin-editor /usr/share/applications/Wine.desktop
2、复制 粘贴
[Desktop Entry]
Name=Wine
Name[zh_CN]=Wine
GenericName=Launch by Wine
GenericName[zh_CN]=使用Wine运行
Comment=Launch by Wine
Comment[zh_CN]=使用Wine运行
MimeType=application/octet-stream
Keywords=exe;scr;
Exec=wine-stable %f
Icon=wine
Terminal=false
Type=Application
NoDisplay=false
Categories=System;Utility;
StartupNotify=false