목록Linux (6)
HEROJOON 블로그(히로블)
Bash Shell Script 생성 # vi 파일명 # 또는 vim 파일명 vi testfile.sh 생성한 testfile.sh에 Bash Shell 선언 # Bash Shell Script 파일에 아래 내용 입력 후 저장 #!/bin/bash # 스크립트 실행 확인을 위해 출력 텍스트 입력 # echo는 텍스트 출력 명령어 echo "Running Shell File..." 더보기 아래와 같이 testfile.sh 파일이 생성됩니다. testfile.sh에서 i (입력 모드)를 누릅니다. 입력 모드가 되면 testfile.sh에 #!/bin/bash 을 입력합니다. Esc + Shift + ; 입력하고 wq를 입력 후 Enter로 testfile.sh를 저장합니다. Bash Shell Script ..
// cpu당 물리 core 수 확인 command grep 'cpu cores' /proc/cpuinfo | tail -1 // 결과 cpu cores : 1
1. nvm 설치 설치 가이드 링크: https://github.com/nvm-sh/nvm#installing-nvm-on-alpine-linux GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions - GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active nod... ..
심볼릭 링크는 원본 폴더를 구분이 쉬운 이름으로 연결하여 원본을 참조할 수 있도록 제공하는 기능입니다. 원본을 참조하여 내가 원하는 여러 이름으로 사용할 수 있습니다. ln -s [참조할 디렉토리나 파일명] [심볼릭 링크명] ex) ln -s node-v14.17.6-linux-x64 node14
1. cat /proc/version 명령어로 linux os, version 확인 2. nginx 공식 홈페이지에서 linux os, version에 맞는 방법으로 설치 https://www.nginx.com/resources/wiki/start/topics/tutorials/install/#official-red-hat-centos-packages Install | NGINX There are currently two versions of NGINX available: stable (1.20.x), mainline (1.21.x). The mainline branch gets new features and bugfixes sooner but might introduce new bugs as well...