Skip to content

Commit 5288a44

Browse files
committed
Added prerequisites section
1 parent c2b637f commit 5288a44

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

GettingStartedDeb.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@ Instructions on how to use the ASP.NET [Docker](https://www.docker.com/) image h
1515

1616
The rest of this section deals with setting up a machine to run applications without the Docker image.
1717

18+
---
19+
20+
### Prerequisites
21+
22+
* `Unzip`
23+
24+
---
25+
26+
### Get unzip
27+
28+
`Unzip` is needed to unpack runtime packages.
29+
30+
```
31+
sudo apt-get install unzip
32+
```
33+
34+
---
35+
1836
### Get Mono
1937

2038
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
4866

4967
**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`.
5068

51-
### Get unzip
52-
53-
Unzip is needed to unpack runtime packages.
54-
55-
```
56-
sudo apt-get install unzip
57-
```
58-
5969
### Get DNVM
6070

6171
Now let's get DNVM. To do this run:

0 commit comments

Comments
 (0)