
[NNN]_ubuntu 에 노드 설치
1. ubuntu front 에 노드 설치 순서대로 명령어를 입력해 노드를 설치합니다. $ sudo apt-get update $ sudo apt-get install -y build-essential $ sudo apt-get install -y curl $ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -- $ sudo apt-get install -y nodejs sudo apt-get update 시스템의 패키지 목록을 최신 상태로 업데이트합니다. sudo: 슈퍼유저 권한으로 실행. apt-get: Debian 기반 시스템에서 패키지를 설치하고 업데이트하기 위한 명령어. update: 패키지 목록을 업데이트하는 서브커맨드. sudo ..