Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion GettingStartedDeb.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down