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
cd /usr/lib/wsl/lib/ if [ -n "$output" ]; then # -n checks if the string is not empty
cp libcuda.so libcuda.so.backup # If output is not empty, proceed with the original steps
cp libcuda.so.1 libcuda.so.1.backup
# Delete wrong files # Navigate to the directory
rm -r libcuda.so cd /usr/lib/wsl/lib/
rm -r libcuda.so.1
# Create symbolic links # Backup existing files
ln -s libcuda.so.1.1 libcuda.so echo "Creating backups..."
ln -s libcuda.so.1.1 libcuda.so.1 sudo cp libcuda.so libcuda.so.backup
sudo cp libcuda.so.1 libcuda.so.1.backup
# Check libraries again # Remove the original files
ldconfig echo "Removing original files..."
sudo rm libcuda.so
sudo rm libcuda.so.1
echo "Fixed" # Create symbolic links
echo "Creating symbolic links..."
sudo ln -s libcuda.so.1.1 libcuda.so
sudo ln -s libcuda.so.1.1 libcuda.so.1
# Refresh shared library cache
echo "Refreshing shared library cache..."
sudo ldconfig
# Confirmation message
echo "Fixed and updated. Backup files have been created."
else
echo "No need to fix. ldconfig output is empty."
fi