"리눅스 rpm 명령어"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 4명의 중간 판 12개는 보이지 않습니다)
4번째 줄: 4번째 줄:
;레드햇 패키지 매니저, RPM 패키지 매니저
;레드햇 패키지 매니저, RPM 패키지 매니저


;리눅스 rpm 명령어, 리눅스 RPM 사용법  
;리눅스 rpm 명령어, 리눅스 RPM 사용법, 리눅스 source rpm 설치


==RPM==
==RPM==
14번째 줄: 14번째 줄:


==RPM 설치/확인/제거==
==RPM 설치/확인/제거==
;설치 ★★
{{소스헤더|설치 ★★}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -ivh 패키지명
rpm -ivh 패키지명
</source>
</syntaxhighlight>


;확인 ★★<ref>설치 여부를 확인할 수 있는 -q 옵션이 있지만 잘 쓰지 않는다. 전체 패키지 목록(-qa 옵션)에서 grep하여 보는 것이 편하더라.</ref>
{{소스헤더|확인 ★★<ref>설치 여부를 확인할 수 있는 -q 옵션이 있지만 잘 쓰지 않는다. 전체 패키지 목록(-qa 옵션)에서 grep하여 보는 것이 편하더라.</ref>}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qa | grep 패키지명
rpm -qa | grep 패키지명
</source>
</syntaxhighlight>


;제거 ★★
{{소스헤더|제거 ★★}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -ev 패키지명
rpm -ev 패키지명
</source>
</syntaxhighlight>


;업그레이드
{{소스헤더|업그레이드}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -Uvh 패키지명
rpm -Uvh 패키지명
</source>
</syntaxhighlight>
:→ 업그레이드 명령어이지만 기존에 설치된 것이 없을 경우 설치된다.<ref>인터넷에 보면, rpm 설치시 명령어로 쓰여 있는 경우가 많다.</ref>
:→ 업그레이드 명령어이지만 기존에 설치된 것이 없을 경우 설치된다.<ref>인터넷에 보면, rpm 설치시 명령어로 쓰여 있는 경우가 많다.</ref>


==기타==
==기타==
;파일이 속한 패키지 찾기 ★
{{소스헤더|파일이 속한 패키지 찾기 ★}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qf 파일
rpm -qf 파일
</source>
</syntaxhighlight>


;[[rpm 패키지 정보 보기]](info) ★
{{소스헤더|[[rpm 패키지 정보 보기]](info) ★}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qi 설치된패키지명
rpm -qi 설치된패키지명
</source>
</syntaxhighlight>
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qip 파일명.rpm
rpm -qip 파일명.rpm
</source>
</syntaxhighlight>


;[[rpm 내부 파일목록 보기]](list)
{{소스헤더|[[rpm 내부 파일목록 보기]](list)}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -ql 설치된패키지명
rpm -ql 설치된패키지명
</source>
</syntaxhighlight>
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qlp 파일명.rpm
rpm -qlp 파일명.rpm
</source>
</syntaxhighlight>


;rpm 내부 설정파일 확인
{{소스헤더|rpm 내부 설정파일 확인}}
{{참고|rpm 내부 설정파일 확인}}
{{참고|rpm 내부 설정파일 확인}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qc 설치된패키지명
rpm -qc 설치된패키지명
</source>
</syntaxhighlight>
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qcp 파일명.rpm
rpm -qcp 파일명.rpm
</source>
</syntaxhighlight>


;rpm 내부 문서파일 확인
{{소스헤더|rpm 내부 문서파일 확인}}
{{참고|rpm 내부 문서파일 확인}}
{{참고|rpm 내부 문서파일 확인}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qd 설치된패키지명
rpm -qd 설치된패키지명
</source>
</syntaxhighlight>
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qdp 파일명.rpm
rpm -qdp 파일명.rpm
</source>
</syntaxhighlight>


;rpm 내부 스크립트 확인
{{소스헤더|rpm 내부 스크립트 확인}}
{{참고|rpm 내부 스크립트 확인}}
{{참고|rpm 내부 스크립트 확인}}
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -q --scripts 설치된패키지명
rpm -q --scripts 설치된패키지명
</source>
</syntaxhighlight>
<source lang='bash'>
<syntaxhighlight lang='bash'>
rpm -qp --scripts 파일명.rpm
rpm -qp --scripts 파일명.rpm
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[RPM 설치된 패키지 전체목록 보기 rpm -qa]]
*[[rpm 설치 확인]]
*[[rpm 설치 확인]]
*[[rpm 설치 일자 확인]]
*[[rpm 설치 일자 확인]]
100번째 줄: 101번째 줄:
*[[rpm-build]]
*[[rpm-build]]


==주석==
==참고==
<references/>
 
==참고 자료==
*http://www.cyworld.com/integritian/264622
*http://www.cyworld.com/integritian/264622
*http://terms.naver.com/entry.nhn?docId=1225558&cid=40942&categoryId=32837


[[분류:/bin]]
[[분류:/bin]]
[[분류:rpm]]
[[분류:rpm]]
[[분류: 재귀 약자]]

2020년 12월 7일 (월) 11:30 기준 최신판

  다른 뜻에 대해서는 분당 회전수 문서를 참조하십시오.
  다른 뜻에 대해서는 CPM 문서를 참조하십시오.
Red Hat Package Manager, RPM Package Manager; RPM
레드햇 패키지 매니저, RPM 패키지 매니저
리눅스 rpm 명령어, 리눅스 RPM 사용법, 리눅스 source rpm 설치

1 RPM[ | ]

 

2 RPM 설치/확인/제거[ | ]

설치 ★★
rpm -ivh 패키지명
확인 ★★[1]
rpm -qa | grep 패키지명
제거 ★★
rpm -ev 패키지명
업그레이드
rpm -Uvh 패키지명
→ 업그레이드 명령어이지만 기존에 설치된 것이 없을 경우 설치된다.[2]

3 기타[ | ]

파일이 속한 패키지 찾기 ★
rpm -qf 파일
rpm -qi 설치된패키지명
rpm -qip 파일명.rpm
rpm -ql 설치된패키지명
rpm -qlp 파일명.rpm
rpm 내부 설정파일 확인
rpm -qc 설치된패키지명
rpm -qcp 파일명.rpm
rpm 내부 문서파일 확인
rpm -qd 설치된패키지명
rpm -qdp 파일명.rpm
rpm 내부 스크립트 확인
rpm -q --scripts 설치된패키지명
rpm -qp --scripts 파일명.rpm

4 같이 보기[ | ]

5 참고[ | ]

  1. 설치 여부를 확인할 수 있는 -q 옵션이 있지만 잘 쓰지 않는다. 전체 패키지 목록(-qa 옵션)에서 grep하여 보는 것이 편하더라.
  2. 인터넷에 보면, rpm 설치시 명령어로 쓰여 있는 경우가 많다.
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}