Skip to content

Commit a54c950

Browse files
committed
Merge pull request dotnet#626 from onatm/dev
Added instruction to install unzip in order to unpack runtime packages
2 parents 56ff740 + 7a0c476 commit a54c950

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

GettingStartedDeb.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,33 @@ The steps to set up a Linux machine are:
5959
* Add sources to NuGet.config (For package restore)
6060

6161

62+
---
63+
64+
### Prerequisites
65+
66+
* `Unzip`
67+
* `Curl`
68+
69+
---
70+
71+
### Get Unzip
72+
73+
`Unzip` is needed to unpack runtime packages.
74+
75+
```
76+
sudo apt-get install unzip
77+
```
78+
79+
### Get Curl
80+
81+
`Curl` is a command line tool for transferring data specified with URL syntax.
82+
83+
```
84+
sudo apt-get install curl
85+
```
86+
87+
---
88+
6289
### Get Mono
6390

6491
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.
@@ -79,7 +106,7 @@ sudo apt-get install mono-complete
79106
To build libuv you should do the following:
80107

81108
```
82-
sudo apt-get install automake libtool curl
109+
sudo apt-get install automake libtool
83110
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
84111
cd /usr/local/src/libuv-1.4.2
85112
sudo sh autogen.sh

0 commit comments

Comments
 (0)