<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/kcwest/">
    <title>PLATFORM FREAKS</title>
    <link>http://w.atwiki.jp/kcwest/</link>
    <atom:link href="https://w.atwiki.jp/kcwest/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>PLATFORM FREAKS</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-06-03T23:34:55+09:00</dc:date>
    <utime>1338734095</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/56.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/55.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/42.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/53.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/41.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/50.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/25.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/38.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/kcwest/pages/52.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/56.html">
    <title>RHCS4</title>
    <link>https://w.atwiki.jp/kcwest/pages/56.html</link>
    <description>
      ・Oracleソフトウェアインストール

 # mkdir -p /work/oracle/install
1. OTNよりダウンロードしたOracleインストールファイルを/work/oracle/install/にアップロード

 # cd /work/oracle/install
 # ll
 # unzip 10201_database_linux32.zip &gt;/dev/null
 # ll 
#REF(orainst-pre1.png,,width=600)

 # cp -p /etc/sysctl.conf /etc/sysctl.conf.`date &#039;+%Y%m%d&#039;`
 # ls -ltr /etc/sysctl.conf*
 # vi /etc/sysctl.conf
 ------------------------------------------
 # For Oracle
 kernel.sem = 250 32000 100 128
 net.ipv4.ip_local_port_range = 1024 65000
 net.core.rmem_default=262144
 net.core.rmem_max=262144
 net.core.wmem_default=262144
 net.core.wmem_max=262144
 ------------------------------------------
 # diff /etc/sysctl.conf /etc/sysctl.conf.`date &#039;+%Y%m%d&#039;`
 # sysctl -p 
#REF(orainst-pre2.png,,width=600)
 # cp -p /etc/security/limits.conf /etc/security/limits.conf.`date &#039;+%Y%m%d&#039;`
 # ls -ltr /etc/security/limits.conf*
 # vi /etc/security/limits.conf
 ------------------------------------------
 # For Oracle
 oracle               soft    nproc   2047
 oracle               hard    nproc   16384
 oracle               soft    nofile  1024
 oracle               hard    nofile  65536
 ------------------------------------------
 # diff /etc/security/limits.conf /etc/security/limits.conf.`date &#039;+%Y%m%d&#039;
 #
 # cp -p /etc/pam.d/login /etc/pam.d/login.`date &#039;+%Y%m%d&#039;`
 # ls -ltr /etc/pam.d/login*
 # vi /etc/pam.d/login
 ------------------------------------------
 # For Oracle
 session    required     pam_limits.so
 ------------------------------------------
 # diff /etc/pam.d/login /etc/pam.d/login.`date &#039;+%Y%m%d&#039;`
 #
 # groupadd -g 501 oinstall
 # groupadd -g 502 dba
 # useradd -u 501 -g oinstall -G dba oracle
 # passwd oracle
 #
 # mkdir -p /oracle/product/10.2.0
 # chown -R oracle.oinstall /oracle

 # cp -p /etc/redhat-release /etc/redhat-release.`date &#039;+%Y%m%d&#039;`
 # echo &quot;redhat-4&quot; &gt; /etc/redhat-release
 
 # su - oracle
 # id 
 uid=501(oracle) gid=501(oinstall) 所属グループ=501(oinstall),502(dba)
 # cp -p .bash_profile .bash_profile.`date &#039;+%Y%m%d&#039;`
 # vi .bash_profile
 -----------------------------------------------
 # For Oracle
 export ORACLE_SID=ora10g
 export ORACLE_BASE=/oracle
 export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
 export PATH=$ORACLE_HOME/bin:$PATH
 ulimit -u 16384 -n 65536
 -----------------------------------------------
 $ diff .bash_profile .bash_profile.`date &#039;+%Y%m%d&#039;`
 $ . .bash_profile
 $ ulimit -n -u
 open files                      (-n) 65536
 max user processes              (-u) 16384

・rootユーザでコンソールログインし、端末を起動する。
 # whoami
 # xhost +
 # su - oracle
 # cd /work/oracle/install/database
 # ./runInstaller
#REF(runinst1.png,,width=600)

#REF(runinst2.png,,width=600)

#REF(runinst3.png,,width=600)

#REF(runinst4.png,,width=600)

#REF(runinst5.png,,width=600)

#REF(runinst6.png,,width=600)

#REF(runinst7.png,,width=600)

#REF(runinst8.png,,width=600)

#REF(runinst9.png,,width=600)

#REF(runinst10.png,,width=600)

#REF(runinst11.png,,width=600)

#REF(runinst12.png,,width=600)

#REF(runinst13.png,,width=600)

・2号機も同様にOracleソフトウェアをインストールする。    </description>
    <dc:date>2012-06-03T23:34:55+09:00</dc:date>
    <utime>1338734095</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/55.html">
    <title>rhcs3-4</title>
    <link>https://w.atwiki.jp/kcwest/pages/55.html</link>
    <description>
      +番号リスト
・追加パッケージのインストール

 # yum update
 y

#ref(yum1.png,,width=600)
#ref(yum2.png,,width=600)
#ref(yum3.png,,width=600)

 # yum install compat-libstdc++-33 compat-gcc-34 compat-gcc-34-c++ \
            gcc libXp openmotif compat-db sysstat strace ltrace 
 y
#ref(yum4.png,,width=600)
 # rpm -qa |sort
 Deployment_Guide-ja-JP-5.8-1.el5.centos
 GConf2-2.14.0-9.el5
 GConf2-devel-2.14.0-9.el5
 MAKEDEV-3.23-1.2
 NetworkManager-0.7.0-13.el5
 NetworkManager-glib-0.7.0-13.el5
 NetworkManager-gnome-0.7.0-13.el5
 ORBit2-2.14.3-5.el5
 ORBit2-devel-2.14.3-5.el5
 PyXML-0.8.4-6.el5
 SDL-1.2.10-9.el5
 SysVinit-2.86-17.el5
 acl-2.2.39-8.el5
 acpid-1.0.4-12.el5
 alacarte-0.10.0-1.fc6
 alsa-lib-1.0.17-1.el5
 alsa-lib-devel-1.0.17-1.el5
 alsa-utils-1.0.17-6.el5
 amtu-1.0.6-2.el5
 anacron-2.3-45.el5.centos
 anthy-7900-4.el5
 apmd-3.2.2-5
 apr-1.2.7-11.el5_6.5
 apr-util-1.2.7-11.el5_5.2
 aspell-0.60.3-12
 aspell-en-6.0-2.1
 at-3.1.8-84.el5
 at-spi-1.7.11-3.el5
 atk-1.12.2-1.fc6
 atk-devel-1.12.2-1.fc6
 attr-2.4.32-1.1
 audiofile-0.2.6-5
 audiofile-devel-0.2.6-5
 audit-1.8-2.el5
 audit-libs-1.8-2.el5
 audit-libs-python-1.8-2.el5
 authconfig-5.3.21-7.el5
 authconfig-gtk-5.3.21-7.el5
 autofs-5.0.1-0.rc2.164.el5_8
 avahi-0.6.16-10.el5_6
 avahi-compat-libdns_sd-0.6.16-10.el5_6
 avahi-glib-0.6.16-10.el5_6
 basesystem-8.0-5.1.1.el5.centos
 bash-3.2-32.el5
 bc-1.06-21
 bind-libs-9.3.6-20.P1.el5
 bind-utils-9.3.6-20.P1.el5
 binutils-2.17.50.0.6-20.el5_8.3
 bitmap-fonts-0.3-5.1.1
 bitstream-vera-fonts-1.10-7
 bluez-gnome-0.5-5.fc6
 bluez-libs-3.7-1.1
 bluez-utils-3.7-2.2.el5.centos
 boost-1.33.1-15.el5
 boost-devel-1.33.1-15.el5
 brlapi-0.4.1-4.el5
 bzip2-1.0.3-6.el5_5
 bzip2-devel-1.0.3-6.el5_5
 bzip2-libs-1.0.3-6.el5_5
 cairo-1.2.4-5.el5
 cairo-devel-1.2.4-5.el5
 ccid-1.3.8-1.el5
 cdparanoia-libs-alpha9.8-28
 cdrdao-1.2.1-2
 cdrecord-2.01-10.7.el5
 centos-release-5-8.el5.centos
 centos-release-notes-5.8-0
 checkpolicy-1.33.1-6.el5
 chkconfig-1.3.30.2-2.el5
 chkfontpath-1.10.1-1.1
 cluster-cim-0.12.1-7.el5.centos
 cluster-snmp-0.12.1-7.el5.centos
 cman-2.0.115-96.el5_8.3
 compat-db-4.2.52-5.1
 compat-gcc-34-3.4.6-4.1
 compat-gcc-34-c++-3.4.6-4.1
 compat-libstdc++-33-3.2.3-61
 comps-extras-11.4-1.el5.centos
 conman-0.1.9.2-8.el5
 control-center-2.16.0-16.el5
 coolkey-1.1.0-15.el5
 coolkey-devel-1.1.0-15.el5
 coreutils-5.97-34.el5_8.1
 cpio-2.6-23.el5_4.1
 cpp-4.1.2-52.el5_8.1
 cpuspeed-1.2.1-10.el5
 cracklib-2.8.9-3.3
 cracklib-dicts-2.8.9-3.3
 crash-5.1.8-1.el5.centos
 crontabs-1.10-8
 cryptsetup-luks-1.0.3-8.el5
 cups-1.3.7-30.el5
 cups-libs-1.3.7-30.el5
 curl-7.15.5-15.el5
 curl-devel-7.15.5-15.el5
 cyrus-sasl-2.1.22-5.el5_4.3
 cyrus-sasl-devel-2.1.22-5.el5_4.3
 cyrus-sasl-lib-2.1.22-5.el5_4.3
 cyrus-sasl-md5-2.1.22-5.el5_4.3
 cyrus-sasl-plain-2.1.22-5.el5_4.3
 db4-4.3.29-10.el5_5.2
 db4-devel-4.3.29-10.el5_5.2
 dbus-1.1.2-16.el5_7
 dbus-devel-1.1.2-16.el5_7
 dbus-glib-0.73-10.el5_5
 dbus-glib-devel-0.73-10.el5_5
 dbus-libs-1.1.2-16.el5_7
 dbus-python-0.70-9.el5_4
 dbus-x11-1.1.2-16.el5_7
 dejavu-lgc-fonts-2.10-1
 desktop-backgrounds-basic-2.0-41.el5.centos
 desktop-file-utils-0.10-7
 desktop-printing-0.19-20.2.el5
 device-mapper-1.02.67-2.el5
 device-mapper-event-1.02.67-2.el5
 device-mapper-multipath-0.4.7-48.el5_8.1
 dhclient-3.0.5-31.el5
 dhcpv6-client-1.0.10-20.el5
 diffutils-2.8.1-15.2.3.el5
 dmidecode-2.11-1.el5
 dmraid-1.0.0.rc13-65.el5
 dmraid-events-1.0.0.rc13-65.el5
 dnsmasq-2.45-1.1.el5_3
 docbook-dtds-1.0-30.1
 dos2unix-3.1-27.2.el5
 dosfstools-2.11-9.el5
 dump-0.4b41-6.el5
 dvd+rw-tools-7.0-1.el5
 e2fsprogs-1.39-33.el5
 e2fsprogs-devel-1.39-33.el5
 e2fsprogs-libs-1.39-33.el5
 ecryptfs-utils-75-8.el5
 ed-0.2-39.el5_2
 eel2-2.16.1-1.el5
 eject-2.1.5-4.2.el5
 ekiga-2.0.2-7.0.2
 elfutils-libelf-0.137-3.el5
 elfutils-libelf-devel-0.137-3.el5
 elfutils-libelf-devel-static-0.137-3.el5
 eog-2.16.0.1-6.el5
 esc-1.1.0-13.el5_8.2
 esound-0.2.36-4
 esound-devel-0.2.36-4
 ethtool-6-4.el5
 evince-0.6.0-17.el5
 evolution-2.12.3-19.el5
 evolution-connector-2.12.3-11.el5
 evolution-data-server-1.12.3-18.el5
 evolution-webcal-2.7.1-6
 expat-1.95.8-8.3.el5_5.3
 expat-devel-1.95.8-8.3.el5_5.3
 fbset-2.1-22
 festival-1.95-5.2.1
 file-4.17-21
 file-roller-2.16.0-2.fc6
 filesystem-2.4.0-3.el5.centos
 findutils-4.2.27-6.el5
 finger-0.17-33
 fipscheck-1.2.0-1.el5
 fipscheck-lib-1.2.0-1.el5
 firefox-10.0.4-1.el5.centos
 firstboot-1.4.27.9-1.el5.centos
 firstboot-tui-1.4.27.9-1.el5.centos
 flac-1.1.2-28.el5_0.1
 fontconfig-2.4.1-7.el5
 fontconfig-devel-2.4.1-7.el5
 fonts-japanese-0.20061016-4.el5
 foomatic-3.0.2-38.3.el5_7.1
 freetype-2.2.1-31.el5_8.1
 freetype-devel-2.2.1-31.el5_8.1
 ftp-0.17-37.el5
 gail-1.9.2-3.el5_4
 gamin-0.1.7-10.el5
 gamin-python-0.1.7-10.el5
 gawk-3.1.5-15.el5
 gcalctool-5.8.25-1.el5
 gcc-4.1.2-52.el5_8.1
 gdbm-1.8.0-26.2.1.el5_6.1
 gdbm-devel-1.8.0-26.2.1.el5_6.1
 gdm-2.16.0-59.el5.centos
 gedit-2.16.0-9.el5
 gettext-0.17-1.el5
 ghostscript-8.70-14.el5
 ghostscript-fonts-5.50-13.1.1
 gimp-print-4.2.7-22.2.el5
 gimp-print-utils-4.2.7-22.2.el5
 glib2-2.12.3-4.el5_3.1
 glib2-devel-2.12.3-4.el5_3.1
 glibc-2.5-81.el5_8.2
 glibc-common-2.5-81.el5_8.2
 glibc-devel-2.5-81.el5_8.2
 glibc-headers-2.5-81.el5_8.2
 glx-utils-6.5.1-7.10.el5
 gmp-4.1.4-10.el5
 gmp-devel-4.1.4-10.el5
 gnome-applets-2.16.0.1-19.el5
 gnome-audio-2.0.0-3.1.1
 gnome-backgrounds-2.15.92-1.fc6
 gnome-desktop-2.16.0-1.el5.centos.1
 gnome-doc-utils-0.8.0-2.fc6
 gnome-icon-theme-2.16.0.1-4.el5
 gnome-keyring-0.6.0-1.fc6
 gnome-keyring-devel-0.6.0-1.fc6
 gnome-mag-0.13.1-1.fc6
 gnome-media-2.16.1-3.el5
 gnome-menus-2.16.0-2.fc6
 gnome-mime-data-2.4.2-3.1
 gnome-mount-0.5-3.el5
 gnome-netstatus-2.12.0-5.el5
 gnome-panel-2.16.1-7.el5
 gnome-pilot-2.0.13-16
 gnome-power-manager-2.16.0-10.el5
 gnome-python2-2.16.0-1.fc6
 gnome-python2-applet-2.16.0-3.el5
 gnome-python2-bonobo-2.16.0-1.fc6
 gnome-python2-canvas-2.16.0-1.fc6
 gnome-python2-desktop-2.16.0-3.el5
 gnome-python2-extras-2.14.2-7.el5
 gnome-python2-gconf-2.16.0-1.fc6
 gnome-python2-gnomeprint-2.16.0-3.el5
 gnome-python2-gnomevfs-2.16.0-1.fc6
 gnome-python2-gtksourceview-2.16.0-3.el5
 gnome-python2-libegg-2.14.2-7.el5
 gnome-screensaver-2.16.1-8.el5_7.5
 gnome-session-2.16.0-8.el5.centos
 gnome-speech-0.4.5-1.fc6
 gnome-spell-1.0.7-3.1
 gnome-system-monitor-2.16.0-4.el5
 gnome-terminal-2.16.0-5.3.el5_6.1
 gnome-themes-2.16.0-1.fc6
 gnome-user-docs-2.16.0-2.fc6
 gnome-user-share-0.10-6.el5
 gnome-utils-2.16.0-5.el5
 gnome-vfs2-2.16.2-8.el5
 gnome-vfs2-devel-2.16.2-8.el5
 gnome-vfs2-smb-2.16.2-8.el5
 gnome-volume-manager-2.15.0-5.el5
 gnu-efi-3.0c-1.1
 gnupg-1.4.5-14.el5_5.1
 gnutls-1.4.1-7.el5_8.2
 gok-1.2.0-2.el5
 gpg-pubkey-e8562897-459f07a4
 gphoto2-2.2.0-3.el5
 gpm-1.20.1-74.1
 gpm-devel-1.20.1-74.1
 grep-2.5.1-55.el5
 groff-1.18.1.1-13.el5
 grub-0.97-13.5
 gstreamer-0.10.20-3.el5
 gstreamer-plugins-base-0.10.20-3.0.1.el5_3
 gstreamer-plugins-good-0.10.9-1.el5_3.2
 gstreamer-tools-0.10.20-3.el5
 gthumb-2.7.8-8.el5
 gtk2-2.10.4-21.el5_7.7
 gtk2-devel-2.10.4-21.el5_7.7
 gtk2-engines-2.8.0-3.el5
 gtkhtml3-3.16.3-1.el5
 gtksourceview-1.8.0-1.fc6
 gucharmap-1.8.0-1.fc6
 gzip-1.3.5-13.el5.centos
 hal-0.5.8.1-62.el5
 hal-cups-utils-0.6.2-5.2.el5
 hal-devel-0.5.8.1-62.el5
 hal-gnome-0.5.8.1-62.el5
 hdparm-6.6-2
 hesiod-3.1.0-8
 hesiod-devel-3.1.0-8
 hicolor-icon-theme-0.9-2.1
 hmaccalc-0.9.6-4.el5
 htmlview-4.0.0-2.el5
 httpd-2.2.3-63.el5.centos.1
 hwdata-0.213.26-1.el5
 ibmasm-3.0-9
 ifd-egate-0.05-17.el5
 im-chooser-0.3.3-6.el5
 indent-2.2.9-14.fc6
 info-4.8-14.el5
 initscripts-8.45.42-1.el5.centos
 iproute-2.6.18-13.el5
 ipsec-tools-0.6.5-14.el5_5.5
 iptables-1.3.5-9.1.el5
 iptables-ipv6-1.3.5-9.1.el5
 iptstate-1.4-2.el5
 iputils-20020927-46.el5
 ipvsadm-1.24-13.el5
 irda-utils-0.9.17-2.fc6
 irqbalance-0.55-15.el5
 iscsi-initiator-utils-6.2.0.872-13.el5
 jwhois-3.2.3-12.el5
 kasumi-2.0.1-1.1.fc6
 kbd-1.12-21.el5
 kcc-2.3-24.2.2
 kernel-2.6.18-238.el5
 kernel-2.6.18-308.8.1.el5
 kernel-headers-2.6.18-308.8.1.el5
 keyutils-1.2-1.el5
 keyutils-libs-1.2-1.el5
 keyutils-libs-devel-1.2-1.el5
 kpartx-0.4.7-48.el5_8.1
 krb5-auth-dialog-0.7-1
 krb5-devel-1.6.1-70.el5
 krb5-libs-1.6.1-70.el5
 krb5-workstation-1.6.1-70.el5
 ksh-20100621-5.el5_8.1
 kudzu-1.2.57.1.26-3.el5.centos
 kudzu-devel-1.2.57.1.26-3.el5.centos
 launchmail-4.0.0-2.el5
 less-436-9.el5
 lftp-3.7.11-7.el5
 libFS-1.0.0-3.1
 libICE-1.0.1-2.1
 libICE-devel-1.0.1-2.1
 libIDL-0.8.7-1.fc6
 libIDL-devel-0.8.7-1.fc6
 libSM-1.0.1-3.1
 libSM-devel-1.0.1-3.1
 libX11-1.0.3-11.el5_7.1
 libX11-devel-1.0.3-11.el5_7.1
 libXScrnSaver-1.1.0-3.1
 libXTrap-1.0.0-3.1
 libXau-1.0.1-3.1
 libXau-devel-1.0.1-3.1
 libXaw-1.0.2-8.1
 libXcursor-1.1.7-1.2
 libXcursor-devel-1.1.7-1.2
 libXdamage-1.0.3-2.1
 libXdmcp-1.0.1-2.1
 libXdmcp-devel-1.0.1-2.1
 libXevie-1.0.1-3.1
 libXext-1.0.1-2.1
 libXext-devel-1.0.1-2.1
 libXfixes-4.0.1-2.1
 libXfixes-devel-4.0.1-2.1
 libXfont-1.2.2-1.0.4.el5_7
 libXfontcache-1.0.2-3.1
 libXft-2.1.10-1.1
 libXft-devel-2.1.10-1.1
 libXi-1.0.1-4.el5_4
 libXi-devel-1.0.1-4.el5_4
 libXinerama-1.0.1-2.1
 libXinerama-devel-1.0.1-2.1
 libXmu-1.0.2-5
 libXp-1.0.0-8.1.el5
 libXpm-3.5.5-3
 libXrandr-1.1.1-3.3
 libXrandr-devel-1.1.1-3.3
 libXrender-0.9.1-3.1
 libXrender-devel-0.9.1-3.1
 libXres-1.0.1-3.1
 libXt-1.0.2-3.2.el5
 libXt-devel-1.0.2-3.2.el5
 libXtst-1.0.1-3.1
 libXv-1.0.1-4.1
 libXxf86dga-1.0.1-3.1
 libXxf86misc-1.0.1-3.1
 libXxf86vm-1.0.1-3.1
 libacl-2.2.39-8.el5
 libacl-devel-2.2.39-8.el5
 libaio-0.3.106-5
 libart_lgpl-2.3.17-4
 libart_lgpl-devel-2.3.17-4
 libattr-2.4.32-1.1
 libattr-devel-2.4.32-1.1
 libavc1394-0.5.3-1.fc6
 libbonobo-2.16.0-1.1.el5_5.1
 libbonobo-devel-2.16.0-1.1.el5_5.1
 libbonoboui-2.16.0-1.fc6
 libbonoboui-devel-2.16.0-1.fc6
 libcap-1.10-26
 libcap-devel-1.10-26
 libcroco-0.6.1-2.1
 libdaemon-0.10-5.el5
 libdmx-1.0.2-3.1
 libdrm-2.0.2-1.1
 libdv-0.104-4.fc6.1
 libevent-1.4.13-1
 libexif-0.6.20-1.el5_7.1
 libfontenc-1.0.2-2.2.el5
 libgail-gnome-1.1.3-1.2.1
 libgcc-4.1.2-52.el5_8.1
 libgcrypt-1.4.4-5.el5_8.2
 libgcrypt-devel-1.4.4-5.el5_8.2
 libglade2-2.6.0-2
 libglade2-devel-2.6.0-2
 libgnome-2.16.0-6.el5
 libgnome-devel-2.16.0-6.el5
 libgnomecanvas-2.14.0-4.1
 libgnomecanvas-devel-2.14.0-4.1
 libgnomecups-0.2.2-9
 libgnomeprint22-2.12.1-10.el5
 libgnomeprintui22-2.12.1-6
 libgnomeui-2.16.0-5.el5
 libgnomeui-devel-2.16.0-5.el5
 libgomp-4.4.6-3.el5.1
 libgpg-error-1.4-2
 libgpg-error-devel-1.4-2
 libgsf-1.14.1-6.1
 libgssapi-0.10-2
 libgtop2-2.14.4-8.el5_4
 libhugetlbfs-1.3-8.2.el5
 libicu-3.6-5.16.1
 libidn-0.6.5-1.1
 libidn-devel-0.6.5-1.1
 libiec61883-1.0.0-11.fc6
 libjpeg-6b-37
 libjpeg-devel-6b-37
 libnotify-0.4.2-6.el5
 libnotify-devel-0.4.2-6.el5
 libogg-1.1.3-3.el5
 libogg-devel-1.1.3-3.el5
 liboil-0.3.8-2.1
 libpcap-0.9.4-15.el5
 libpng-1.2.10-17.el5_8
 libpng-devel-1.2.10-17.el5_8
 libpurple-2.6.6-5.el5_7.4
 libraw1394-1.3.0-1.el5
 librsvg2-2.16.1-1.el5
 libselinux-1.33.4-5.7.el5
 libselinux-devel-1.33.4-5.7.el5
 libselinux-python-1.33.4-5.7.el5
 libselinux-utils-1.33.4-5.7.el5
 libsemanage-1.9.1-4.4.el5
 libsepol-1.15.2-3.el5
 libsepol-devel-1.15.2-3.el5
 libsilc-1.0.2-2.fc6
 libsmbclient-3.0.33-3.39.el5_8
 libsoup-2.2.98-2.el5_3.1
 libstdc++-4.1.2-52.el5_8.1
 libsysfs-2.1.0-1.el5
 libtermcap-2.0.8-46.1
 libtermcap-devel-2.0.8-46.1
 libtheora-1.0alpha7-1
 libtiff-3.8.2-14.el5_8
 libusb-0.1.12-6.el5
 libusb-devel-0.1.12-6.el5
 libuser-0.54.7-2.1.el5_5.2
 libuser-devel-0.54.7-2.1.el5_5.2
 libutempter-1.1.4-4.el5
 libvolume_id-095-14.27.el5_7.1
 libvorbis-1.1.2-3.el5_7.6
 libvorbis-devel-1.1.2-3.el5_7.6
 libwnck-2.16.0-4.fc6
 libxkbfile-1.0.3-3.1
 libxklavier-3.0-3.el5
 libxml2-2.6.26-2.1.15.el5_8.2
 libxml2-devel-2.6.26-2.1.15.el5_8.2
 libxml2-python-2.6.26-2.1.15.el5_8.2
 libxslt-1.1.17-2.el5_2.2
 libxslt-devel-1.1.17-2.el5_2.2
 linuxwacom-0.7.8.3-11.el5
 lm_sensors-2.10.7-9.el5
 lockdev-1.0.1-10
 lockdev-devel-1.0.1-10
 log4cpp-1.0-9.el5
 logrotate-3.7.4-12
 logwatch-7.3-9.el5_6
 lsof-4.78-6
 ltrace-0.5-13.45svn.el5_7.12
 luci-0.12.2-51.el5.centos
 lv-4.51-8.1
 lvm2-2.02.88-7.el5
 m2crypto-0.16-8.el5
 m4-1.4.5-3.el5.1
 mailcap-2.1.23-1.fc6
 mailx-8.1.1-44.2.2
 make-3.81-3.el5
 man-1.6d-2.el5
 man-pages-2.39-20.el5
 man-pages-ja-20060815-15.el5
 mcstrans-0.2.11-3.el5
 mdadm-2.6.9-3.el5
 meanwhile-1.0.2-5.el5
 mesa-libGL-6.5.1-7.10.el5
 mesa-libGL-devel-6.5.1-7.10.el5
 mesa-libGLU-6.5.1-7.10.el5
 metacity-2.16.0-16.el5
 mgetty-1.1.33-9.fc6
 microcode_ctl-1.17-1.56.el5
 mingetty-1.07-5.2.2
 mkbootdisk-1.5.3-2.1
 mkinitrd-5.1.19.6-75.el5
 mkisofs-2.01-10.7.el5
 mktemp-1.5-24.el5
 mlocate-0.15-1.el5.2
 modcluster-0.12.1-7.el5.centos
 module-init-tools-3.3-0.pre3.1.60.el5_5.1
 mtools-3.9.10-2.fc6
 mtr-0.71-3.1
 nano-1.3.12-1.1
 nash-5.1.19.6-75.el5
 nautilus-2.16.2-10.el5
 nautilus-cd-burner-2.16.0-7.el5
 nautilus-extensions-2.16.2-10.el5
 nautilus-open-terminal-0.6-7.el5
 nautilus-sendto-1.0.1-6.el5.centos
 nc-1.84-10.fc6
 ncurses-5.5-24.20060715
 ncurses-devel-5.5-24.20060715
 net-snmp-5.3.2.2-17.el5_8.1
 net-snmp-libs-5.3.2.2-17.el5_8.1
 net-tools-1.60-82.el5
 newt-0.52.2-15.el5
 newt-devel-0.52.2-15.el5
 newt-perl-1.08-9.2.2
 nfs-utils-1.0.9-60.el5
 nfs-utils-lib-1.0.8-7.9.el5
 nkf-2.07-1.1.fc6
 notification-daemon-0.3.5-9.el5
 notify-python-0.1.0-3.fc6
 nscd-2.5-81.el5_8.2
 nspluginwrapper-1.3.0-9.el5
 nspr-4.8.9-1.el5_8
 nspr-devel-4.8.9-1.el5_8
 nss-3.13.1-5.el5_8
 nss-devel-3.13.1-5.el5_8
 nss-tools-3.13.1-5.el5_8
 nss_db-2.2-35.4.el5_5
 nss_ldap-253-49.el5
 ntp-4.2.2p1-15.el5.centos.1
 ntsysv-1.3.30.2-2.el5
 numactl-0.9.8-12.el5_6
 oddjob-0.27-12.el5
 oddjob-libs-0.27-12.el5
 opal-2.2.2-1.1.0.1
 openais-0.80.6-36.el5_8.2
 openjade-1.3.2-27
 openldap-2.3.43-25.el5
 openldap-devel-2.3.43-25.el5
 openmotif-2.3.1-6.1.el5_8
 opensp-1.5.2-4
 openssh-4.3p2-82.el5
 openssh-askpass-4.3p2-82.el5
 openssh-clients-4.3p2-82.el5
 openssh-server-4.3p2-82.el5
 openssl-0.9.8e-22.el5_8.4
 openssl-devel-0.9.8e-22.el5_8.4
 orca-1.0.0-5.el5
 pam-0.99.6.2-6.el5_5.2
 pam-devel-0.99.6.2-6.el5_5.2
 pam_ccreds-3-5
 pam_krb5-2.2.14-22.el5
 pam_passwdqc-1.0.2-1.2.2
 pam_pkcs11-0.5.3-26.el5
 pam_smb-1.1.7-7.2.1
 pango-1.14.9-8.el5.centos.3
 pango-devel-1.14.9-8.el5.centos.3
 paps-0.6.6-20.el5
 parted-1.8.1-29.el5
 passwd-0.73-2
 patch-2.5.4-31.el5
 pax-3.4-2.el5_4
 pciutils-3.1.7-5.el5
 pciutils-devel-3.1.7-5.el5
 pcmciautils-014-5
 pcre-6.6-6.el5_6.1
 pcsc-lite-1.4.4-4.el5_5
 pcsc-lite-devel-1.4.4-4.el5_5
 pcsc-lite-libs-1.4.4-4.el5_5
 perl-5.8.8-38.el5
 perl-NKF-2.07-1.1.fc6
 perl-Net-Telnet-3.03-5
 perl-String-CRC32-1.4-2.fc6
 perl-XML-LibXML-1.58-6
 perl-XML-LibXML-Common-0.13-8.2.2
 perl-XML-NamespaceSupport-1.09-1.2.1
 perl-XML-SAX-0.14-11
 pexpect-2.3-3.el5
 php-5.1.6-34.el5_8
 php-cli-5.1.6-34.el5_8
 php-common-5.1.6-34.el5_8
 pilot-link-0.11.8-16
 pinfo-0.6.9-1.fc6
 piranha-0.8.4-24.el5
 pirut-1.3.28-19.el5.centos
 pkgconfig-0.21-2.el5
 pkinit-nss-0.7.6-1.el5
 pm-utils-0.99.3-10.el5.centos
 policycoreutils-1.33.12-14.8.el5
 poppler-0.5.4-19.el5
 poppler-utils-0.5.4-19.el5
 popt-1.10.2.3-28.el5_8
 portmap-4.0-65.2.2.1
 postgresql-libs-8.1.23-4.el5_8
 ppp-2.4.4-2.el5
 prelink-0.4.0-2.el5
 procmail-3.22-17.1.el5.centos
 procps-3.2.7-18.el5
 psacct-6.3.2-44.el5
 psmisc-22.2-7.el5_6.2
 pwlib-1.10.1-7.0.1.el5
 pycairo-1.2.0-1.1
 pygobject2-2.12.1-5.el5
 pygtk2-2.10.1-12.el5
 pygtk2-libglade-2.10.1-12.el5
 pyorbit-2.14.1-3.el5
 python-2.4.3-46.el5
 python-devel-2.4.3-46.el5
 python-elementtree-1.2.6-5
 python-imaging-1.1.5-7.el5
 python-iniparse-0.2.3-4.el5
 python-ldap-2.2.0-2.1
 python-libs-2.4.3-46.el5
 python-numeric-23.7-2.2.2.el5_6.1
 python-pycurl-7.15.5.1-8.el5
 python-sqlite-1.1.7-1.2.1
 python-suds-0.4.1-2.el5
 python-urlgrabber-3.1.0-6.el5
 pyxf86config-0.3.31-3.el5
 quota-3.13-5.el5
 rdate-1.4-8.el5
 rdist-6.1.5-44
 readahead-1.3-8.el5
 readline-5.1-3.el5
 readline-devel-5.1-3.el5
 redhat-artwork-5.1.0-28.el5.centos
 redhat-logos-4.9.99-11.el5.centos
 redhat-lsb-4.0-2.1.4.el5
 redhat-menus-6.7.8-3.el5
 rgmanager-2.0.52-28.el5.centos
 rhgb-0.16.4-8.el5.centos.3
 rhpl-0.194.1-2
 rhpxl-0.41.1-12.el5
 ricci-0.12.2-51.el5.centos
 rmt-0.4b41-6.el5
 rng-utils-2.0-5.el5
 rootfiles-8.1-1.1.1
 rp-pppoe-3.5-32.1
 rpm-4.4.2.3-28.el5_8
 rpm-devel-4.4.2.3-28.el5_8
 rpm-libs-4.4.2.3-28.el5_8
 rpm-python-4.4.2.3-28.el5_8
 rsh-0.17-40.el5_7.1
 rsync-3.0.6-4.el5_7.1
 sabayon-apply-2.12.4-9.el5
 scim-1.4.4-44.el5
 scim-anthy-1.2.0-6.el5
 scim-bridge-0.4.5-10.el5
 scim-bridge-gtk-0.4.5-10.el5
 scim-libs-1.4.4-44.el5
 scrollkeeper-0.3.14-9.el5
 sed-4.1.5-8.el5
 selinux-policy-2.4.6-327.el5
 selinux-policy-targeted-2.4.6-327.el5
 sendmail-8.13.8-8.1.el5_7
 setarch-2.0-1.1
 setools-3.0-3.el5
 setserial-2.17-19.2.2
 setup-2.5.58-9.el5
 setuptool-1.19.2-1.el5.centos
 sgml-common-0.6.3-18
 sgpio-1.2.0_10-2.el5
 shadow-utils-4.0.17-20.el5
 shared-mime-info-0.19-5.el5
 slang-2.0.6-4.el5
 slang-devel-2.0.6-4.el5
 smartmontools-5.38-3.el5
 sos-1.7-9.62.el5
 sox-12.18.1-1.el5_5.1
 specspo-13-1.el5.centos
 speex-1.0.5-4.el5_1.1
 sqlite-3.3.6-5
 sqlite-devel-3.3.6-5
 startup-notification-0.8-4.1
 startup-notification-devel-0.8-4.1
 strace-4.5.18-11.el5_8
 stunnel-4.15-2.el5.1
 sudo-1.7.2p1-13.el5
 symlinks-1.2-24.2.2
 synaptics-0.14.4-8.fc6
 sysfsutils-2.1.0-1.el5
 sysklogd-1.4.1-46.el5
 syslinux-3.11-7
 sysstat-7.0.2-11.el5
 system-config-cluster-1.0.57-12
 system-config-date-1.8.12-5.el5.centos
 system-config-display-1.0.48-4.el5
 system-config-keyboard-1.2.11-1.el5
 system-config-language-1.1.18-3.el5
 system-config-network-1.3.99.21-1.el5
 system-config-network-tui-1.3.99.21-1.el5
 system-config-printer-libs-0.7.32.10-1.el5_7.1
 system-config-securitylevel-1.6.29.1-6.el5
 system-config-securitylevel-tui-1.6.29.1-6.el5
 system-config-services-0.9.4-5.el5
 system-config-soundcard-2.0.6-1.el5
 system-config-users-1.2.51-7.el5
 talk-0.17-31.el5
 tar-1.15.1-32.el5_8
 tcl-8.4.13-4.el5
 tcp_wrappers-7.6-40.7.el5
 tcpdump-3.9.4-15.el5
 tcsh-6.14-17.el5_5.2
 telnet-0.17-39.el5
 termcap-5.5-1.20060701.1
 time-1.7-27.2.2
 tix-8.4.0-11.fc6
 tk-8.4.13-5.el5_1.1
 tkinter-2.4.3-46.el5
 tmpwatch-2.9.7-1.1.el5.5
 tog-pegasus-2.11.0-3.el5
 tog-pegasus-libs-2.11.0-3.el5
 traceroute-2.0.1-6.el5
 tree-1.5.0-4
 trousers-0.3.1-4.el5
 ttmkfdir-3.0.9-23.el5
 tzdata-2012c-1.el5
 udev-095-14.27.el5_7.1
 udftools-1.0.0b3-0.1.el5
 unix2dos-2.2-26.2.3.el5
 unzip-5.52-3.el5
 urw-fonts-2.3-6.1.1
 usbutils-0.71-2.1
 usermode-1.88-3.el5.2
 usermode-gtk-1.88-3.el5.2
 util-linux-2.13-0.59.el5
 vconfig-1.9-3
 vim-minimal-7.0.109-7.el5
 vino-2.13.5-9.el5_4
 vixie-cron-4.1-81.el5
 vnc-server-4.1.2-14.el5_6.6
 vte-0.14.0-2.el5
 wdaemon-0.14-8
 wget-1.11.4-3.el5_8.2
 which-2.16-7
 wireless-tools-28-2.el5
 words-3.0-9.1
 wpa_supplicant-0.5.10-9.el5
 xkeyboard-config-0.8-10.el5
 xml-common-0.6.3-18
 xmlsec1-1.2.9-8.1.2
 xmlsec1-devel-1.2.9-8.1.2
 xorg-x11-apps-7.1-4.0.1.el5
 xorg-x11-drivers-7.1-4.2.el5
 xorg-x11-drv-acecad-1.1.0-2.1
 xorg-x11-drv-aiptek-1.0.1-2
 xorg-x11-drv-apm-1.1.1-2.1
 xorg-x11-drv-ark-0.6.0-2.1
 xorg-x11-drv-ast-0.89.9-1.el5
 xorg-x11-drv-ati-6.6.3-3.33.el5
 xorg-x11-drv-calcomp-1.1.0-1.1
 xorg-x11-drv-chips-1.1.1-2.1
 xorg-x11-drv-cirrus-1.1.0-2.fc6
 xorg-x11-drv-citron-2.2.0-1.1
 xorg-x11-drv-cyrix-1.1.0-4
 xorg-x11-drv-digitaledge-1.1.0-1.1
 xorg-x11-drv-dmc-1.1.0-2
 xorg-x11-drv-dummy-0.2.0-2.1
 xorg-x11-drv-dynapro-1.1.0-2
 xorg-x11-drv-elo2300-1.1.0-1.1
 xorg-x11-drv-elographics-1.1.0-1.1
 xorg-x11-drv-evdev-1.0.0.5-5.el5
 xorg-x11-drv-fbdev-0.3.0-3
 xorg-x11-drv-fpit-1.1.0-1.1
 xorg-x11-drv-glint-1.1.1-4.1
 xorg-x11-drv-hyperpen-1.1.0-2
 xorg-x11-drv-i128-1.2.0-4
 xorg-x11-drv-i740-1.1.0-2.1
 xorg-x11-drv-i810-1.6.5-9.40.el5
 xorg-x11-drv-jamstudio-1.1.0-1.1
 xorg-x11-drv-joystick-1.1.0-1.1
 xorg-x11-drv-keyboard-1.1.0-3
 xorg-x11-drv-magellan-1.1.0-1.1
 xorg-x11-drv-magictouch-1.0.0.5-2.1
 xorg-x11-drv-mga-1.4.13-5.el5
 xorg-x11-drv-microtouch-1.1.0-1.1
 xorg-x11-drv-mouse-1.1.1-1.1
 xorg-x11-drv-mutouch-1.1.0-3
 xorg-x11-drv-neomagic-1.1.1-2.1
 xorg-x11-drv-nsc-2.8.1-2.1
 xorg-x11-drv-nv-2.1.15-4.el5
 xorg-x11-drv-palmax-1.1.0-1.1
 xorg-x11-drv-penmount-1.1.0-2.1
 xorg-x11-drv-qxl-0.0.12-2.el5
 xorg-x11-drv-rendition-4.1.0-3.1
 xorg-x11-drv-s3-0.4.1-2.1
 xorg-x11-drv-s3virge-1.9.1-2.1
 xorg-x11-drv-savage-2.1.1-5.fc6
 xorg-x11-drv-siliconmotion-1.4.1-2.1
 xorg-x11-drv-sis-0.9.1-7.3.el5_7.1
 xorg-x11-drv-sisusb-0.8.1-4.1
 xorg-x11-drv-spaceorb-1.1.0-1.1
 xorg-x11-drv-summa-1.1.0-1.1
 xorg-x11-drv-tdfx-1.2.1-3.1
 xorg-x11-drv-tek4957-1.1.0-1.1
 xorg-x11-drv-trident-1.2.1-3.fc6
 xorg-x11-drv-tseng-1.1.0-3.1
 xorg-x11-drv-ur98-1.1.0-1.1
 xorg-x11-drv-v4l-0.1.1-4
 xorg-x11-drv-vesa-1.3.0-8.3.el5
 xorg-x11-drv-vga-4.1.0-2.1
 xorg-x11-drv-via-0.2.1-9
 xorg-x11-drv-vmmouse-12.4.0-2.1
 xorg-x11-drv-vmware-10.13.0-2.1
 xorg-x11-drv-void-1.1.0-3.1
 xorg-x11-drv-voodoo-1.1.0-3.1
 xorg-x11-filesystem-7.1-2.fc6
 xorg-x11-font-utils-7.1-3
 xorg-x11-fonts-100dpi-7.1-2.1.el5
 xorg-x11-fonts-75dpi-7.1-2.1.el5
 xorg-x11-fonts-ISO8859-1-100dpi-7.1-2.1.el5
 xorg-x11-fonts-ISO8859-1-75dpi-7.1-2.1.el5
 xorg-x11-fonts-Type1-7.1-2.1.el5
 xorg-x11-fonts-base-7.1-2.1.el5
 xorg-x11-fonts-misc-7.1-2.1.el5
 xorg-x11-fonts-truetype-7.1-2.1.el5
 xorg-x11-proto-devel-7.1-13.el5
 xorg-x11-server-Xnest-1.1.1-48.90.el5
 xorg-x11-server-Xorg-1.1.1-48.90.el5
 xorg-x11-server-utils-7.1-5.el5_6.2
 xorg-x11-twm-1.0.1-3.1
 xorg-x11-utils-7.1-2.fc6
 xorg-x11-xauth-1.0.1-2.1
 xorg-x11-xfs-1.0.2-5.el5_6.1
 xorg-x11-xinit-1.0.2-15.el5
 xorg-x11-xkb-utils-1.0.2-2.1
 xsri-2.1.0-10.fc6
 xterm-215-8.el5_4.1
 xulrunner-10.0.4-1.el5_8
 xulrunner-devel-10.0.4-1.el5_8
 yelp-2.16.0-29.el5_8
 yp-tools-2.9-2.el5
 ypbind-1.19-12.el5_6.1
 yum-3.2.22-39.el5.centos
 yum-fastestmirror-1.1.16-21.el5.centos
 yum-metadata-parser-1.1.2-3.el5.centos
 yum-updatesd-0.9-2.el5
 zenity-2.16.0-2.el5
 zip-2.31-2.el5
 zlib-1.2.3-4.el5
 zlib-devel-1.2.3-4.el5

 # reboot

・2号機についても同様の設定を行う。    </description>
    <dc:date>2012-06-03T22:40:53+09:00</dc:date>
    <utime>1338730853</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/42.html">
    <title>Oracle on RHCS</title>
    <link>https://w.atwiki.jp/kcwest/pages/42.html</link>
    <description>
      VMware ESXi上に、Oracle10g on RHCSクラスタを構成する手順です。

#REF(概要図.png)

+ [[必要なプロダクトのダウンロード&gt;RCHS1]]
+ [[仮想マシンの作成&gt;RHCS2]]
+ [[OS設定&gt;RHCS3]]
+ [[Oracleソフトウェアインストール&gt;RHCS4]]
+ Oracleデータベース作成
+ RHCS設定
































































（｀∀´　）    </description>
    <dc:date>2012-06-03T22:29:25+09:00</dc:date>
    <utime>1338730165</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/kcwest/pages/2.html</link>
    <description>
      **メニュー
-[[トップページ]]
-[[メニュー]]
--[[ネットワーク]]
--[[メモリ]]
--[[マシン構成情報]]
--[[ソフトウェア管理]]
--[[OS起動・停止]]
--[[構築]]
-----    </description>
    <dc:date>2012-06-02T21:38:12+09:00</dc:date>
    <utime>1338640692</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/53.html">
    <title>rhcs3-3</title>
    <link>https://w.atwiki.jp/kcwest/pages/53.html</link>
    <description>
      ・共有ディスクの設定
- 1号機から実行
 # fdisk -l
 # iscsiadm -m discovery -t sendtargets -p 192.168.11.251
 # service iscsi restart
 # fdisk -l
#REF(iscsi1.png,,width=600)

 # fdisk /dev/sdb
 p
 n
 p
 1
 ENTER
 +10240M
 p
 w
#REF(fdisk1.png,,width=600)

 # fdisk -l
 # mkdir /oradata
 # mkfs.ext3 /dev/sdb1
 # mount /dev/sdb1 /oradata
 # df -h
 # touch /oradata/test
 # ll /oradata/test
 # umount /oradata
#REF(fdisk2.png,,width=600)

- 2号機から実行

 # fdisk -l
 # iscsiadm -m discovery -t sendtargets -p 192.168.11.251
 # service iscsi restart
 # fdisk -l
#REF(iscsi20.png,,width=600)

 # mkdir /oradata
 # mount /dev/sdb1 /oradata
 # df -h
 # ll /oradata/
 # rm -i /oradata/test
 # umount /oradata/
#REF(iscsi21.png,,width=600)    </description>
    <dc:date>2012-06-02T21:37:41+09:00</dc:date>
    <utime>1338640661</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/41.html">
    <title>構築</title>
    <link>https://w.atwiki.jp/kcwest/pages/41.html</link>
    <description>
      +[[Oracle on RHCS]]











































































（｀∀´　）



















EOF    </description>
    <dc:date>2012-05-30T23:39:34+09:00</dc:date>
    <utime>1338388774</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/50.html">
    <title>RHCS3</title>
    <link>https://w.atwiki.jp/kcwest/pages/50.html</link>
    <description>
      ・OS設定

+[[hostsの設定&gt;rhcs3-0]]
+[[VMware Toolsのインストール&gt;rhcs3-1]]
+[[不要サービスの停止&gt;rhcs3-2]]
+2号機についても同様の設定を行う。
+[[共有ディスクの設定&gt;rhcs3-3]]
+[[追加パッケージのインストール&gt;rhcs3-4]]













































（｀∀´　）    </description>
    <dc:date>2012-05-30T23:38:40+09:00</dc:date>
    <utime>1338388720</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/25.html">
    <title>machinfo</title>
    <link>https://w.atwiki.jp/kcwest/pages/25.html</link>
    <description>
       root@rx2600 # machinfo
 CPU info:
   2 Intel(R) Itanium 2 processors (1.5 GHz, 6 MB)
           400 MT/s bus, CPU version B1
 
 Memory: 2036 MB (1.99 GB)
 
 Firmware info:
    Firmware revision:  02.31
    FP SWA driver revision: 1.18
    IPMI is supported on this system.
    BMC firmware revision: 1.52
 
 Platform info:
    Model:                  &quot;ia64 hp server rx2600&quot;
    Machine ID number:      c77006d2-ba9e-11d8-8a46-3421abcc91f8
    Machine serial number:  JP42000111
 
 OS info:
    Nodename:  rx2600
    Release:   HP-UX B.11.31
    Version:   U (unlimited-user license)
    Machine:   ia64
    ID Number: 3346007762
    vmunix _release_version:
 @(#) $Revision: vmunix:    B.11.31_LR FLAVOR=perf
 root@rx2600 #    </description>
    <dc:date>2012-05-30T23:32:51+09:00</dc:date>
    <utime>1338388371</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/38.html">
    <title>sola-shut</title>
    <link>https://w.atwiki.jp/kcwest/pages/38.html</link>
    <description>
       root@sola10-01# shutdown -y -g0 -i5
 Shutdown started.    Sun Jan  1 12:21:42 JST 2012
 
 Changing to init state 5 - please wait
 Broadcast Message from root (pts/2) on sola10-01 Sun Jan  1 12:21:42...
 THE SYSTEM sola10-01 IS BEING SHUT DOWN NOW ! ! !
 Log off now or risk your files being damaged
 
 updating /platform/i86pc/boot_archive






















EOF    </description>
    <dc:date>2012-05-30T23:32:05+09:00</dc:date>
    <utime>1338388325</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/kcwest/pages/52.html">
    <title>rhcs3-2</title>
    <link>https://w.atwiki.jp/kcwest/pages/52.html</link>
    <description>
      1. 以下コマンドを実行し、デフォルト起動サービスを停止する。(任意)
 # chkconfig acpid off
 # chkconfig anacron off
 # chkconfig apmd off
 # chkconfig atd off
 # chkconfig auditd off
 # chkconfig autofs off
 # chkconfig avahi-daemon off
 # chkconfig bluetooth off
 # chkconfig cpuspeed off
 # chkconfig cups off
 # chkconfig firstboot off
 # chkconfig gpm off
 # chkconfig hidd off
 # chkconfig ip6tables off
 # chkconfig irqbalance off
 # chkconfig kudzu off
 # chkconfig lm_sensors off
 # chkconfig mcstrans off
 # chkconfig mdmonitor off
 # chkconfig microcode_ctl off
 # chkconfig modclusterd off
 # chkconfig netfs off
 # chkconfig nfslock off
 # chkconfig pcscd off
 # chkconfig portmap off
 # chkconfig rawdevices off
 # chkconfig readahead_early off
 # chkconfig readahead_later off
 # chkconfig restorecond off
 # chkconfig ricci off
 # chkconfig rpcgssd off
 # chkconfig rpcidmapd off
 # chkconfig sendmail off
 # chkconfig smartd off
 # chkconfig tog-pegasus off
 # chkconfig yum-updatesd off 

2. 確認
 # chkconfig --list |grep 5:on
 crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off
 haldaemon       0:off   1:off   2:off   3:on    4:on    5:on    6:off
 iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off
 iscsi           0:off   1:off   2:off   3:on    4:on    5:on    6:off
 iscsid          0:off   1:off   2:off   3:on    4:on    5:on    6:off
 lvm2-monitor    0:off   1:on    2:on    3:on    4:on    5:on    6:off
 messagebus      0:off   1:off   2:off   3:on    4:on    5:on    6:off
 network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
 ntpd            0:off   1:off   2:off   3:on    4:off   5:on    6:off
 sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
 syslog          0:off   1:off   2:on    3:on    4:on    5:on    6:off
 vmware-tools    0:off   1:off   2:on    3:on    4:off   5:on    6:off
 xfs             0:off   1:off   2:on    3:on    4:on    5:on    6:off

3.再起動
 # reboot    </description>
    <dc:date>2012-05-30T23:29:48+09:00</dc:date>
    <utime>1338388188</utime>
  </item>
  </rdf:RDF>
