From 7bf2b7237ed454cc9016bc81f1a5b087e2a30c3b Mon Sep 17 00:00:00 2001 From: Joel Kuntz Date: Sat, 19 Jul 2014 13:06:36 -0300 Subject: [PATCH 1/3] Update linux.md Improve installation instructions --- docs/build-instructions/linux.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 64db5848d..7eb64d6b4 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -27,13 +27,17 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. ## Instructions +If you have problems with permissions don't forget to prefix with `sudo` + ```sh git clone https://github.com/atom/atom cd atom script/build # Creates application at $TMPDIR/atom-build/Atom sudo script/grunt install # Installs command to /usr/local/bin/atom - script/grunt mkdeb # Generates a .deb package at $TMPDIR/atom-build + script/grunt mkdeb # Generates a .deb package at $TMPDIR/atom-build, i.e. /tmp/atom-build ``` + +To run `atom` and `apm` from a terminal open atom's command pallete `ctrl+shift+p` and run `Window: Install Shell Commands` ## Troubleshooting From ca39e7f7dea0e63dfa1e6fd2ee3cabc357b2bf10 Mon Sep 17 00:00:00 2001 From: Joel Kuntz Date: Sat, 19 Jul 2014 13:08:24 -0300 Subject: [PATCH 2/3] Fix typo --- docs/build-instructions/linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 7eb64d6b4..156e6c41d 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -37,7 +37,7 @@ If you have problems with permissions don't forget to prefix with `sudo` script/grunt mkdeb # Generates a .deb package at $TMPDIR/atom-build, i.e. /tmp/atom-build ``` -To run `atom` and `apm` from a terminal open atom's command pallete `ctrl+shift+p` and run `Window: Install Shell Commands` +To run `atom` and `apm` from a terminal open atom's command palette `ctrl+shift+p` and run `Window: Install Shell Commands` ## Troubleshooting From d2da914151416ee089b3189b58b59adbe12f0a6a Mon Sep 17 00:00:00 2001 From: Joel Kuntz Date: Sat, 19 Jul 2014 14:20:32 -0300 Subject: [PATCH 3/3] Fix abbreviation --- docs/build-instructions/linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 156e6c41d..a65fbfdf4 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -34,7 +34,7 @@ If you have problems with permissions don't forget to prefix with `sudo` cd atom script/build # Creates application at $TMPDIR/atom-build/Atom sudo script/grunt install # Installs command to /usr/local/bin/atom - script/grunt mkdeb # Generates a .deb package at $TMPDIR/atom-build, i.e. /tmp/atom-build + script/grunt mkdeb # Generates a .deb package at $TMPDIR/atom-build, e.g. /tmp/atom-build ``` To run `atom` and `apm` from a terminal open atom's command palette `ctrl+shift+p` and run `Window: Install Shell Commands`