resolve ldconfig issue
This commit is contained in:
parent
05ccce76bb
commit
410f49343f
1 changed files with 19 additions and 0 deletions
19
README.md
19
README.md
|
@ -30,6 +30,25 @@ Commande pour lancer mon installation :
|
||||||
[anri@PC ~]# curl https://git.mylloon.fr/Anri/confOS/raw/branch/main/arch_wsl.sh -s | bash
|
[anri@PC ~]# curl https://git.mylloon.fr/Anri/confOS/raw/branch/main/arch_wsl.sh -s | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[Fix bug `ldconfig`](https://github.com/microsoft/WSL/issues/5548#issuecomment-1366418464) :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# in cmd as admin
|
||||||
|
cd C:\Windows\System32\lxss\lib
|
||||||
|
del libcuda.so
|
||||||
|
del libcuda.so.1
|
||||||
|
wsl -e /bin/bash
|
||||||
|
# in WSL
|
||||||
|
ln -s libcuda.so.1.1 libcuda.so.1
|
||||||
|
ln -s libcuda.so.1.1 libcuda.so
|
||||||
|
exit
|
||||||
|
# back in CMD
|
||||||
|
wsl --shutdown
|
||||||
|
wsl -e /bin/bash
|
||||||
|
# in restarted WSL
|
||||||
|
sudo ldconfig
|
||||||
|
```
|
||||||
|
|
||||||
## Arch
|
## Arch
|
||||||
|
|
||||||
<details><summary>Procédure dans l'image ISO</summary>
|
<details><summary>Procédure dans l'image ISO</summary>
|
||||||
|
|
Loading…
Reference in a new issue