"Rpm내부 스크립트 보기"의 두 판 사이의 차이

(새 문서: {{소문자}} ;rpm 패키지 내 스크립트 보기 ;rpm 내부 스크립트 확인 ;rpm이 포함하고 있는 스크립트 보기 ==명령어== ;설치된 패키지 <source lang='...)
 
잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
(사용자 2명의 중간 판 9개는 보이지 않습니다)
11번째 줄: 11번째 줄:
;rpm 파일
;rpm 파일
<source lang='bash'>
<source lang='bash'>
rpm -qp --scripts 알피엠파일.rpm
rpm -qp --scripts 파일명.rpm
</source>
</source>


==실행예시 1: 설치된 패키지==
==실행예시 1: 설치된 패키지==
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# rpm -qa httpd
[root@zetawiki ~]# rpm -qa httpd
httpd-2.2.15-15.el6.centos.1.x86_64
httpd-2.2.15-15.el6.centos.1.x86_64
</source>
</source>
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# rpm -q --scripts httpd
[root@zetawiki ~]# rpm -q --scripts httpd
preinstall scriptlet (using /bin/sh):
preinstall scriptlet (using /bin/sh):
# Add the "apache" user
# Add the "apache" user
41번째 줄: 41번째 줄:


==실행예시 2: rpm 파일==
==실행예시 2: rpm 파일==
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
[root@zetawiki ~]# ll | grep epel-release
... (생략)
-rw-r--r--. 1 root root   14540 Nov  6  2012 epel-release-6-8.noarch.rpm
Saving to: “epel-release-6-8.noarch.rpm”
 
100%[=================================================>] 14,540      60.8K/s  in 0.2s    
 
2014-03-17 22:27:53 (60.8 KB/s) - “epel-release-6-8.noarch.rpm” saved [14540/14540]
</source>
</source>
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# rpm -qp --scripts epel-release-6-8.noarch.rpm
[root@zetawiki ~]# rpm -qp --scripts epel-release-6-8.noarch.rpm
postinstall scriptlet (using /bin/sh):
postinstall scriptlet (using /bin/sh):
# Not needed for el6 as sources has been removed
# Not needed for el6 as sources has been removed
65번째 줄: 60번째 줄:
==같이 보기==
==같이 보기==
*[[rpm 내부 파일목록 보기]]
*[[rpm 내부 파일목록 보기]]
*[[rpm 내부 문서파일 목록 보기]]
*[[rpm 내부 설정파일 목록 보기]]
*[[rpm 내부 스크립트 보기]]
*[[rpm으로 파일이 속한 패키지 찾기]]
*[[rpm으로 파일이 속한 패키지 찾기]]
*[[rpm 정보 보기]]
*[[rpm 정보 보기]]
70번째 줄: 68번째 줄:
*[[jar 내부 파일 목록 보기]]
*[[jar 내부 파일 목록 보기]]


==참고 자료==
==참고==
*http://www.tech-recipes.com/rx/1419/list-files-in-an-rpm-package/
*http://www.tech-recipes.com/rx/1419/list-files-in-an-rpm-package/


[[분류: rpm]]
[[분류: rpm]]

2017년 6월 27일 (화) 13:37 기준 최신판

rpm 패키지 내 스크립트 보기
rpm 내부 스크립트 확인
rpm이 포함하고 있는 스크립트 보기

1 명령어[ | ]

설치된 패키지
rpm -q --scripts 패키지명
rpm 파일
rpm -qp --scripts 파일명.rpm

2 실행예시 1: 설치된 패키지[ | ]

[root@zetawiki ~]# rpm -qa httpd
httpd-2.2.15-15.el6.centos.1.x86_64
[root@zetawiki ~]# rpm -q --scripts httpd
preinstall scriptlet (using /bin/sh):
# Add the "apache" user
getent group apache >/dev/null || groupadd -g 48 -r apache
getent passwd apache >/dev/null || \
  useradd -r -u 48 -g apache -s /sbin/nologin \
    -d /var/www -c "Apache" apache
exit 0
postinstall scriptlet (using /bin/sh):
# Register the httpd service
/sbin/chkconfig --add httpd
preuninstall scriptlet (using /bin/sh):
if [ $1 = 0 ]; then
	/sbin/service httpd stop > /dev/null 2>&1
	/sbin/chkconfig --del httpd
fi
posttrans scriptlet (using /bin/sh):
/sbin/service httpd condrestart >/dev/null 2>&1 || :

3 실행예시 2: rpm 파일[ | ]

[root@zetawiki ~]# ll | grep epel-release
-rw-r--r--. 1 root root    14540 Nov  6  2012 epel-release-6-8.noarch.rpm
[root@zetawiki ~]# rpm -qp --scripts epel-release-6-8.noarch.rpm
postinstall scriptlet (using /bin/sh):
# Not needed for el6 as sources has been removed
#echo "# epel repo -- added by epel-release " \
#    >> /etc/sysconfig/rhn/sources
#echo "yum epel http://download.fedora.redhat.com/pub/epel/6/\$ARCH" \
#    >> /etc/sysconfig/rhn/sources
postuninstall scriptlet (using /bin/sh):
#sed -i '/^yum\ epel/d' /etc/sysconfig/rhn/sources
#sed -i '/^\#\ epel\ repo\ /d' /etc/sysconfig/rhn/sources

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}