From 774d7ec0af95a06346fbcf50e40507131dd91707 Mon Sep 17 00:00:00 2001 From: Aaron Halford Date: Fri, 9 May 2014 15:16:13 -0700 Subject: [PATCH] Update docs and fix typos --- docs/build-instructions/linux.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index d1eee64f6..d315abe12 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -22,12 +22,15 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. ## Troubleshooting - * On Ubuntu 14.04 LTS when you get error message +### Ubuntu 14.04 + * On Ubuntu 14.04 LTS if `libudev.so.0` does not exist you will get an 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 +On x64 systems you can solve this error by making a symlink -x64 `sudo ln -sf /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0` + ```sh + sudo ln -sf /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0` + ```