Skip to content

Commit

Permalink
docs: simplified package installation with build-essential
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobinstein authored and djwhitt committed Sep 5, 2023
1 parent a337277 commit 0945db9
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions docs/linux-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you would like to quickly install all required and suggested packages, you ca


```
sudo apt update -y && sudo apt upgrade -y && sudo apt install -y curl openssh-server docker-compose git certbot nginx sqlite3 && sudo systemctl enable ssh && curl -sSL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && sudo apt-get update -y && sudo apt-get install -y gcc g++ make yarn && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash && source ~/.bashrc && sudo ufw allow 22 80 443 && sudo ufw enable
sudo apt update -y && sudo apt upgrade -y && sudo apt install -y curl openssh-server docker-compose git certbot nginx sqlite3 build-essential && sudo systemctl enable ssh && curl -sSL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && sudo apt-get update -y && sudo apt-get install -y yarn && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash && source ~/.bashrc && sudo ufw allow 22 80 443 && sudo ufw enable
```

```
Expand Down Expand Up @@ -128,25 +128,12 @@ These packages are not required to run a node in its basic form. However, they w
```


11. Install GCC:
11. Install build tools
```
sudo apt-get install gcc -y
sudo apt install build-essential
```


12. Install G++:
```
sudo apt-get install g++ -y
```


13. Install make:
```
sudo apt-get install make -y
```


14. Install SQLite:
12. Install SQLite:
```
sudo apt install sqlite3 -y
```
Expand Down

0 comments on commit 0945db9

Please sign in to comment.