CODEDRAGON ㆍSecurity/Linux
패키지 설치 유무 확인
dnf list gcc |
설치가 안된 경우
[root@localhost ~]# dnf list gcc Last metadata expiration check performed 1 day, 10:25:13 ago on Thu May 19 00:15:02 2016. Available Packages gcc.i686 5.3.1-6.fc23 updates gcc.x86_64 5.3.1-6.fc23 updates [root@localhost ~]# |
Available Packages로 나타나는 경우는 설치되어있지 않은 것입니다.
설치가 되어 있는 경우
[root@localhost ~]# dnf list gcc Last metadata expiration check performed 0:02:38 ago on Fri May 20 11:44:43 2016. Installed Packages gcc.x86_64 5.3.1-6.fc23 @updates Available Packages gcc.i686 5.3.1-6.fc23 updates [root@localhost ~]# |
Installed Packages로 나타나는 경우에는 이미 설치되어 있는 경우입니다.
패키지 설치
dnf install -y gcc |
버전 확인하기
gcc -v |
'Security > Linux' 카테고리의 다른 글
우분투 한국 커뮤니티(ubuntu korea community) (0) | 2017.02.19 |
---|---|
이것이 우분투 리눅스다 - Youtube, 샘플북 (0) | 2017.02.05 |
nslookup - DNS 동작 확인 명령어 (0) | 2016.12.10 |
which - 특정 명령어의 경로를 확인하는 명령어 (0) | 2016.12.02 |
apropos (0) | 2016.11.26 |