add logic to wsl_cuda_fix.sh

This commit is contained in:
Chris Wong 2023-10-26 11:51:51 +08:00
parent 630c628b93
commit 8f0dcc4f0f

View File

@ -1,22 +1,37 @@
#!/bin/bash #!/bin/bash
# Check libraries # Capture output and errors from ldconfig (refresh shared library cache)
ldconfig output=$(sudo ldconfig 2>&1)
echo "ldconfig output: $output"
# Backup files in WSL lib # Check the output
if [ -n "$output" ]; then # -n checks if the string is not empty
# If output is not empty, proceed with the original steps
# Navigate to the directory
cd /usr/lib/wsl/lib/ cd /usr/lib/wsl/lib/
cp libcuda.so libcuda.so.backup
cp libcuda.so.1 libcuda.so.1.backup
# Delete wrong files # Backup existing files
rm -r libcuda.so echo "Creating backups..."
rm -r libcuda.so.1 sudo cp libcuda.so libcuda.so.backup
sudo cp libcuda.so.1 libcuda.so.1.backup
# Remove the original files
echo "Removing original files..."
sudo rm libcuda.so
sudo rm libcuda.so.1
# Create symbolic links # Create symbolic links
ln -s libcuda.so.1.1 libcuda.so echo "Creating symbolic links..."
ln -s libcuda.so.1.1 libcuda.so.1 sudo ln -s libcuda.so.1.1 libcuda.so
sudo ln -s libcuda.so.1.1 libcuda.so.1
# Check libraries again # Refresh shared library cache
ldconfig echo "Refreshing shared library cache..."
sudo ldconfig
echo "Fixed" # Confirmation message
echo "Fixed and updated. Backup files have been created."
else
echo "No need to fix. ldconfig output is empty."
fi