From c2b637f8882797d52bbb193511e41a59d6bdaf57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onat=20Yi=C4=9Fit=20Mercan?= Date: Thu, 21 May 2015 22:09:48 +0300 Subject: [PATCH 1/3] Added instruction to install unzip in order to unpack runtime packages --- GettingStartedDeb.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/GettingStartedDeb.md b/GettingStartedDeb.md index 2b1c8ff30690..475902504293 100644 --- a/GettingStartedDeb.md +++ b/GettingStartedDeb.md @@ -48,6 +48,14 @@ sudo ldconfig **NOTE:** `make install` puts `libuv.so.1` in `/usr/local/lib`, in the above commands `ldconfig` is used to update `ld.so.cache` so that `dlopen` (see `man dlopen`) can load it. If you are getting libuv some other way or not running `make install` then you need to ensure that dlopen is capable of loading `libuv.so.1`. +### Get unzip + +Unzip is needed to unpack runtime packages. + +``` +sudo apt-get install unzip +``` + ### Get DNVM Now let's get DNVM. To do this run: From 5288a44ae4a23c14dbd1e1c5eca1f23a89f54fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onat=20Yi=C4=9Fit=20Mercan?= Date: Thu, 25 Jun 2015 22:54:53 +0300 Subject: [PATCH 2/3] Added prerequisites section --- GettingStartedDeb.md | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/GettingStartedDeb.md b/GettingStartedDeb.md index 475902504293..9be31e08e121 100644 --- a/GettingStartedDeb.md +++ b/GettingStartedDeb.md @@ -15,6 +15,24 @@ Instructions on how to use the ASP.NET [Docker](https://www.docker.com/) image h The rest of this section deals with setting up a machine to run applications without the Docker image. +--- + +### Prerequisites + +* `Unzip` + +--- + +### Get unzip + +`Unzip` is needed to unpack runtime packages. + +``` +sudo apt-get install unzip +``` + +--- + ### Get Mono Mono is how .NET applications can run on platforms other than Windows. Mono is an ongoing effort to port the .NET Framework to other platforms. In the process of developing ASP.NET 5 we worked with the Mono team to fix some bugs and add features that are needed to run ASP.NET applications. These changes are only in builds of mono that are greater than 4.0.1. @@ -48,14 +66,6 @@ sudo ldconfig **NOTE:** `make install` puts `libuv.so.1` in `/usr/local/lib`, in the above commands `ldconfig` is used to update `ld.so.cache` so that `dlopen` (see `man dlopen`) can load it. If you are getting libuv some other way or not running `make install` then you need to ensure that dlopen is capable of loading `libuv.so.1`. -### Get unzip - -Unzip is needed to unpack runtime packages. - -``` -sudo apt-get install unzip -``` - ### Get DNVM Now let's get DNVM. To do this run: From 7a0c4765035e20144dbe6f04747f1f7a8bb11010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onat=20Yi=C4=9Fit=20Mercan?= Date: Fri, 26 Jun 2015 23:47:37 +0300 Subject: [PATCH 3/3] Added 'Get Curl' to prerequisites section --- GettingStartedDeb.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/GettingStartedDeb.md b/GettingStartedDeb.md index 9be31e08e121..f6a517af05c0 100644 --- a/GettingStartedDeb.md +++ b/GettingStartedDeb.md @@ -20,10 +20,11 @@ The rest of this section deals with setting up a machine to run applications wit ### Prerequisites * `Unzip` +* `Curl` --- -### Get unzip +### Get Unzip `Unzip` is needed to unpack runtime packages. @@ -31,6 +32,14 @@ The rest of this section deals with setting up a machine to run applications wit sudo apt-get install unzip ``` +### Get Curl + +`Curl` is a command line tool for transferring data specified with URL syntax. + +``` +sudo apt-get install curl +``` + --- ### Get Mono @@ -53,7 +62,7 @@ sudo apt-get install mono-complete To build libuv you should do the following: ``` -sudo apt-get install automake libtool curl +sudo apt-get install automake libtool curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src cd /usr/local/src/libuv-1.4.2 sudo sh autogen.sh