ࡱ> M 1Sbjbj== "WW1Olz""""L"zYn#%%%%%%%MYOYOYOYOYOYOY$<[ \]sY%%%%%sYF6%%YF6F6F6% %%MYF6%MYF6pF666wRYU%# Q Mz "H/^SYUY0YS]5]YUF6RPM - Redhat Package Manager:The rpm command is used to manage software applications and system modules. Step One: Import Red Hat and Fedora GPG signature keys: [root@yoserver2 ~]# rpm --import /usr/share/rhn/RPM-GPG-KEY [root@yoserver2 ~]# rpm --import /usr/share/rhn/RPM-GPG-KEY-fedora Do this once to configure RPM so that you won't constantly get the warning message that the signature is "NOKEY". The purpose is to protect you from using a corrupt or hacked RPM. Once these command are performed, you are ready to use the RPM command. (This is also required for the YUM commands below.) Note: Many GPG public keys for other RPM packages (i.e. MySQL: 0x5072E1F5), can be obtained from  HYPERLINK "http://www.keyserver.net/" http://www.keyserver.net/. (The following RPM installation warning will inform you of the key to obtain: warning: MySQL-XXXX.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5) Importing a new key from key server: gpg --keyserver keyserver.veridis.com --recv-key 5072e1f5 gpg --export -a 5072e1f5 > pubkey_mysql.asc rpm --import pubkey_mysql.asc Step Two: RPM commands and their use RPM CommandDescriptionrpm -qilp program_package-ver.rpmQuery for information on package and list destination of files to be installed by the package. You can also use the Gnome GUI program file-roller to view and read the contents of an RPM. Great tool for inspecting an RPM package and reading the package documentation before you decide to install the package.rpm2cpio - < program_package-ver.rpm | cpio -id ./path/and/file-nameExtract a single file (with path) from the RPM package to the local directory.rpm -Uvh program_package-ver.rpmUpgrade the system with the RPM packagerpm -ivh program_package-ver.rpmNew Installrpm -Fvh program_package-ver.rpm Freshen install. Removes all files (including config files) of older version during upgrade.rpm -q program_packageQuery system RPM database (/var/lib/rpm), to see if package is installed.rpm -qi program_packageQuery system RPM database for info/description on package (if installed)rpm -ql program_packageList all files on the system associated with the package.rpm -qf fileIdentify the package to which this file belongs.rpm -e program_packageUninstall package from your systemrpm -qa List ALL packages on your system. Use this with grep to find families of packages.rpm -qp --requires program_package-ver.rpm List dependancies (files and packages) of RPM. List prerequisites.rpm -q --whatrequires program_packageList dependant packages of RPM. What packages will break if this RPM is removed.rpm -K --nogpg *.rpm Non sure if RPM downloaded ok? Verify md5 sum. RPM FlagDescription--nodeps RPM flag to force install even if dependency requirements are not met.--force Overwrite of other packages allowed.--notriggers Don't execute scripts which are triggered by the installation of this package.--root /directory-name Use the system chrooted at /directory-name. This means the database will be read or modified under /directory-name. (Used by developers to maintain multiple environments)--ignorearchAllow installation even if the architectures of the binary RPM and host don't match. This is often required for RPM's which were assembled incorrectly Notes: Fedora Core RPM downloads:  HYPERLINK "http://download.fedora.redhat.com/pub/fedora/linux/core/" http://download.fedora.redhat.com/pub/fedora/linux/core/ Use your browser,  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=wget" wget,  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=curl" curl (downloads using http, https, ftp, ...) or  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=ftp" ftp the site download.fedora.redhat.com (login: anonymous, password: your-email-address). Many times, (like with glibc library or Netscape RPMs etc) it is necessary to mention two or more packages on the command line. The rpm command will account for the co-dependency of the packages. i.e.: rpm -ivh abc-package1-i386.rpm abc-package2-i386.rpm abc-package3-i386.rpm Configuration information is stored in /var/lib/rpm Database of descriptive package info. RPM package rpmdb-redhat. Installs database of all packages in distributions to make RPM more informative. When installing additional RPM's from the Red Hat CD, cd to the RPMS directory on the CD which contains the packages to be installed. Building from a "src" (source) RPM: rpmbuild --rebuild package-name.src.rpm The source will be placed in /usr/src/redhat/RPMS/.... The command then performs a prep, compile, install and finally creates a new binary RPM package. Use option --clean for cleanup. The command rpmbuild --showrc package-name.src.rpm shows options to be used as specified in rpmrc and macros configuration file(s). The source RPMs are not in the RPM database and will not be seen with "rpm -qa [Potential Pitfall]: If you get the errors: error: cannot get exclusive lock on /var/lib/rpm/Packages error: cannot open Packages index using db3 - Operation not permitted (1) error: cannot open Packages database in /var/lib/rpm then you must check: Who are you logged in as?: whoami You must be root. File permissions: ls -l /var/lib/rpm/Packages File must be owned by root. Command to kill processes locking file: fuser -k /var/lib/rpm/Packages It is best to terminate processes by exiting program (like glint) normally if possible. [Potential Pitfall]: If you get the errors: [root]# rpm -e package-name error: "package-name-X.X.X-X" specifies multiple packages This is because a package is doubly listed: (Often due to dual 32/64 bit architectures such as the AMD Athelon/Opteron and Intel EM64T - Extended Memory 64 Technology) [root]# rpm -q package-name package-name-X.X.X-X package-name-X.X.X-X Fix: rpm -e --allmatches package-name [Potential Pitfall]: You try and install an RPM but you can not get the appropriate version of the run time libraries because they are too old and not present on your system or you get a runtime error: /usr/bin/ld: cannot find /lib/libxx.so.1.0.4 Here is how to install some old libraries on your newer system without corrupting your current installation. First force the installation of the RPM without the dependency requirement: rpm --nodeps -ivh xxxx-...rmp. Next download an old RPM of the appropriate library, i.e. glibc-x.x.x.rpm Extract the libraries from the RPM: rpm2cpio glibc-x.x.x.rpm | cpio -idv This will install to your current directory: ./usr/lib/.. and ./lib/... Manually copy the library file to the library directory or path accessible by LD_LIBRARY_PATH or ldconfig: i.e. cp ./lib/libxx.so.1.0.4 /lib/libxx.so.1.0.4 Useful man pages:  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=rpm" rpm - Red Hat Package Manager  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=rpmbuild" rpmbuild - Build/create an RPM package. redhat-config-packages - RH 8.0 GUI  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=gnorpm" gnorpm - RH 6.0+ GUI  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=glint" glint - RH 5.2 GUI Also see:  HYPERLINK "http://yolinux.com/HOWTO/RPM-HOWTO.html" RPM HowTo.  HYPERLINK "http://www.rpm.org/" RPM.org Home Page  HYPERLINK "http://coralys.com/products/rpmlevel.shtml" RpmLevel - Utility to manage RPM levels on your system.  HYPERLINK "http://www.kaybee.org/~kirk/html/linux.html" AutoRPM - Mirror RPMs from an FTP site, keep installed RPMs consistent with an FTP site or local directory  HYPERLINK "http://kitenet.net/programs/alien/" Alien - package converter between rpm, dpkg, stampede slp, and slackware tgz file formats.  HYPERLINK "http://asic-linux.com.mx/~izto/checkinstall/" CheckInstall - Create packages for RPM (Red Hat, Fedora, Suse), Debian or Slackware for install and uninstall.  Automated System Updates: up2date (Red Hat 7.1 and later) Select the red dot and exclamation mark icon on the toolbar to launch up2date and follow the GUI. One may also use the command line if managing a remote server.  INCLUDEPICTURE "http://yolinux.com/TUTORIALS/images/up2dateToolBarIcon.gif" \* MERGEFORMATINET  Execute the following commands (in order given) to perform an automatic system update: /usr/bin/rhn_register :You must first register your system with the Red Hat database. This command will perform a hardware inventory and reporting of your system so that Red Hat knows which software to load to match your needs. /usr/bin/up2date-config :This allows you to configure the "up2date" process. It allows you to define directories to use, actions to take (i.e. download updates, install or not install, keep RPM's after install or not), network access (i.e. proxy configuration), use of GPG for package verification, packages or files to skip, etc. Use of GPG requires the Red Hat public key: rpm -import /usr/share/rhn/RPM-GPG-KEY /usr/sbin/up2date :This command will perform an audit of RPM's on your system and discover what needs to be updated. It gives you a chance to unselect packages targeted for upgrade. It will download RPM packages needed, resolve dependencies and perform a system update if requested. [Potential Pitfall]: This works quite well but it is not perfect. Red Hat 7.1 Apache upgrade to 1.3.22 changed the configuration completely. (Beware. manual clean-up and re-configuration is required). When up2date finds the first messed up dependency it stops to tells you. You then have to unselect the package. It then starts again from the beginning. Installing a new package with up2date: up2date package-name The package name is given without the version number. If the package is not currently installed, it will be downloaded and installed, along with any dependencies that package requires. Command line options (partial list) for up2date: OptionDescription--noxDo not display the GUI interface.-u --updateCompletely update the system -h --helpDisplay command line arguments -v --verbosePrint more info about what up2date is doing--showallShow a list of all packages available for your release of Red Hat Linux, including those not currently installed. Also see man pages for: up2date-gnome rhn_register-gnome Notes: Update in console mode (no GUI): up2date --nox --update Configuration file for up2date: /etc/sysconfig/rhn/up2date System id and configuration info held in XML format for up2date: /etc/sysconfig/rhn/systemid The default download directory for up2date is /var/spool/up2date/. RPM packages and support files are downloaded to this directory. An automated alert to the need to update utilizes the rhnsd which can be started by issuing the command: /etc/rc.d/init.d/rhnsd start  YUM/YUMEX: RPM Updates YUM (Yellowdog Updater, Modified) is a client command line application for updating an RPM based system from an internet repository (YUM "yum-arch" server) accessible by URL (http://xxx, ftp://yyy or even file://zzz local or NFS). The YUM repository has a directory of the headers with RPM info and directory path information. YUM will resolve RPM package dependencies and manage the importation and installation of dependencies. YUM is also capable of upgrading across releases. One can upgrade Red Hat Linux 7 and 8 to 9. Red Hat 8 and 9 can be upgraded to Fedora Core. See  HYPERLINK "http://www.brandonhutchinson.com/Upgrading_Red_Hat_Linux_with_yum.html" Red Hat YUM upgrades. YUM config file: /etc/yum.conf (Fedora Core 3) [main] cachedir=/var/cache/yum debuglevel=2 logfile=/var/log/yum.log pkgpolicy=newest distroverpkg=redhat-release tolerant=1 exactarch=1 retries=20 obsoletes=1 gpgcheck=1 exclude=firefox mozplugger gftp # PUT YOUR REPOS HERE OR IN separate files named file.repo # in /etc/yum.repos.dYou may list packages you wish NOT to update (Space delimited list. '*' wildcards allowed.): exclude=package-name (i.e. On x86_64 I do not update firefox or mozplugger with the 64 bit version, I use the 32 bit version so that 32 bit plugins will work.) Set "gpgcheck=0" to avoid the signature check. For the option "gpgcheck=1" to work, use the "rpm --import GPG-KEY commands as detailed  HYPERLINK "http://yolinux.com/TUTORIALS/LinuxTutorialSysAdmin.html" \l "RPM" above in section one of the RPM tutorial. [root@server2 ~]# rpm --import /usr/share/rhn/RPM-GPG-KEY [root@server2 ~]# rpm --import /usr/share/rhn/RPM-GPG-KEY-fedora File: /etc/yum.repos.d/fedora.repo (Fedora Core 3) [base] name=Fedora Core $releasever - $basearch - Base #baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os/ mirrorlist=http://fedora.redhat.com/download/mirrors/fedora-core-$releasever enabled=1 gpgcheck=1Mirror site/sites which contain Fedora base configuration RPM's. Other protocols such as ftp can be used as well as http. File: /etc/yum.repos.d/fedora-updates.repo (Fedora Core 3) [updates-released] name=Fedora Core $releasever - $basearch - Released Updates #baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/updates/$releasever/$basearch/ mirrorlist=http://fedora.redhat.com/download/mirrors/updates-released-fc$releasever enabled=1 gpgcheck=1Mirror site which contain Fedora updated RPM's. List of mirrors:  HYPERLINK "http://fedora.redhat.com/download/mirrors.html" http://fedora.redhat.com/download/mirrors.html Terms: releasever: Release Version - current version of Fedora. basearch: Base Architecture - system hardware architecture i.e. i386 Add other repositories: (not included in default install) Fedora Extras: Create file: /etc/yum.repos.d/extras.repo [extras] name=Fedora Extras $releasever - $basearch baseurl=http://mirrors.kernel.org/fedora/extras/$releasever/$basearch/ http://www.mirrorservice.org/sites/download.fedora.redhat.com/pub/fedora/linux/extras/$releasever/$basearch/ http://fr2.rpmfind.net/linux/fedora/extras/$releasever/$basearch/ gpgcheck=1Adding FreshRPM GPG signature key: [root@server2 ~]# rpm --import http://download.fedora.redhat.com/pub/fedora/linux/extras/RPM-GPG-KEY-Fedora-Extras Add FreshRPM repository site to your list for downloads of non-standard Fedora software. (Software not released by Red Hat like DVD players, audio encoders/rippers, etc) Create file: /etc/yum.repos.d/freshrpms.repo [freshrpms] name=Fedora Linux $releasever - $basearch - freshrpms baseurl=http://ayo.freshrpms.net/fedora/linux/$releasever/$basearch/freshrpms enabled=0 gpgcheck=1To directly enable a particular repository which is currently disabled (enabled=0): yum -y --enablerepo=freshrpms install kino Adding FreshRPM GPG signature key: [root@server2 ~]# rpm --import http://freshrpms.net/packages/builds/yum/RPM-GPG-KEY.freshrpms More examples of  HYPERLINK "http://svn.rpmforge.net/svn/trunk/rpms/yum/" FreshRPMs yum.conf Add: dag.wieers.com Create file: /etc/yum.repos.d/dag.repo [dag] name=Dag APT Repository baseurl=http://dag.freshrpms.net/fedora/$releasever/en/$basearch/dag/ http://dag.atrpms.net/fedora/$releasever/en/$basearch/dag/ http://ftp.heanet.ie/pub/freshrpms/pub/dag/fedora/$releasever/en/$basearch/dag/ enabled=0 gpgcheck=1Directly enable repository: yum -y --enablerepo=dag install fortune-oneliners Adding dag GPG signature key: [root@server2 ~]# rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt Add: Macromedia.mplug.org Create file: /etc/yum.repos.d/flash.repo [flash] name=Macromedia Flash plugin baseurl=http://macromedia.mplug.org/apt/fedora/$releasever http://sluglug.ucsc.edu/macromedia/apt/fedora/$releasever http://ruslug.rutgers.edu/macromedia/apt/fedora/$releasever http://macromedia.rediris.es/apt/fedora/$releasever enabled=0 #gpgcheck=1To directly enable a particular repository which is currently disabled (enabled=0): yum -y --enablerepo=flash install flash-plugin  HYPERLINK "http://www.fedorafaq.org/samples/yum.conf" Fedora examples (more repositories:  HYPERLINK "http://www.livnia.org/" livna,  HYPERLINK "http://www.jpackage.org/" Jpackage, ...)  Using YUM and YUM examples: Update: Update all packages on your system: yum update Update a package: yum update package-name Update all with same prefix: yum update package-name-prefix\* This command will update your system. It will interactively ask permission. i.e. "Is this ok [y/N]:" To avoid the prompt/questions use the command: yum -y update Sample session: # yum -y update Setting up Update Process Setting up Repos base 100% |=========================| 1.1 kB 00:00 updates-released 100% |=========================| 951 B 00:00 Reading repository metadata in from local files base : ################################################## 2852/2852 primary.xml.gz 100% |=========================| 367 kB 00:02 MD Read : ################################################## 927/927 updates-re: ################################################## 927/927 Excluding Packages in global exclude list Finished Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Downloading header for mod_dav_svn to pack into transaction set. mod_dav_svn-1.1.4-1.1.x86 100% |=========================| 8.9 kB 00:00 ---> Package mod_dav_svn.x86_64 0:1.1.4-1.1 set to be updated ---> Downloading header for initscripts to pack into transaction set. initscripts-7.93.7-1.x86_ 100% |=========================| 87 kB 00:00 ---> Package initscripts.x86_64 0:7.93.7-1 set to be updated ---> Downloading header for gtk2 to pack into transaction set. ... ... --> Running transaction check Dependencies Resolved Transaction Listing: Install: aqhbci.x86_64 0:1.0.2beta-0.fc3 - updates-released Install: aqhbci-devel.x86_64 0:1.0.2beta-0.fc3 - updates-released Install: kernel.x86_64 0:2.6.11-1.14_FC3 - updates-released ... ... Performing the following to resolve dependencies: Install: aqbanking-devel.x86_64 0:1.0.4beta-0.fc3 - updates-released Install: gwenhywfar-devel.x86_64 0:1.7.2-0.fc3 - updates-released Total download size: 431 M Downloading Packages: (1/168): mod_dav_svn-1.1. 100% |=========================| 54 kB 00:00 (2/168): initscripts-7.93 100% |=========================| 1.1 MB 00:03 ... ... Running Transaction Test Finished Transaction Test Transaction Test Succeeded Running Transaction Updating: libgcc 100 % done 1/333 Updating: libgcc 100 % done 2/333 ... ... Completing update for mod_dav_svn - 169/333 Completing update for initscripts - 170/333 Completing update for gtk2 - 171/333 ... ... Installed: aqhbci.x86_64 0:1.0.2beta-0.fc3 aqhbci-devel.x86_64 0:1.0.2beta-0.fc3 kernel.x86_64 0:2.6.11-1.14_FC3 Dependency Installed: aqbanking-devel.x86_64 0:1.0.4beta-0.fc3 gwenhywfar-devel.x86_64 0:1.7.2-0.fc3 Updated: ImageMagick.i386 0:6.2.0.7-2.fc3 ImageMagick.x86_64 0:6.2.0.7-2.fc3 ImageMagick-c++.i386 ... ... ... Obsoleted: openhbci.x86_64 0:0.9.17-1 openhbci.i386 0:0.9.17-1 openhbci-devel.x86_64 0:0.9.17-1 Complete! # To install a single package: yum -y install package-name This will also resolve package dependencies. Remove a package: yum remove package-name Info: List available packages, version and state (base, installed, updates-released): yum list List the packages installed which are not available in repository listed in config file: yum list extras List packages which are obsoleted by packages in yum repository: yum list obsoletes Clean local cache of headers and RPM's: yum clean all (See: /var/cache/yum/) Notes:  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=yum" yum man page  HYPERLINK "http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=yum.conf" yum.conf man page You can set up your own YUM server for your own cluster or intranet. Set up a web server with the same paths as used in the configuration files and point your configuration files to your server. Fedora configures YUM as a daily cron job: /etc/cron.daily/yum.cron #!/bin/sh if [ -f /var/lock/subsys/yum ]; then /usr/bin/yum -R 10 -e 0 -d 0 -y update yum /usr/bin/yum -R 120 -e 0 -d 0 -y update fi #&l)\aQ`d!#@Bgi* 5  m n w ⫨֞ݻ֞֞ݻݻݻ6B*]ph0J6B*]ph0JjB*OJQJU^Jph B*ph5B*\ph5B*OJQJ\^Jph 0JB*phCJaJB*OJQJ^Jph#5B*CJOJQJ\^JaJph;l$)\#Biu $$Ifa$ & Fdd[$\$^^^^>$$If]*  3634a$If1S {\uo$If$If$$If0{* 0634ab  m {Tuu$If$$If0{* 0634abm n  e f } {(uo{uo{uo{uo$If$If$$If0{* 0634ab  e f m | } ) * 2 A B | }   S T g v ;<Rwx;<6B*OJQJ]^Jph<B*OJQJ^Jph5B*OJQJ\^JphCJaJB*OJQJ^Jph B*ph6B*]phC ) * B | } {uo{Luo{uo{uo$If$If$$If0{* 0634ab S T ;<R{tuo{uo{uo{uo$If$If$$If0{* 0634ab {nee $$Ifa$ [$\$^$$If0{* 0634ab{Huu$If$$If0S {* 0634ab(wx;<I{uu{xuu{uu{uu{$If$$If0S {* 0634ab %ZsOQ~7<Ru & Fdd[$\$[$\$^^ & F ^ & Fdd[$\$MN78<=ij $LX"$dkFMQd~<msu6B*]ph B*phB*OJQJ^Jph0J6B*]ph 0JB*ph0JB*OJQJ^JphjB*OJQJU^JphI~59fh{^H S & Fdd[$\$ & Fdd[$\$^`^ & Fdd[$\$[$\$^^^ *$3Y}9dhy{|34<=^t2 3 9 : H Q S T !!筪筪筪筪筪筪0JjB*OJQJU^Jph5B*OJQJ\^JphB*OJQJ^Jph0J6B*]ph 0JB*phB*OJQJ^Jph B*ph6B*]phCS B!!y"%#(#*#d#e#f#$m$$IfK$[$\$>$$If]*  3634a$If hdd[$\$^h & Fdd[$\$ !!!B!C!|!}!!!!!""!"""y"z"""""(#)#*#c#d#e#f#$ $i$j$k$l$m$n$o$p$$$%%$'J'L']'h({(6)=)))))˾5B*OJQJ\^JphB*OJQJ^Jph 0JB*phjB*OJQJU^Jph<B*OJQJ^JphCJaJ#5B*CJOJQJ\^JaJphB*OJQJ^JphjB*OJQJU^Jph0J5m$n$o$p$$%L'h(NL@@@ & Fdd[$\$H$$If0l*634a$Ifa$K$L$If0634abh()***+++0+pjj$If$$If0l* 0634ab $$Ifa$)****++0+1+d+e+++++O,P,,,, -L-g-----W.s.w.x.y...../$/H/K/S/V/f/i/00(1)1=1>1R1_1q12ꐍ B*ph0JjB*OJQJU^Jph6B*OJQJ]^Jph#5B*CJOJQJ\^JaJphjZ B*OJQJU^JphCJaJ5B*OJQJ\^Jph 0JB*phB*OJQJ^Jph0J6B*]ph50+1+=+d+$Ifu$$If0l*0634abd+e+o+++++++O,$Ifu$$If0l*0634ab O,P,Q,k,z,,,, -i--u.w.||ppppp & Fdd[$\$ & Fdd[$\$u$$If0l*0634ab w.y...A0A1q1x11111111222<2=2x2$If>$$If]*  3634a$Ifx22244 55F5M5}55%6/6:6}}}{^^o$$If<wY-  0634<` ab$If 22223333333444e4f44444445545F5:6;6666 88P8Q88888G9^9999::;-;;I<h<j<==d====>%>&>_>`>r>s>>>ĿĿ0J5B*\ph5B*OJQJ\^Jph B*ph5B*\ph0JjB*OJQJU^Jph0J6B*]ph 0JB*phB*OJQJ^JphCJaJB:6;66667D7778 8$If^o$$If<w[-  0634<` ab 88?8889G999998::{{oiiii$If & F dd[$\$ & F dd[$\$^o$$If<w/  0634<` ab ::::;;j<v<<<==|vj & F dd[$\$^ dd[$\$^o$$If<w5  0634<` ab$If ====>u>>>>?S?|vma[[[[$If & F dd[$\$[$\$^^^ dd[$\$^o$$If<wY-  0634<` ab >>???@(@9@y@@@@AA;BiBkBlBBBBBBBBBBBBBCC'C(C1C2C3CNC}CCCCCCCCCEDVDDDDNNNNOCONOZOOOP0J6B*]ph5B*OJQJ\^Jphj B*OJQJU^Jph0JjB*OJQJU^Jph0J5B*\ph 0JB*phCJaJ B*phB*OJQJ^Jph>S?????(@{@@@@ A\AA|vj & F dd[$\$^ dd[$\$^o$$If<wY-  0634<` ab$If AAAAAkB0C3CPCYC|pnl` & F dd[$\$ & F dd[$\$ dd[$\$^o$$If<wY-  0634<` ab$If YCCCYDDDDD-ExEEEKKKKKKKL+L?LaLLLL$IfLLL MMMMMONSNWNNNNNNo$$If<G)0  0634<` ab$IfN1O\OcOO'P|PPP,QQTRRRRRR,S/S$If & F dd[$\$ & F dd[$\$ & F dd[$\$P%PhPzPPPPPPPPPQQ)Q*Q,Q-QzQ{QQQRRR/S0S1SCJaJ B*ph0JjB*OJQJU^Jph5B*OJQJ\^JphB*OJQJ^Jph 0JB*ph/S0S1So$$If<wY-  0634<` ab 1h/ =!"#$%DdP  3 3"K(( Dd  S Avhttp://yolinux.com/TUTORIALS/images/up2dateToolBarIcon.gifb [IqKW{#e qn [IqKW{#ePNG  IHDR<"pkPLTEd|FDDBDԂ&$DJLbdĴ$"$Ln64.,Ԓ,BD좤D&$ ^\TrČ "$244Zd rt424.,ܺ 욜Ԍ :<䂄RTdbd Z\*,DbdԚtrt64䊌ljl*,BD,*,<JLܪ 64&$TRT t|z|LJL*,jlD:< rtd~̔"$24<:<.,캼 lbdL슌JL\]\ .,\>< lfd쎌4IbKGDH cmPPJCmp0712Hs IDAThCY{lSU?e>T NL!jU|MY6\\mJkvPh|+( ĺB%fLp'%E ˆ1}R7{ι} <ڎtoG (xF?Dž(<»\hu9rku͐䖦ƪ_[d#9M[oڝ&.RZUǰ"FV0`lz>}ەɒo$:#F:w ؚ3^sגPFڟG(Ճ~fHx}/]V=geo]]9oz?j012k9(Ld | 1-TÃCMt@1xdA<`|,n: ~1/6K-[e8tHhL[m0[Ikr9'.\ע_ďQ˘}:Yh~ Ŗ@iALffc[SZP!wՕ<ݽ[;Jy/;:Fu1q fJ;kn"v̈My&*ϰ ,.';mlg,cnn`H[ϐNx#A4[Mص*B*OJQJS*Y(^Jo(ph1O!z!z!z!z!z!z!z!z! z! z! z! z! z!zC Pg&Q(R(v*291?+HJJ1O&  $     l$)\#Biumnef})*B|} S T ; < R   ( w x ; < I %ZsOQ~7<Ru~59fh{^HSBy%(*def m n o p !L#h$%&&&'''0'1'='d'e'o'''''''O(P(Q(k(z(((( )i))u*w*y***A,A-q-x--------...<.=.x...00 11F1M1}11%2/2:2;22223D3334 44?4445G5555586666677j8v88899999:u::::;S;;;;;(<{<<<< =\======k>0?3?P?Y???Y@@@@@-AxAAAGGGGGGGH+H?HaHHHHHH IIIIIOJSJWJJJJJJ1K\KcKK'L|LLL,MMTNNNNNN,O/O0O3O000000000 0 0 00000000000000000000000000000000000000000000000000000000000000000000 0 00 0 0 0 0 0 0 0 0  0 00 0 0 0 0  0  0 0000000 00 0 0 0 0000 0 0 0 0 00 0 0 0 0 0 000000000000 0 0 000000000000000000000000 0 00 0 0 0 0 0000000000000000000000000000000000000000000000000 0 00 0000000000 00000000000 00000000000 00000000000 000 0 0 0 0 00000000000000000000000000000000000000000000000000000000000000000000 0 0 0 0 0 0 00 0 0 0 000000000 !)2>P1S28?ACFLQX m S m$h(0+d+O,w.x2:6 8:=S?AYC@BDEGHIJKMNOPRSTUVWY1S4 M 7<i{3<29SB|!y i k ,(-=-0e00P444%:_:r:k>>>>>>>?'?LM)M,MzMM1OXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTCTXTXTXTXTXTXTXTXTXT Zh!0@svw6<m|/12A0 4 Y [ g ~ E J  & > H &+@DMP "$ KM+.ms ds$3bqtxz})14<^t}DHSV\efi  k"p"1#B### ' '_'a'''''z((((Q)g)$*)*\*m***E-K-W-_-x------------------..$.+.,.6.7.;.n.w..."/)/-/7/y//////0000141_1i1m1u1/272u2z2223$3(3034 474<4445 5555555666777N8h8k8t88888889 9m9w9x999999`:i:j:r:::::::;;;;;;;<<<<<<<<<==D>N>c>i>>>?'?@@!A#AAA0B2BtCCCCCDNDDD}GGIHOHkHqHHHHHWJ`J LL?LHLLLLL{MMuNyNNNNNNNNNOO,O.O3O#&nqfi*-}T W < ?  & 6 C z ~ > H _d~<@jl9;4<^d38 !!V#c#% %o%t%& & ' '2'3'f'g'''''k(r(z(}(+ +r-v-x---------------......#.z.|...0000G1K1M1Q1~1111%2,2/272223 3E3L333334 44.4445 5555555667)7k8t8v8z888899 999::::::;;;;)<5<<<<<<<====(?.????@@@@@@@-A4AAAAA?BGBBBCCmDxDwG|GEJJJKKM M{MMNNNN,O.O3O:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::BC NPeg$&P(R(u*v*22990?1?RNRN0O3O Image v5.05P'E:\Secure\CIS228\Handouts\Linux RPM.doc )* @)HGNn< j7J%|13&t$]:n0|a>ڮ;9{qVhr O_uN^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`.^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`.^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo( ;9{q]:n0]:n0hsj7J%O_uVhr) n< a>13&HGNhs!. 6j>ƒԮFجLi>\QK^#,؁.{P.2x lZ~Cd.OL9^6B+$93ԦT"T6J/tkPҒ\"c )F4G$Jt`&EHxs|03L! 8T`/-t 4Bp`l8Tx~lw".DdԣX>F%zAzt<~#FL;AԤArBY6& :Ib)޿LJ0z z$Tt2DĐB "mJՂ$4`Mk />6`*66l.Y;rGpS︗i(x*`.u|>46iumnef})*B|} S T ; < R   ( w x ; < I *def m n o p &&'''0'1'='d'e'o'''''''O(P(y***q-..F1:2;22 44566j899:;;<==@JJN/O0O3O @xC1OP@UnknownGz Times New Roman5Symbol3& z Arial;& z Helvetica?5 z Courier New;Wingdings"qhqQ{Q t LA!$>00Ph$g2QRPM - Redhat Package Manager: Image v5.05P Image v5.05POh+'0 (4 P \ ht|RPM - Redhat Package Manager:MiPM  Image v5.05PPacmagmag Normal.dotP Image v5.05PPac2agMicrosoft Word 9.0e@vA@t M@ Mt LA՜.+,D՜.+,T hp   RR Donnelleyn!0P RPM - Redhat Package Manager: Title 8@ _PID_HLINKSATiH@http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=yum.confdE;http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=yumO_Bhttp://www.jpackage.org/>+?http://www.livnia.org/F\<*http://www.fedorafaq.org/samples/yum.confx89,http://svn.rpmforge.net/svn/trunk/rpms/yum/wl6/http://fedora.redhat.com/download/mirrors.htmlM38http://yolinux.com/TUTORIALS/LinuxTutorialSysAdmin.htmlRPM8\0Ghttp://www.brandonhutchinson.com/Upgrading_Red_Hat_Linux_with_yum.htmlZ*-http://asic-linux.com.mx/~izto/checkinstall/e='#http://kitenet.net/programs/alien/.~$,http://www.kaybee.org/~kirk/html/linux.html"w!+http://coralys.com/products/rpmlevel.shtml|<http://www.rpm.org/<<(http://yolinux.com/HOWTO/RPM-HOWTO.htmlb =http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=glint|>http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=gnorpmv@http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=rpmbuildo;http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=rpmf ;http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=ftpa <http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=curlb<http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=wget^9http://download.fedora.redhat.com/pub/fedora/linux/core/Bhttp://www.keyserver.net/=cj$;http://yolinux.com/TUTORIALS/images/up2dateToolBarIcon.gif  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\]^_`abdefghijklmnopqrstuvwxyz{|}~Root Entry FP MData [1Tablec]WordDocument"SummaryInformation(DocumentSummaryInformation8dCompObjjObjectPoolP MP M  FMicrosoft Word Document MSWordDocWord.Document.89q