#1 Le 04/02/2025, à 10:30
- lebossejames
projet python module command not found
Bonjour,
J'ai importé ce projet sur mon pc sous Ubuntu 20.04: https://github.com/Stability-AI/invisib … me-ov-file
J'ai lancé la commande:
module load cuda/12.1
en mettant ma version de cuda installé sur mon pc mais j'obtiens ceci:
module load cuda/12.8
module : commande introuvable
Savez-vous d'où pourrait venir le problème svp?
Puisque j'ai continuer de lancer les autres instructions de la phase d'installation mais lors de l'execution du test j'obtiens ceci:
james@james-Dell-System-XPS-15Z:~/Documents/invisible-watermark-gpu$ python -m pytest -k 'test_pycudwt_installed_correctly'
/usr/lib/python3/dist-packages/xonsh/pytest_plugin.py:32: PytestRemovedIn9Warning: The (path: py.path.local) argument is deprecated, please use (file_path: pathlib.Path)
see https://docs.pytest.org/en/latest/deprecations.html#py-path-local-arguments-for-hooks-replaced-with-pathlib-path
def pytest_collect_file(parent, path):
============================= test session starts ==============================
platform linux -- Python 3.8.10, pytest-8.3.4, pluggy-1.5.0
rootdir: /home/james/Documents/invisible-watermark-gpu
plugins: xonsh-0.9.13
collected 3 items / 2 deselected / 1 selected
tests/test_wavelets.py F [100%]
=================================== FAILURES ===================================
________________ TestWavelets.test_pycudwt_installed_correctly _________________
self = <tests.test_wavelets.TestWavelets object at 0x7f665ec6c850>
def test_pycudwt_installed_correctly(self):
"""
If pycudwt is install incorrectly, the DWT transform will return all zeros.
"""
# create wavelets information and plug in random data
start = time.time()
wv = Wavelets(np.random.randint(low=0, high=255, size=(1024, 1024), dtype=np.uint8), "haar", 1)
# perform the discrete wavelets transform
wv.forward() # wv.coeffs = [A, [H1, V1, D1]]
NON_ZERO_THRESH_SUM = 1.0
> assert np.sum(np.abs(wv.coeffs[0])) > NON_ZERO_THRESH_SUM, \
"pycudwt is returning all zeros, did you `export PYCUDWT_CC=80` before running `pip install`?"
E AssertionError: pycudwt is returning all zeros, did you `export PYCUDWT_CC=80` before running `pip install`?
E assert 0.0 > 1.0
E + where 0.0 = <function sum at 0x7f6678091ca0>(array([[0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n ..., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.]], dtype=float32))
E + where <function sum at 0x7f6678091ca0> = np.sum
E + and array([[0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n ..., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.]], dtype=float32) = <ufunc 'absolute'>(array([[0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n ..., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.],\n [0., 0., 0., ..., 0., 0., 0.]], dtype=float32))
E + where <ufunc 'absolute'> = np.abs
tests/test_wavelets.py:51: AssertionError
=========================== short test summary info ============================
FAILED tests/test_wavelets.py::TestWavelets::test_pycudwt_installed_correctly - AssertionError: pycudwt is returning all zeros, did you `export PYCUDWT_CC=...
======================= 1 failed, 2 deselected in 14.92s =======================
james@james-Dell-System-XPS-15Z:~/Documents/invisible-watermark-gpu$
Pourtant la commande export PYCUDWT_CC=80 a bien été exécuté.
Merci d'avance.
Hors ligne
#2 Le 05/02/2025, à 07:49
- MPython Alaplancha
Re : projet python module command not found
Bonjour,
J'ai importé ce projet sur mon pc sous Ubuntu 20.04: https://github.com/Stability-AI/invisib … me-ov-file
J'ai lancé la commande:module load cuda/12.1
en mettant ma version de cuda installé sur mon pc mais j'obtiens ceci:
module load cuda/12.8 module : commande introuvable
Savez-vous d'où pourrait venir le problème svp?
Bonjour.
As-tu installé la commande?
which module
Sinon installe-la avec:
sudo apt install environment-modules
Selon apt show , il est à noter un éventuel conflit avec la cmd lmod si installée (ce qui n'est pas le cas sur Debian, à voir pour ta distribution).
# Debian12 Mate
Hors ligne
#3 Le 05/02/2025, à 11:35
- lebossejames
Re : projet python module command not found
lebossejames a écrit :Bonjour,
J'ai importé ce projet sur mon pc sous Ubuntu 20.04: https://github.com/Stability-AI/invisib … me-ov-file
J'ai lancé la commande:module load cuda/12.1
en mettant ma version de cuda installé sur mon pc mais j'obtiens ceci:
module load cuda/12.8 module : commande introuvable
Savez-vous d'où pourrait venir le problème svp?
Bonjour.
As-tu installé la commande?which module
Sinon installe-la avec:
sudo apt install environment-modules
Selon apt show , il est à noter un éventuel conflit avec la cmd lmod si installée (ce qui n'est pas le cas sur Debian, à voir pour ta distribution).
which module
retourne aucun résultat
sudo apt install environment-modules
Il a été installé mais cela ne change en rien l'erreur.
Hors ligne
#4 Le 05/02/2025, à 13:09
- MPython Alaplancha
Re : projet python module command not found
source /usr/share/modules/init/bash
pour initialiser la cmd (testé avec succès sur une vm).
Dernière modification par MPython Alaplancha (Le 05/02/2025, à 13:09)
# Debian12 Mate
Hors ligne
#5 Le 06/02/2025, à 09:55
- lebossejames
Re : projet python module command not found
source /usr/share/modules/init/bash
pour initialiser la cmd (testé avec succès sur une vm).
La commande est reconnu maintenant, cependant j'obtiens ceci:
james@james-Dell-System-XPS-15Z:~/Documents/invisible-watermark-gpu$ module load cuda/12.8
ERROR: Unable to locate a modulefile for 'cuda/12.8'
Je précise que cuda a été installé via: https://developer.nvidia.com/cuda-downl … =deb_local
Je ne sais pas s'il faut impérativement installé le driver nvidia?
Hors ligne
#6 Le 06/02/2025, à 10:35
- iznobe
Re : projet python module command not found
Je ne sais pas s'il faut impérativement installé le driver nvidia?
Bonjour , c' est obligatoire , CUDA ne fonctionnera jamais sans le pilote proprietaite de la carte graphique , tu penses bien
De plus , tu ne pourras pas mettre l ' un à jour sans mettre aussi l' autre à jour , ils sont directement reliés entre eux .
ca m' etonne meme que CUDA se soit installé correctement sans le pilote graphique .
Dernière modification par iznobe (Le 06/02/2025, à 10:37)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#7 Le 10/02/2025, à 11:16
- lebossejames
Re : projet python module command not found
J'ai installé le CUDA driver:
james@james-Dell-System-XPS-15Z:~/Downloads$ sudo apt-get install -y cuda-drivers
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
Les paquets suivants ont été installés automatiquement et ne sont plus nécessaires :
ca-certificates-mono cli-common i965-va-driver:i386
intel-media-va-driver:i386 libavcodec60:i386 libavutil58 libavutil58:i386
libcjson1 libcodec2-1.2 libcodec2-1.2:i386 libdav1d7 libdav1d7:i386
libgdiplus libgomp1:i386 libgsm1:i386 libhwy1t64 libigdgmm12:i386 libjxl0.7
libmbedcrypto7t64 libmono-btls-interface4.0-cil libmono-cairo4.0-cil
libmono-corlib4.5-cil libmono-corlib4.5-dll libmono-i18n-west4.0-cil
libmono-i18n4.0-cil libmono-posix4.0-cil libmono-security4.0-cil
libmono-system-configuration4.0-cil libmono-system-core4.0-cil
libmono-system-drawing4.0-cil libmono-system-numerics4.0-cil
libmono-system-security4.0-cil libmono-system-xml4.0-cil
libmono-system4.0-cil libnuma1:i386 libopenjp2-7:i386 libplacebo338
libpostproc57 librav1e0 librist4 libshine3:i386 libsnappy1v5:i386
libsoxr0:i386 libspeexdsp1:i386 libsvtav1enc1d1:i386 libswresample4
libswresample4:i386 libswscale7 libva-drm2:i386 libva-x11-2:i386 libva2:i386
libvdpau1:i386 libvpl2 libwebpmux3:i386 libx264-164:i386 libx265-199:i386
libxvidcore4:i386 libzvbi0t64:i386 mailcap mesa-va-drivers:i386
mesa-vdpau-drivers:i386 mono-4.0-gac mono-gac mono-runtime
mono-runtime-common mono-runtime-sgen plocate va-driver-all:i386
vdpau-driver-all:i386
Veuillez utiliser « sudo apt autoremove » pour les supprimer.
Les paquets supplémentaires suivants seront installés :
cuda-drivers-570 libnvidia-cfg1-570 libnvidia-common-570
libnvidia-compute-570 libnvidia-compute-570:i386 libnvidia-decode-570
libnvidia-decode-570:i386 libnvidia-encode-570 libnvidia-encode-570:i386
libnvidia-extra-570 libnvidia-fbc1-570 libnvidia-fbc1-570:i386
libnvidia-gl-570 libnvidia-gl-570:i386 libxnvctrl0 nvidia-compute-utils-570
nvidia-dkms-570 nvidia-driver-570 nvidia-firmware-570-570.86.10
nvidia-kernel-common-570 nvidia-kernel-source-570 nvidia-modprobe
nvidia-settings nvidia-utils-570 screen-resolution-extra
xserver-xorg-video-nvidia-570
Les NOUVEAUX paquets suivants seront installés :
cuda-drivers cuda-drivers-570 libnvidia-cfg1-570 libnvidia-common-570
libnvidia-compute-570 libnvidia-compute-570:i386 libnvidia-decode-570
libnvidia-decode-570:i386 libnvidia-encode-570 libnvidia-encode-570:i386
libnvidia-extra-570 libnvidia-fbc1-570 libnvidia-fbc1-570:i386
libnvidia-gl-570 libnvidia-gl-570:i386 libxnvctrl0 nvidia-compute-utils-570
nvidia-dkms-570 nvidia-driver-570 nvidia-firmware-570-570.86.10
nvidia-kernel-common-570 nvidia-kernel-source-570 nvidia-modprobe
nvidia-settings nvidia-utils-570 screen-resolution-extra
xserver-xorg-video-nvidia-570
0 mis à jour, 27 nouvellement installés, 0 à enlever et 5 non mis à jour.
Il est nécessaire de prendre 4078 o/430 Mo dans les archives.
Après cette opération, 1373 Mo d'espace disque supplémentaires seront utilisés.
Réception de :1 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-common-570 570.86.10-0ubuntu1 [15,9 kB]
Réception de :2 http://fr.archive.ubuntu.com/ubuntu noble/main amd64 screen-resolution-extra all 0.18.3 [4078 B]
Réception de :3 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-gl-570 570.86.10-0ubuntu1 [162 MB]
Réception de :4 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-kernel-source-570 570.86.10-0ubuntu1 [73,2 MB]
Réception de :5 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-firmware-570-570.86.10 570.86.10-0ubuntu1 [64,5 MB]
Réception de :6 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-modprobe 570.86.10-0ubuntu1 [15,0 kB]
Réception de :7 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-kernel-common-570 570.86.10-0ubuntu1 [98,6 kB]
Réception de :8 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-dkms-570 570.86.10-0ubuntu1 [14,9 kB]
Réception de :9 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-decode-570 570.86.10-0ubuntu1 [2434 kB]
Réception de :10 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-compute-570 570.86.10-0ubuntu1 [44,0 MB]
Réception de :11 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-extra-570 570.86.10-0ubuntu1 [72,7 kB]
Réception de :12 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-compute-utils-570 570.86.10-0ubuntu1 [109 kB]
Réception de :13 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-encode-570 570.86.10-0ubuntu1 [105 kB]
Réception de :14 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-utils-570 570.86.10-0ubuntu1 [520 kB]
Réception de :15 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-cfg1-570 570.86.10-0ubuntu1 [145 kB]
Réception de :16 file:/var/cuda-repo-ubuntu2404-12-8-local xserver-xorg-video-nvidia-570 570.86.10-0ubuntu1 [1694 kB]
Réception de :17 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-fbc1-570 570.86.10-0ubuntu1 [98,1 kB]
Réception de :18 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-driver-570 570.86.10-0ubuntu1 [491 kB]
Réception de :19 file:/var/cuda-repo-ubuntu2404-12-8-local cuda-drivers-570 570.86.10-0ubuntu1 [2550 B]
Réception de :20 file:/var/cuda-repo-ubuntu2404-12-8-local cuda-drivers 570.86.10-0ubuntu1 [2506 B]
Réception de :21 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-decode-570 570.86.10-0ubuntu1 [2515 kB]
Réception de :22 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-compute-570 570.86.10-0ubuntu1 [38,1 MB]
Réception de :23 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-encode-570 570.86.10-0ubuntu1 [112 kB]
Réception de :24 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-fbc1-570 570.86.10-0ubuntu1 [93,9 kB]
Réception de :25 file:/var/cuda-repo-ubuntu2404-12-8-local libnvidia-gl-570 570.86.10-0ubuntu1 [38,2 MB]
Réception de :26 file:/var/cuda-repo-ubuntu2404-12-8-local libxnvctrl0 570.86.10-0ubuntu1 [11,8 kB]
Réception de :27 file:/var/cuda-repo-ubuntu2404-12-8-local nvidia-settings 570.86.10-0ubuntu1 [918 kB]
4078 o réceptionnés en 5s (759 o/s)
Sélection du paquet libnvidia-common-570 précédemment désélectionné.
(Lecture de la base de données... 302274 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de .../00-libnvidia-common-570_570.86.10-0ubuntu1_all.deb ...
Dépaquetage de libnvidia-common-570 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-gl-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../01-libnvidia-gl-570_570.86.10-0ubuntu1_amd64.deb ...
dpkg-query: aucun paquet ne correspond à libnvidia-gl-535
Dépaquetage de libnvidia-gl-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-kernel-source-570 précédemment désélectionné.
Préparation du dépaquetage de .../02-nvidia-kernel-source-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-kernel-source-570 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-firmware-570-570.86.10 précédemment désélectionné.
Préparation du dépaquetage de .../03-nvidia-firmware-570-570.86.10_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-firmware-570-570.86.10 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-modprobe précédemment désélectionné.
Préparation du dépaquetage de .../04-nvidia-modprobe_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-modprobe (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-kernel-common-570 précédemment désélectionné.
Préparation du dépaquetage de .../05-nvidia-kernel-common-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-kernel-common-570 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-dkms-570 précédemment désélectionné.
Préparation du dépaquetage de .../06-nvidia-dkms-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-dkms-570 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-decode-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../07-libnvidia-decode-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-decode-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-compute-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../08-libnvidia-compute-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-compute-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-extra-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../09-libnvidia-extra-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-extra-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-compute-utils-570 précédemment désélectionné.
Préparation du dépaquetage de .../10-nvidia-compute-utils-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-compute-utils-570 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-encode-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../11-libnvidia-encode-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-encode-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-utils-570 précédemment désélectionné.
Préparation du dépaquetage de .../12-nvidia-utils-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-utils-570 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-cfg1-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../13-libnvidia-cfg1-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-cfg1-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet xserver-xorg-video-nvidia-570 précédemment désélectionné.
Préparation du dépaquetage de .../14-xserver-xorg-video-nvidia-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de xserver-xorg-video-nvidia-570 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-fbc1-570:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../15-libnvidia-fbc1-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libnvidia-fbc1-570:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet nvidia-driver-570 précédemment désélectionné.
Préparation du dépaquetage de .../16-nvidia-driver-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-driver-570 (570.86.10-0ubuntu1) ...
Sélection du paquet cuda-drivers-570 précédemment désélectionné.
Préparation du dépaquetage de .../17-cuda-drivers-570_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de cuda-drivers-570 (570.86.10-0ubuntu1) ...
Sélection du paquet cuda-drivers précédemment désélectionné.
Préparation du dépaquetage de .../18-cuda-drivers_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de cuda-drivers (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-decode-570:i386 précédemment désélectionné.
Préparation du dépaquetage de .../19-libnvidia-decode-570_570.86.10-0ubuntu1_i386.deb ...
Dépaquetage de libnvidia-decode-570:i386 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-compute-570:i386 précédemment désélectionné.
Préparation du dépaquetage de .../20-libnvidia-compute-570_570.86.10-0ubuntu1_i386.deb ...
Dépaquetage de libnvidia-compute-570:i386 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-encode-570:i386 précédemment désélectionné.
Préparation du dépaquetage de .../21-libnvidia-encode-570_570.86.10-0ubuntu1_i386.deb ...
Dépaquetage de libnvidia-encode-570:i386 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-fbc1-570:i386 précédemment désélectionné.
Préparation du dépaquetage de .../22-libnvidia-fbc1-570_570.86.10-0ubuntu1_i386.deb ...
Dépaquetage de libnvidia-fbc1-570:i386 (570.86.10-0ubuntu1) ...
Sélection du paquet libnvidia-gl-570:i386 précédemment désélectionné.
Préparation du dépaquetage de .../23-libnvidia-gl-570_570.86.10-0ubuntu1_i386.deb ...
dpkg-query: aucun paquet ne correspond à libnvidia-gl-535
Dépaquetage de libnvidia-gl-570:i386 (570.86.10-0ubuntu1) ...
Sélection du paquet libxnvctrl0:amd64 précédemment désélectionné.
Préparation du dépaquetage de .../24-libxnvctrl0_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de libxnvctrl0:amd64 (570.86.10-0ubuntu1) ...
Sélection du paquet screen-resolution-extra précédemment désélectionné.
Préparation du dépaquetage de .../25-screen-resolution-extra_0.18.3_all.deb ...
Dépaquetage de screen-resolution-extra (0.18.3) ...
Sélection du paquet nvidia-settings précédemment désélectionné.
Préparation du dépaquetage de .../26-nvidia-settings_570.86.10-0ubuntu1_amd64.deb ...
Dépaquetage de nvidia-settings (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-extra-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-kernel-source-570 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-modprobe (570.86.10-0ubuntu1) ...
Paramétrage de libxnvctrl0:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-common-570 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-cfg1-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de screen-resolution-extra (0.18.3) ...
Paramétrage de nvidia-settings (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-firmware-570-570.86.10 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-fbc1-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-fbc1-570:i386 (570.86.10-0ubuntu1) ...
Paramétrage de xserver-xorg-video-nvidia-570 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-kernel-common-570 (570.86.10-0ubuntu1) ...
update-initramfs: deferring update (trigger activated)
Paramétrage de libnvidia-gl-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-gl-570:i386 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-dkms-570 (570.86.10-0ubuntu1) ...
update-initramfs: deferring update (trigger activated)
INFO:Enable nvidia
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/dell_latitude
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/put_your_quirks_here
DEBUG:Parsing /usr/share/ubuntu-drivers-common/quirks/lenovo_thinkpad
Loading new nvidia-570.86.10 DKMS files...
Building for 6.8.0-52-generic
Building for architecture x86_64
Building initial module for 6.8.0-52-generic
Done.
nvidia.ko.zst:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/6.8.0-52-generic/updates/dkms/
nvidia-modeset.ko.zst:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/6.8.0-52-generic/updates/dkms/
nvidia-drm.ko.zst:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/6.8.0-52-generic/updates/dkms/
nvidia-uvm.ko.zst:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/6.8.0-52-generic/updates/dkms/
nvidia-peermem.ko.zst:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/6.8.0-52-generic/updates/dkms/
depmod....
Paramétrage de libnvidia-compute-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-compute-570:i386 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-decode-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-decode-570:i386 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-utils-570 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-compute-utils-570 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-encode-570:amd64 (570.86.10-0ubuntu1) ...
Paramétrage de libnvidia-encode-570:i386 (570.86.10-0ubuntu1) ...
Paramétrage de nvidia-driver-570 (570.86.10-0ubuntu1) ...
Paramétrage de cuda-drivers-570 (570.86.10-0ubuntu1) ...
Paramétrage de cuda-drivers (570.86.10-0ubuntu1) ...
Traitement des actions différées (« triggers ») pour mailcap (3.70+nmu1ubuntu1) ...
Traitement des actions différées (« triggers ») pour bamfdaemon (0.5.6+22.04.20220217-0ubuntu5) ...
Rebuilding /usr/share/applications/bamf-2.index...
Traitement des actions différées (« triggers ») pour desktop-file-utils (0.27-2build1) ...
Traitement des actions différées (« triggers ») pour initramfs-tools (0.142ubuntu25.4) ...
update-initramfs: Generating /boot/initrd.img-6.8.0-52-generic
Traitement des actions différées (« triggers ») pour gnome-menus (3.36.0-1.1ubuntu3) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.39-0ubuntu8.4) ...
Traitement des actions différées (« triggers ») pour man-db (2.12.0-4build2) ...
Traitement des actions différées (« triggers ») pour dbus (1.14.10-4ubuntu4.1) ...
james@james-Dell-System-XPS-15Z:~/Downloads$
lorsque je relance la commande:
james@james-Dell-System-XPS-15Z:~/Documents/invisible-watermark-gpu$ module load cuda
ERROR: Unable to locate a modulefile for 'cuda'
Hors ligne
#8 Le 10/02/2025, à 16:17
- MPython Alaplancha
Re : projet python module command not found
Précédemment c'était : module load cuda/12.8
Sinon que retourne :
module list
?
# Debian12 Mate
Hors ligne
#9 Le 10/02/2025, à 18:01
- lebossejames
Re : projet python module command not found
james@james-Dell-System-XPS-15Z:~$ module list
No Modulefiles Currently Loaded.
james@james-Dell-System-XPS-15Z:~$
Hors ligne
#10 Le 15/02/2025, à 07:15
- MPython Alaplancha
Re : projet python module command not found
Cette installation n'est pas vraiment triviale. Elle dépend de ta carte graphique.
# find your GPU's gencode here, and set the PYCUDWT_CC environment variable to it
# for example, for an A100, it would be "80" for SM80:
# https://arnon.dk/matching-sm-architectu … dia-cards/
export PYCUDWT_CC=80
Comme dit, il te faut consulter https://arnon.dk/matching-sm-architectu … dia-cards/ et voir ce que tu dois exporter selon ta carte graphique...
# Debian12 Mate
Hors ligne
#11 Le 15/02/2025, à 07:42
- xubu1957
Re : projet python module command not found
Bonjour,
Montre la carte graphique :
lspci -vnn | grep -A 12 '\''[030[02]\]' | grep -Ei "vga|3d|display|kernel"
uname -a
et :
ubuntu-drivers devices
dpkg -l | grep nvidia
dpkg -l | grep -v ^ii
nvidia-smi
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#12 Le 16/02/2025, à 14:06
- lebossejames
Re : projet python module command not found
<pre>james@james-Dell-System-XPS-15Z:~$ lspci -vnn | grep -A 12 '\''[030[02]\]' | grep -Ei "vga|3d|display|kernel"
00:02.0 <font color="#CC0000"><b>VGA</b></font> compatible controller [0300]: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0116] (rev 09) (prog-if 00 [<font color="#CC0000"><b>VGA</b></font> controller])
<font color="#CC0000"><b>Kernel</b></font> driver in use: i915
<font color="#CC0000"><b>Kernel</b></font> modules: i915
01:00.0 <font color="#CC0000"><b>VGA</b></font> compatible controller [0300]: NVIDIA Corporation GF108M [GeForce GT 525M] [10de:0df5] (rev a1) (prog-if 00 [<font color="#CC0000"><b>VGA</b></font> controller])
<font color="#CC0000"><b>Kernel</b></font> modules: nvidiafb, nouveau, nvidia_drm, nvidia
james@james-Dell-System-XPS-15Z:~$ uname -a
Linux james-Dell-System-XPS-15Z 6.8.0-53-generic #55-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 17 15:37:52 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
</pre>
james@james-Dell-System-XPS-15Z:~$ ubuntu-drivers devices
james@james-Dell-System-XPS-15Z:~$ dpkg -l | grep nvidia
ii libnvidia-cfg1-570:amd64 570.86.10-0ubuntu1 amd64 NVIDIA binary OpenGL/GLX configuration library
ii libnvidia-common-570 570.86.10-0ubuntu1 all Shared files used by the NVIDIA libraries
rc libnvidia-compute-418-server:amd64 418.226.00-0ubuntu5~0.22.04.1 amd64 NVIDIA libcompute package
ii libnvidia-compute-570:amd64 570.86.10-0ubuntu1 amd64 NVIDIA libcompute package
ii libnvidia-compute-570:i386 570.86.10-0ubuntu1 i386 NVIDIA libcompute package
ii libnvidia-decode-570:amd64 570.86.10-0ubuntu1 amd64 NVIDIA Video Decoding runtime libraries
ii libnvidia-decode-570:i386 570.86.10-0ubuntu1 i386 NVIDIA Video Decoding runtime libraries
ii libnvidia-encode-570:amd64 570.86.10-0ubuntu1 amd64 NVENC Video Encoding runtime library
ii libnvidia-encode-570:i386 570.86.10-0ubuntu1 i386 NVENC Video Encoding runtime library
ii libnvidia-extra-570:amd64 570.86.10-0ubuntu1 amd64 Extra libraries for the NVIDIA driver
ii libnvidia-fbc1-570:amd64 570.86.10-0ubuntu1 amd64 NVIDIA OpenGL-based Framebuffer Capture runtime library
ii libnvidia-fbc1-570:i386 570.86.10-0ubuntu1 i386 NVIDIA OpenGL-based Framebuffer Capture runtime library
ii libnvidia-gl-570:amd64 570.86.10-0ubuntu1 amd64 NVIDIA OpenGL/GLX/EGL/GLES GLVND libraries and Vulkan ICD
ii libnvidia-gl-570:i386 570.86.10-0ubuntu1 i386 NVIDIA OpenGL/GLX/EGL/GLES GLVND libraries and Vulkan ICD
ii nvidia-compute-utils-570 570.86.10-0ubuntu1 amd64 NVIDIA compute utilities
rc nvidia-cuda-toolkit 10.1.243-3 amd64 NVIDIA CUDA development toolkit
ii nvidia-dkms-570 570.86.10-0ubuntu1 amd64 NVIDIA DKMS package
ii nvidia-driver-570 570.86.10-0ubuntu1 amd64 NVIDIA driver metapackage
ii nvidia-firmware-570-570.86.10 570.86.10-0ubuntu1 amd64 Firmware files used by the kernel module
ii nvidia-kernel-common-570 570.86.10-0ubuntu1 amd64 Shared files used with the kernel module
ii nvidia-kernel-source-570 570.86.10-0ubuntu1 amd64 NVIDIA kernel source package
ii nvidia-modprobe 570.86.10-0ubuntu1 amd64 Load the NVIDIA kernel driver and create device files
ii nvidia-settings 570.86.10-0ubuntu1 amd64 Tool for configuring the NVIDIA graphics driver
ii nvidia-utils-570 570.86.10-0ubuntu1 amd64 NVIDIA driver support binaries
ii screen-resolution-extra 0.18.3 all Extension for the nvidia-settings control panel
ii xserver-xorg-video-nvidia-570 570.86.10-0ubuntu1 amd64 NVIDIA binary Xorg driver
james@james-Dell-System-XPS-15Z:~$ dpkg -l | grep -v ^ii
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom Version Architecture Description
+++-=============================================-==========================================-============-================================================================================
rc fuse 2.9.9-3 amd64 Filesystem in Userspace
rc libglib2.0-0:amd64 2.72.4-0ubuntu2.4 amd64 GLib library of C routines
rc libglib2.0-0:i386 2.72.4-0ubuntu2.4 i386 GLib library of C routines
rc libgtk-3-0:amd64 3.24.33-1ubuntu2.2 amd64 GTK graphical user interface library
rc libgtk2.0-0:amd64 2.24.33-2ubuntu2.1 amd64 GTK graphical user interface library - old version
rc libgtk2.0-0:i386 2.24.33-2ubuntu2.1 i386 GTK graphical user interface library - old version
rc libmagic1:amd64 1:5.41-3ubuntu0.1 amd64 Recognize the type of data in a file using "magic" numbers - library
rc libnfc5:amd64 1.7.1-4build1 amd64 Near Field Communication (NFC) library
rc libnvidia-compute-418-server:amd64 418.226.00-0ubuntu5~0.22.04.1 amd64 NVIDIA libcompute package
rc libpython2.7-minimal:amd64 2.7.18-1~20.04.1 amd64 Minimal subset of the Python language (version 2.7)
rc libqt5core5a:amd64 5.15.3+dfsg-2ubuntu0.2 amd64 Qt 5 core module
rc libqt5gui5:amd64 5.15.3+dfsg-2ubuntu0.2 amd64 Qt 5 GUI module
rc libreoffice-avmedia-backend-gstreamer 1:7.3.7-0ubuntu0.22.04.8 amd64 transitional package for GStreamer backend for LibreOffice
rc libsmi2ldbl:amd64 0.4.8+dfsg2-16 amd64 library to access SMI MIB information
rc libssl3:amd64 3.0.2-0ubuntu1.18 amd64 Secure Sockets Layer toolkit - shared libraries
rc libssl3:i386 3.0.2-0ubuntu1.18 i386 Secure Sockets Layer toolkit - shared libraries
rc nvidia-cuda-toolkit 10.1.243-3 amd64 NVIDIA CUDA development toolkit
rc phonon4qt5:amd64 4:4.11.1-4 amd64 multimedia framework from KDE using Qt 5 - metapackage
rc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire
rc plymouth-theme-ubuntu-logo 0.9.5+git20211018-1ubuntu3 amd64 boot animation, logger and I/O multiplexer - ubuntu theme
rc python2.7-minimal 2.7.18-1~20.04.1 amd64 Minimal subset of the Python language (version 2.7)
rc python3.8-venv 3.8.10-0ubuntu1~20.04.14 amd64 Interactive high-level object-oriented language (pyvenv binary, version 3.8)
rc qemu-kvm 1:4.2-3ubuntu6.30 amd64 QEMU Full virtualization on x86 hardware
rc resolvconf 1.84ubuntu1 all name server information handler
james@james-Dell-System-XPS-15Z:~$ nvidia-smi
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.
james@james-Dell-System-XPS-15Z:~$
Hors ligne
#13 Le 16/02/2025, à 14:54
- ylag
Re : projet python module command not found
Bonjour,
Le GPU NVIDIA GeForce GT 525M doit utiliser la version 390, paquet nvidia-driver-390 du pilote proprio, qui n'est disponible dans les dépôts que jusqu'à la 22.04 incluse.
Références :
Device 'Nvidia GF108M [GeForce GT 525M]
Paquet nvidia-driver-390
Il faut se contenter du pilote libre nouveau, sinon il existe des PPAs pour tenter l'installation du pilote nvidia-390 sur les noyaux récents, mais il semblerait que ça ne fonctionne plus depuis quelques temps ?
Le pilote installé nvidia-driver-570 est inutile dans ce cas et devrait être supprimé.
D'ailleurs, ce pilote n'est pas dans les dépôts réguliers, sauf pour la version en développement 25.04.
Ça viendrait d'un PPA ?
A+
Dernière modification par ylag (Le 16/02/2025, à 15:02)
Hors ligne
#14 Le 16/02/2025, à 15:02
- xubu1957
Re : projet python module command not found
Pour purger les résidus de configuration marqués "rc" :
sudo apt purge ~c
comme expliqué à la machine à café et rajouté dans ce message
Fournis les retours de :
sudo apt update
et la liste des anomalies de démarrage :
journalctl --no-pager -b -p err
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#15 Le 16/02/2025, à 16:10
- lebossejames
Re : projet python module command not found
james@james-Dell-System-XPS-15Z:~$ sudo apt update
Réception de :1 file:/var/cuda-repo-ubuntu2404-12-8-local InRelease [1572 B]
Réception de :1 file:/var/cuda-repo-ubuntu2404-12-8-local InRelease [1572 B]
Atteint :2 http://fr.archive.ubuntu.com/ubuntu noble InRelease
Réception de :3 http://fr.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
Réception de :4 http://fr.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
Atteint :5 http://security.ubuntu.com/ubuntu noble-security InRelease
Réception de :6 http://fr.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [151 kB]
Réception de :7 http://fr.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Components [212 B]
Réception de :8 http://fr.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Components [362 kB]
Réception de :9 http://fr.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Components [940 B]
Réception de :10 http://fr.archive.ubuntu.com/ubuntu noble-backports/main amd64 Components [208 B]
Réception de :11 http://fr.archive.ubuntu.com/ubuntu noble-backports/restricted amd64 Components [216 B]
Réception de :12 http://fr.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Components [17,6 kB]
Réception de :13 http://fr.archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Components [212 B]
785 ko réceptionnés en 1s (1214 ko/s)
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
5 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.
james@james-Dell-System-XPS-15Z:~$ journalctl --no-pager -b -p err
févr. 16 13:54:13 james-Dell-System-XPS-15Z kernel:
févr. 16 13:54:14 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:16 james-Dell-System-XPS-15Z bluetoothd[1793]: profiles/sap/server.c:sap_server_register() Sap driver initialization failed.
févr. 16 13:54:16 james-Dell-System-XPS-15Z bluetoothd[1793]: sap-server: Operation not permitted (1)
févr. 16 13:54:17 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:23 james-Dell-System-XPS-15Z bluetoothd[1793]: profiles/sap/server.c:sap_server_register() Sap driver initialization failed.
févr. 16 13:54:23 james-Dell-System-XPS-15Z bluetoothd[1793]: sap-server: Operation not permitted (1)
févr. 16 13:54:27 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:27 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:28 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:28 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:29 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:29 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:30 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:30 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:31 james-Dell-System-XPS-15Z kernel:
févr. 16 13:54:31 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:32 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:32 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:33 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:34 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:35 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:35 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:36 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 13:54:36 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:01:28 james-Dell-System-XPS-15Z gdm-password][3288]: gkr-pam: unable to locate daemon control file
févr. 16 14:01:29 james-Dell-System-XPS-15Z gdm3[2600]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
févr. 16 14:01:29 james-Dell-System-XPS-15Z systemd[3300]: Failed to start app-gnome-gnome\x2dkeyring\x2dpkcs11-3563.scope - Application launched by gnome-session-binary.
févr. 16 14:01:29 james-Dell-System-XPS-15Z systemd[3300]: Failed to start app-gnome-gnome\x2dkeyring\x2dsecrets-3567.scope - Application launched by gnome-session-binary.
févr. 16 14:01:29 james-Dell-System-XPS-15Z systemd[3300]: Failed to start app-gnome-gnome\x2dkeyring\x2dssh-3561.scope - Application launched by gnome-session-binary.
févr. 16 14:01:31 james-Dell-System-XPS-15Z systemd[3300]: Failed to start app-gnome-spice\x2dvdagent-3760.scope - Application launched by gnome-session-binary.
févr. 16 14:01:32 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:01:35 james-Dell-System-XPS-15Z gdm3[2600]: Gdm: on_display_removed: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed
févr. 16 14:01:35 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:01:36 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:01:37 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:06:29 james-Dell-System-XPS-15Z kernel: i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=39128 end=39129) time 163 us, min 763, max 767, scanline start 760, end 768
févr. 16 14:06:38 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:06:38 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 14:06:38 james-Dell-System-XPS-15Z kernel: NVRM: The NVIDIA GeForce GT 525M GPU installed in this system is
NVRM: supported through the NVIDIA 390.xx Legacy drivers. Please
NVRM: visit http://www.nvidia.com/object/unix.html for more
NVRM: information. The 570.86.10 NVIDIA driver will ignore
NVRM: this GPU. Continuing probe...
févr. 16 16:07:12 james-Dell-System-XPS-15Z kernel: i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=472441 end=472442) time 163 us, min 763, max 767, scanline start 761, end 765
févr. 16 16:07:42 james-Dell-System-XPS-15Z sudo[7655]: james : 3 incorrect password attempts ; TTY=pts/0 ; PWD=/home/james ; USER=root ; COMMAND=/usr/bin/apt purge ~c
james@james-Dell-System-XPS-15Z:~$
Hors ligne