우분투에서 기본 패키지 설치하기
우분투에서 기본 패키지 설치하기 sudo su Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl wget zip unzip vim …
우분투에서 기본 패키지 설치하기 sudo su Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl wget zip unzip vim …
터미널에서 SSH 접속하기 Usage sudo ssh -t <USERNAME>@<IP_ADDRESS> -p 22 -i "<KEY>" Example sudo ssh -t ubuntu@127.0.0.0 -p 22 -i "private.pem"
ShellScript 에서 xargs 사용하기 Usage When you are trying to delete too many files using rm, you may get error message: /bin/rm Argument list too long – Linux. Use xargs …