PCに関する雑多な記録

PCに関する諸々の備忘録に変身。

debian 12 に nvidia のドライバをインストールする

2024年03月22日 | ubuntu

root@dlp:~# vi /etc/apt/sources.list

# 各行に [contrib], [non-free] を追加
deb http://deb.debian.org/debian/ bookworm main non-free-firmware contrib non-free
deb http://security.debian.org/debian-security bookworm-security main non-free-firmware contrib non-free
deb http://deb.debian.org/debian/ bookworm-updates main non-free-firmware contrib non-free
deb http://deb.debian.org/debian/ bookworm-backports main non-free-firmware contrib non-free

root@dlp:~# apt update
root@dlp:~# apt install -y nvidia-driver firmware-misc-nonfree dkms
  --  [nouveau] ドライバーは無効化される --

root@dlp:~# cat /etc/modprobe.d/nvidia-blacklists-nouveau.con

# You need to run "update-initramfs -u" after editing this file.

# see #580894
blacklist nouveau
root@dlp:~# update-initramfs -u
 
root@dlp:~# update-grub
 
root@dlp:~# reboot
 
update-initramfs と update-grub は 今回に限れば、おまじないみたいなもの。
 

linuxmint で パワーセーブモードを使う

2024年03月10日 | ubuntu

Ubuntuにあってlinuxmintにはない電源のパワーセーブ・バランスの切り替えなんだが、どうやら

apt install power-profiles-daemon

まずこれやって、アプリいれて

powerprofilesctl list

すると、

* balanced:
    Driver:     placeholder

  power-saver:
    Driver:     placeholder

が既定なら帰ってくるはず。

powerprofilesctl set power-saver

すると、設定が書き換わって、再度 powerprofilesctl list を実行すると

  balanced:
    Driver:     placeholder

* power-saver:
    Driver:     placeholder

となる。これでパワーセーバーモードになったはず。。

今使ってるPCがRyzen 7 3700Xと、低クロックでも問題ない性能なので、
基本的に低クロックで動かしたいので調べてみた。