Skip to content

Instantly share code, notes, and snippets.

@derixithy
Last active January 9, 2016 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derixithy/5b42489c1559dedab3b5 to your computer and use it in GitHub Desktop.
Save derixithy/5b42489c1559dedab3b5 to your computer and use it in GitHub Desktop.
Koala App libudev.so.1 fix
# I got the inspiration for this from http://portableapps.org/
# Run this in the kola app folder
# Create link to the newer libudev library
ln -s /lib/x86_64-linux-gnu/libudev.so.1 libudev.so.0
# Create start file to use the created link
cat > koala.sh <<'EOL'
#!/bin/bash
HERE="$(dirname "$(readlink -f "${0}")")"
LD_LIBRARY_PATH="${HERE}:${LD_LIBRARY_PATH}" exec "${HERE}"/koala $@
EOL
chmod +x koala.sh
# You can now use koala.sh to start the app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment