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
# Navigate to the directory
# Delete wrong files cd /usr/lib/wsl/lib/
rm -r libcuda.so
rm -r libcuda.so.1 # Backup existing files
echo "Creating backups..."
# Create symbolic links sudo cp libcuda.so libcuda.so.backup
ln -s libcuda.so.1.1 libcuda.so sudo cp libcuda.so.1 libcuda.so.1.backup
ln -s libcuda.so.1.1 libcuda.so.1
# Remove the original files
# Check libraries again echo "Removing original files..."
ldconfig 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