From c466cef7d14736218aa23a1720080722260ae95f Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 12 May 2014 22:27:22 +0800 Subject: [PATCH 1/2] Upgrade to atom-shell@0.12.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 78d99b745..66762e476 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "url": "http://github.com/atom/atom/raw/master/LICENSE.md" } ], - "atomShellVersion": "0.12.3", + "atomShellVersion": "0.12.4", "dependencies": { "async": "0.2.6", "atom-keymap": "^0.19.0", From f731769afd716d08ad38f1f30c38f92f1611a5c7 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 12 May 2014 22:28:03 +0800 Subject: [PATCH 2/2] :memo: No more need of libudev hack on Linux. --- docs/build-instructions/linux.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 0a18ce9f7..359c780b9 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -21,16 +21,3 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. ``` ## Troubleshooting - -### 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 - ``` -On x64 systems you can solve this error by making a symlink - - ```sh - sudo ln -sf /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0 - ```