From 47a2e576333d88af80e3c0b88295728621ef920d Mon Sep 17 00:00:00 2001 From: Sophearak THA Date: Fri, 9 May 2014 14:44:57 +0700 Subject: [PATCH] :memo: Add troubleshoot document libudev in Ubuntu 14.04 --- docs/build-instructions/linux.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index fd68ab6ca..76bfe34ca 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -21,3 +21,15 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. ``` ## Troubleshooting + + * On Ubuntu 14.04 LTS when you get error message + + + ```sh + /usr/local/share/atom/atom: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory + ``` +You can solve this by make a symlink + +x64 `sudo ln -sf /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0` + +x86 `sudo ln -sf /lib/i386-linux-gnu/libudev.so.1 /lib/i386-linux-gnu/libudev.so.0`