Bonjour
Je débute en Linux
J'ai installé Ubuntu, d'abord en version 'essai' donc démarage sur CD-ROM puis en version "bi boot" avec Windows
J'ai essayé d'installer un logiciel et il me retourne une erreur
J'ai un peu cherché sur internet et j'ai fait l'installation de CUDA Toolkit 10.2 Download
Après avoir choisis les différentes options (Linux, X86_64, Ubuntu, 18.04, deb (local) il m'a afficher la procédure
wget
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600
wget
http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda-repo-ubuntu1804-10-2-local-10.2.89-440.33.01_1.0-1_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1804-10-2-local-10.2.89-440.33.01_1.0-1_amd64.deb
sudo apt-key add /var/cuda-repo-10-2-local-10.2.89-440.33.01/7fa2af80.pub
sudo apt-get update
sudo apt-get -y install cuda
Tous réussis avec brio 🙂
Donc j'ai copié ligne par ligne dans le "shell"
puis installation du logiciel qui m'intéresse
./confiure
RAS
make
et la erreur
<pre>make all-recursive
make[1] : on entre dans le répertoire « /home/nicdew/Téléchargements/truecrack-kali-master »
Making all in src
make[2] : on entre dans le répertoire « /home/nicdew/Téléchargements/truecrack-kali-master/src »
cat Cuda/Core.cu > Cuda.cu
cat Cuda/Pkcs5.cu >> Cuda.cu
cat Cuda/Aes.cu >> Cuda.cu
cat Cuda/Serpent.cu >> Cuda.cu
cat Cuda/Twofish.cu >> Cuda.cu
cat Cuda/Crypto.cu >> Cuda.cu
cat Cuda/Xts.cu >> Cuda.cu
cat Cuda/Rmd160.alternative.cu >> Cuda.cu
cat Cuda/Sha2.cu >> Cuda.cu
cat Cuda/Whirlpool.cu >> Cuda.cu
[b]nvcc -c Cuda.cu -g -I./Common/ -I./Crypto/ -I./Cuda/ -I./Main/ -I./ -I/usr/local/cuda/include/ -D_GPU_ -gencode arch=compute_10,code=sm_10 -gencode arch=compute_20,code=sm_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -ftz=true -use_fast_math --opencc-options -OPT:Olimit=0 -o Cuda.o
/bin/bash: nvcc : commande introuvable[/b]
make[2]: *** [Makefile:437: Cuda.o] Error 127
make[2] : on quitte le répertoire « /home/nicdew/Téléchargements/truecrack-kali-master/src »
make[1]: *** [Makefile:360: all-recursive] Error 1
make[1] : on quitte le répertoire « /home/nicdew/Téléchargements/truecrack-kali-master »
make: *** [Makefile:246: all] Error 2
</pre>
Apparemment, il ne trouve pas la commande NVCC (d'ou ma recherche et installation de CUDA)
mais après celle ci tjs la même erreur
Que dois-je faire ? installer ?
Merci