diff --git a/GettingStartedDeb.md b/GettingStartedDeb.md index 2b1c8ff30690..f6a517af05c0 100644 --- a/GettingStartedDeb.md +++ b/GettingStartedDeb.md @@ -15,6 +15,33 @@ 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` +* `Curl` + +--- + +### Get Unzip + +`Unzip` is needed to unpack runtime packages. + +``` +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 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. @@ -35,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