debian.ecrans
Écrans
À propos de la résolution 2560x1440
https://bbs.archlinux.org/viewtopic.php?id=179120
get infos about grahpics
http://www.binarytides.com/linux-get-gpu-information/
gtf 2560 1440 48 # Connaitre les paramètres du profil qu'on veut ajouter (gtf est un convertisseur, plus d'infos > man gtf)
xrandr --newmode "2560x1440_48.00" 245.51 2560 2728 3008 3456 1440 1441 1444 1480 -HSync +Vsync # on crée le nouveau mode
xrandr --addmode HDMI1 2560x1440_48.00 # on l'ajoute, sur la sortie qu'on veut (ici HDMI1, faire xrandr pour voir toutes les sorties disponibles)
xrandr --output HDMI1 --mode 2560x1440_48.00 # et on bascule sur ce mode
En tapant xrandr
, on voit que notre nouveau mode s’est ajouté à HDMI1
Utils
gtf 2560 1440 29.97
xrandr --newmode "2560x1440_29.97" 146.12 2560 2680 2944 3328 1440 1441 1444 1465 -HSync +Vsync && xrandr --addmode HDMI1 2560x1440_29.97 && xrandr --output HDMI1 --mode 2560x1440_29.97
gtf 2560 1440 29.97
xrandr --newmode "2560x1440_33.00" 162.77 2560 2688 2960 3360 1440 1441 1444 1468 -HSync +Vsync && xrandr --addmode DP1-8 2560x1440_33.00 && xrandr --output DP1-8 --mode 2560x1440_33.00
Nvidia + Blender
https://blender.stackexchange.com/questions/31045/cuda-rendering-on-linux-mint-or-ubuntu-variants/31111#31111
You will need to install the package nvidia-modprobe which (I believe) allows Blender to detect your nvidia CUDA device. This is applicable to Mint, Debian and Ubuntu, I don’t know about other distributions of Linux:
sudo apt-get install nvidia-modprobe
You can also install nvidia-modprobe via your favourate package manager. Please use the Nvidia drivers from the standard repo, the drivers from their website are not auto updated. Doing sudo blender for one feature is non-optimal :) and means that all your .blend files and exports will be owned by root. This is inconventient.
Note that Blender+Nvidia+CUDA requires nvidia-cuda-toolkit, nvidia-modprobe and the proprietary drivers.
Température de couleur de l’écran
Avec redshift
Le service qui tourne est dans /usr/lib/systemd/user/screentemperature.service
Pour contrôler le statut du service
systemctl status --user screentemperature.service
Et surtout, pour le couper ― comme quand on regarde des films
systemctl stop --user screentemperature.service
Le service est lancé avec la machine. Pour lancer manuellement, on remplace status
ou stop
, dans la commande, par start