Intro
이번 포스트에서는 유용한, 그리고 자주 사용하는 리눅스 패키지들에 대해 알아보겠습니다.
Ubuntu, CentOS, Rocky, Alpine 네 가지 주요 리눅스 배포판에서 설치하는 방법이 각각 다르니, 아래 내용을 꼭 참고하세요.
본 포스트는 지속적으로 업데이트 할 예정입니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
| # Ubuntu
$ apt update # 패키지 리포지토리 업데이트
$ apt install <패키지명> # 패키지 설치
# CentOS
$ yum install <패키지명> # 패키지 설치
# Rocky Linux
$ dnf install <패키지명> # 패키지 설치
# Alpine Linux
$ apk update # 패키지 리포지토리 업데이트
$ apk add <패키지명> # 패키지 설치
|
패키지
패키지명 |
설명 |
net-tools |
네트워크 관련 툴(netstat, ifconfig..) |
nano |
편집기 |
iputils |
ping 등 네트워크 관련 패키지 포함 |
- netstat, ifconfig 등 네트워크와 관련된 툴을 담은 패키지
1
2
3
4
5
| # 설치
$ apt install net-tools
$ yum install net-tools
$ dnf install net-tools
$ apk add net-tools
|
nano
1
2
3
4
5
| # 설치
$ apt install nano
$ yum install nano
$ dnf install nano
$ apk add nano
|
Reference
net-tools : https://4lugin.tistory.com/149
net-tools : https://velog.io/@dashh/Ubuntu-install-netstat-ifconfig