설치 환경
Quick Install
1. 패키지 업데이트
sudo apt update
2. GPG key 레포지토리 등록
sudo apt install -y ca-certificates curl gnupg
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
3. Node.js 20 LTS 레포지토리 추가
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
4.패키지 업데이트
sudo apt update
5. Node.js 설치
sudo apt install -y nodejs
[option] Yarn 설치
# 개발 툴 설치
sudo apt install gcc g++ make -y
# yarn 설치
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt-get install yarn -y
반응형
'운영체제 및 서버 > Linux' 카테고리의 다른 글
Ubuntu 22.04 Docker ( with docker-compose) 설치 (1) | 2024.03.19 |
---|---|
Ubuntu 22.04 최신 redis 설치 ( redis 7.2.4 ) (0) | 2024.03.17 |
Ubuntu 22.04 Python 3.12 설치 (2) | 2024.03.14 |
Ubuntu 22.04 Jenkins 설치 (0) | 2024.03.14 |