Study/Linux

리눅스 설치 후 개발 Setting 하기

AC 2022. 1. 20. 18:28

Install Brave Browser

sudo apt install apt-transport-https curl

sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg

echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list

sudo apt update

sudo apt install brave-browser

 

Install VSCode

https://code.visualstudio.com/download

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

 

Install Rust

Installing Rust is as simple as running this.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
export PATH="$HOME/.cargo/bin:$PATH"
rustup --version
rustc --version
cargo --version

 

Install Solana (Block Chain)

Install Solana

sh -c "$(curl -sSfL https://release.solana.com/v1.9.4/install)"
export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH"
# Check the Solana binary is available.
solana --version

# Check you can run a local validator (Run Ctrl+C to exit).
# We’ll see what this does in this article.
# Note this creates a "test-ledger" folder in your current directory.
solana-test-validator

 

Install NodeJs

curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - 
sudo apt install nodejs 
node --version

Install NVM

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc

Install libssl-dev

sudo apt install libssl-dev

 

Install Yarn

npm i -g yarn

 

LIST