<?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/fuzy/">
    <title>fuzy @ ウィキ</title>
    <link>http://w.atwiki.jp/fuzy/</link>
    <atom:link href="https://w.atwiki.jp/fuzy/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>fuzy @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2007-12-16T15:52:54+09:00</dc:date>
    <utime>1197787974</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/3.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/fuzy/pages/4.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/12.html">
    <title>Redhat Linux 9</title>
    <link>https://w.atwiki.jp/fuzy/pages/12.html</link>
    <description>
      ** initrd-2.4.20-8.img
*** [[Redhat Linux 9/initrd-2.4.20-8]]
*** [[Redhat Linux 9/initrd-2.4.20-8/dev]]
*** [[Redhat Linux 9/initrd-2.4.20-8/linuxrc]]
** root file system
*** [[Redhat Linux 9/etc/inittab]]
*** [[Redhat Linux 9/etc/rc.d/rc.sysinit]]

**** /etc/redhat-release:
 Red Hat Linux release 9 (Shrike)

Release情報がある    </description>
    <dc:date>2007-12-16T15:52:54+09:00</dc:date>
    <utime>1197787974</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/16.html">
    <title>Redhat Linux 9/etc/rc.d/rc.sysinit</title>
    <link>https://w.atwiki.jp/fuzy/pages/16.html</link>
    <description>
       #!/bin/bash
 #
 # /etc/rc.d/rc.sysinit - run once at boot time
 #
 # Taken in part from Miquel van Smoorenburg&#039;s bcheckrc.
 #
 
 # Rerun ourselves through initlog
 if [ -z &quot;$IN_INITLOG&quot; -a -x /sbin/initlog ]; then
     exec /sbin/initlog $INITLOG_ARGS -r /etc/rc.d/rc.sysinit
 fi
 
 # If we&#039;re using devfs, start devfsd now - we need the old device names
 [ -e /dev/.devfsd -a -x /sbin/devfsd ] &amp;&amp; /sbin/devfsd /dev
 
 HOSTNAME=`/bin/hostname`
 if [ -f /etc/sysconfig/network ]; then
     . /etc/sysconfig/network
 else
     NETWORKING=no
 fi
 if [ -z &quot;$HOSTNAME&quot; -o &quot;$HOSTNAME&quot; = &quot;(none)&quot; ]; then
     HOSTNAME=localhost
 fi
 
 . /etc/init.d/functions
 
 # Start the graphical boot, if necessary
 if [ &quot;$BOOTUP&quot; = &quot;graphical&quot; ]; then
   if [ -x /usr/bin/rhgb ]; then
      /usr/bin/rhgb
   else
      export BOOTUP=color
   fi
 fi
 
 last=0
 for i in `LC_ALL=C grep &#039;^[0-9]*.*respawn:/sbin/mingetty&#039; /etc/inittab | sed &#039;s/^.* tty\([0-9][0-9]*\).*/\1/g&#039;`; do
       &gt; /dev/tty$i
       last=$i
 done
 if [ $last -gt 0 ]; then
      &gt; /dev/tty$((last+1))
      &gt; /dev/tty$((last+2))
 fi
 
 if [ &quot;`/sbin/consoletype`&quot; = &quot;vt&quot; -a -x /sbin/setsysfont ]; then
 
    echo -n &quot;Setting default font ($SYSFONT): &quot;
    /sbin/setsysfont
    if [ $? -eq 0 ]; then
       success
    else
       failure
    fi
    echo ; echo
 fi
 
 # Print a text banner.
 echo -en $&quot;\t\tWelcome to &quot;
 if LC_ALL=C grep -q &quot;Red Hat&quot; /etc/redhat-release ; then
  [ &quot;$BOOTUP&quot; = &quot;color&quot; ] &amp;&amp; echo -en &quot;\\033[0;31m&quot;
  echo -en &quot;Red Hat&quot;
  [ &quot;$BOOTUP&quot; = &quot;color&quot; ] &amp;&amp; echo -en &quot;\\033[0;39m&quot;
  PRODUCT=`sed &quot;s/Red Hat \(.*\) release.*/\1/&quot; /etc/redhat-release`
  echo &quot; $PRODUCT&quot;
 else
  PRODUCT=`sed &quot;s/ release.*//g&quot; /etc/redhat-release`
  echo &quot;$PRODUCT&quot;
 fi
 if [ &quot;$PROMPT&quot; != &quot;no&quot; ]; then
  echo -en $&quot;\t\tPress &#039;I&#039; to enter interactive startup.&quot;
  echo
  sleep 1
 fi
 
 # Fix console loglevel
 /bin/dmesg -n $LOGLEVEL
 
 # Mount /proc (done here so volume labels can work with fsck)
 action $&quot;Mounting proc filesystem: &quot; mount -n -t proc /proc /proc
 
 # Unmount the initrd, if necessary
 if LC_ALL=C grep -q /initrd /proc/mounts &amp;&amp; ! LC_ALL=C grep -q /initrd/loopfs /proc/mounts ; then
    if [ -e /initrd/dev/.devfsd ]; then
       umount /initrd/dev
    fi
    action $&quot;Unmounting initrd: &quot; umount /initrd
    /sbin/blockdev --flushbufs /dev/ram0 &gt;/dev/null 2&gt;&amp;1
 fi
 
 # Configure kernel parameters
 action $&quot;Configuring kernel parameters: &quot; sysctl -e -p /etc/sysctl.conf
 
 # Set the system clock.
 ARC=0
 SRM=0
 UTC=0
 
 if [ -f /etc/sysconfig/clock ]; then
    . /etc/sysconfig/clock
 
    # convert old style clock config to new values
    if [ &quot;${CLOCKMODE}&quot; = &quot;GMT&quot; ]; then
       UTC=true
    elif [ &quot;${CLOCKMODE}&quot; = &quot;ARC&quot; ]; then
       ARC=true
    fi
 fi
 
 CLOCKDEF=&quot;&quot;
 CLOCKFLAGS=&quot;$CLOCKFLAGS --hctosys&quot;
 
 case &quot;$UTC&quot; in
    yes|true)
     CLOCKFLAGS=&quot;$CLOCKFLAGS --utc&quot;;
     CLOCKDEF=&quot;$CLOCKDEF (utc)&quot;;
    ;;
    no|false)
     CLOCKFLAGS=&quot;$CLOCKFLAGS --localtime&quot;;
     CLOCKDEF=&quot;$CLOCKDEF (localtime)&quot;;
    ;;
 esac
 
 case &quot;$ARC&quot; in
      yes|true)
        CLOCKFLAGS=&quot;$CLOCKFLAGS --arc&quot;;
        CLOCKDEF=&quot;$CLOCKDEF (arc)&quot;;
      ;;
 esac
 case &quot;$SRM&quot; in
      yes|true)
        CLOCKFLAGS=&quot;$CLOCKFLAGS --srm&quot;;
        CLOCKDEF=&quot;$CLOCKDEF (srm)&quot;;
      ;;
 esac
 
 /sbin/hwclock $CLOCKFLAGS
 
 action $&quot;Setting clock $CLOCKDEF: `date`&quot; date
 
 if [ &quot;`/sbin/consoletype`&quot; = &quot;vt&quot; -a -x /bin/loadkeys ]; then
  KEYTABLE=
  KEYMAP=
  if [ -f /etc/sysconfig/console/default.kmap ]; then
   KEYMAP=/etc/sysconfig/console/default.kmap
  else
   if [ -f /etc/sysconfig/keyboard ]; then
     . /etc/sysconfig/keyboard
   fi
   if [ -n &quot;$KEYTABLE&quot; -a -d &quot;/lib/kbd/keymaps&quot; ]; then
      KEYMAP=$KEYTABLE
   fi
  fi
  if [ -n &quot;$KEYMAP&quot; ]; then
   # Since this takes in/output from stdin/out, we can&#039;t use initlog
   if [ -n &quot;$KEYTABLE&quot; ]; then
     echo -n $&quot;Loading default keymap ($KEYTABLE): &quot;
   else
     echo -n $&quot;Loading default keymap: &quot;
   fi
   loadkeys $KEYMAP &lt; /dev/tty0 &gt; /dev/tty0 2&gt;/dev/null &amp;&amp; \
      success $&quot;Loading default keymap&quot; || failure $&quot;Loading default keymap&quot;
   echo
  fi
 fi
 
 # Set the hostname.
 action $&quot;Setting hostname ${HOSTNAME}: &quot; hostname ${HOSTNAME}
 
 # Initialize USB controller and HID devices
 usb=0
 if ! LC_ALL=C grep -iq &quot;nousb&quot; /proc/cmdline 2&gt;/dev/null &amp;&amp; ! LC_ALL=C grep -q &quot;usb&quot; /proc/devices 2&gt;/dev/null ; then
     aliases=`/sbin/modprobe -c | awk &#039;/^alias usb-controller/ { print $3 }&#039;`
     if [ -n &quot;$aliases&quot; -a &quot;$aliases&quot; != &quot;off&quot; ]; then
       modprobe usbcore
       for alias in $aliases ; do
        [ &quot;$alias&quot; != &quot;off&quot; ] &amp;&amp; action $&quot;Initializing USB controller ($alias): &quot; modprobe $alias
       done
       [ $? -eq 0 -a -n &quot;$aliases&quot; ] &amp;&amp; usb=1
     fi
 fi
 
 if ! LC_ALL=C grep -iq &quot;nousb&quot; /proc/cmdline 2&gt;/dev/null &amp;&amp; LC_ALL=C grep -q &quot;usb&quot; /proc/devices 2&gt;/dev/null ; then
   usb=1
 fi
 
 if [ $usb = 1 -a ! -f /proc/bus/usb/devices ]; then
     action $&quot;Mounting USB filesystem: &quot;  mount -t usbdevfs usbdevfs /proc/bus/usb
 fi
 
 needusbstorage=
 if [ $usb = &quot;1&quot; ]; then
     needusbstorage=`LC_ALL=C grep -e &quot;^I.*Cls=08&quot; /proc/bus/usb/devices 2&gt;/dev/null`
     LC_ALL=C grep &#039;hid&#039; /proc/bus/usb/drivers || action $&quot;Initializing USB HID interface: &quot; modprobe hid 2&gt; /dev/null
     action $&quot;Initializing USB keyboard: &quot; modprobe keybdev 2&gt; /dev/null
     action $&quot;Initializing USB mouse: &quot; modprobe mousedev 2&gt; /dev/null
 fi
 
 if [ -f /fastboot ] || LC_ALL=C grep -iq &quot;fastboot&quot; /proc/cmdline 2&gt;/dev/null ; then
        fastboot=yes
 fi
 
 if [ -f /fsckoptions ]; then
        fsckoptions=`cat /fsckoptions`
 fi
 
 if [ -f /forcefsck ]; then
        fsckoptions=&quot;-f $fsckoptions&quot;
 elif [ -f /.autofsck ]; then
        echo $&quot;Your system appears to have shut down uncleanly&quot;
        AUTOFSCK_TIMEOUT=5
        [ -f /etc/sysconfig/autofsck ] &amp;&amp; . /etc/sysconfig/autofsck
        if [ &quot;$AUTOFSCK_DEF_CHECK&quot; = &quot;yes&quot; ]; then
                AUTOFSCK_OPT=-f
        fi
 
        if [ &quot;$PROMPT&quot; != &quot;no&quot; ]; then
                if [ &quot;$AUTOFSCK_DEF_CHECK&quot; = &quot;yes&quot; ]; then
                        if /sbin/getkey -c $AUTOFSCK_TIMEOUT -m $&quot;Press N within %d seconds to not force file system integrity check...&quot; n ; then
                                AUTOFSCK_OPT=
                        fi
                else
                        if /sbin/getkey -c $AUTOFSCK_TIMEOUT -m $&quot;Press Y within %d seconds to force file system integrity check...&quot; y ; then
                                AUTOFSCK_OPT=-f
                        fi
                fi
                echo
        else
                # PROMPT not allowed
                if [ &quot;$AUTOFSCK_DEF_CHECK&quot; = &quot;yes&quot; ]; then
                        echo $&quot;Forcing file system integrity check due to default setting&quot;
                else
                        echo $&quot;Not forcing file system integrity check due to default setting&quot;
                fi
        fi
        fsckoptions=&quot;$AUTOFSCK_OPT $fsckoptions&quot;
 fi
 
 if [ &quot;$BOOTUP&quot; = &quot;color&quot; ]; then
        fsckoptions=&quot;-C $fsckoptions&quot;
 else
        fsckoptions=&quot;-V $fsckoptions&quot;
 fi
 
 
 _RUN_QUOTACHECK=0
 ROOTFSTYPE=`awk &#039;/ \/ / &amp;&amp; ($3 !~ /rootfs/) { print $3 }&#039; /proc/mounts`
 if [ -z &quot;$fastboot&quot; -a &quot;X$ROOTFSTYPE&quot; != &quot;Xnfs&quot; ]; then
 
         STRING=$&quot;Checking root filesystem&quot;
        echo $STRING
        initlog -c &quot;fsck -T -a $fsckoptions /&quot;
        rc=$?
 
        if [ &quot;$rc&quot; = &quot;0&quot; ]; then
                success &quot;$STRING&quot;
                echo
        elif [ &quot;$rc&quot; = &quot;1&quot; ]; then
                passed &quot;$STRING&quot;
                echo
         fi
 
         # A return of 2 or higher means there were serious problems.
        if [ $rc -gt 1 ]; then
                if [ &quot;$BOOTUP&quot; = &quot;graphical&quot; ]; then
                    chvt 1
                fi
 
                failure &quot;$STRING&quot;
                echo
                echo
                echo $&quot;*** An error occurred during the file system check.&quot;
                echo $&quot;*** Dropping you to a shell; the system will reboot&quot;
                echo $&quot;*** when you leave the shell.&quot;
 
                 str=$&quot;(Repair filesystem)&quot;
                PS1=&quot;$str \# # &quot;; export PS1
                sulogin
 
                echo $&quot;Unmounting file systems&quot;
                umount -a
                mount -n -o remount,ro /
                echo $&quot;Automatic reboot in progress.&quot;
                reboot -f
        elif [ &quot;$rc&quot; = &quot;1&quot; ]; then
                _RUN_QUOTACHECK=1
        fi
 fi
 
 # Possibly update quotas if fsck was run on /.
 LC_ALL=C grep -E &#039;[[:space:]]+/[[:space:]]+&#039; /etc/fstab | \
     awk &#039;{ print $4 }&#039; | \
     LC_ALL=C grep -q quota
 _ROOT_HAS_QUOTA=$?
 if [ X&quot;$_RUN_QUOTACHECK&quot; = X1 -a \
     &quot;$_ROOT_HAS_QUOTA&quot; = &quot;0&quot; -a \
     -x /sbin/quotacheck ]; then
        if [ -x /sbin/convertquota ]; then
            if [ -f /quota.user ]; then
                action $&quot;Converting old user quota files: &quot; \
                    /sbin/convertquota -u / &amp;&amp; rm -f /quota.user
            fi
            if [ -f /quota.group ]; then
                action $&quot;Converting old group quota files: &quot; \
                    /sbin/convertquota -g / &amp;&amp; rm -f /quota.group
            fi
        fi
        action $&quot;Checking root filesystem quotas: &quot; /sbin/quotacheck -nug /
 fi
 
 if [ -x /sbin/isapnp -a -f /etc/isapnp.conf -a ! -f /proc/isapnp ]; then
     # check for arguments passed from kernel
     if ! LC_ALL=C grep -iq nopnp /proc/cmdline &gt;/dev/null 2&gt;&amp;1 ; then
        PNP=yes
     fi
     if [ -n &quot;$PNP&quot; ]; then
        action $&quot;Setting up ISA PNP devices: &quot; /sbin/isapnp /etc/isapnp.conf
     else
        action $&quot;Skipping ISA PNP configuration at users request: &quot; /bin/true
     fi
 fi
 
 # Remount the root filesystem read-write.
 state=`awk &#039;/ \/ / &amp;&amp; ($3 !~ /rootfs/) { print $4 }&#039; /proc/mounts`
 [ &quot;$state&quot; != &quot;rw&quot; ] &amp;&amp; \
   action $&quot;Remounting root filesystem in read-write mode: &quot; mount -n -o remount,rw /
 
 # LVM initialization
 if [ -f /etc/lvmtab -a ! -e /proc/lvm ] ; then
         modprobe lvm-mod &gt;/dev/null 2&gt;&amp;1
 fi
 if [ -e /proc/lvm -a -x /sbin/vgchange -a -f /etc/lvmtab ]; then
         action $&quot;Setting up Logical Volume Management:&quot; /sbin/vgscan &amp;&amp; /sbin/vgchange -a y
 fi
 
 # Start up swapping.
 action $&quot;Activating swap partitions: &quot; swapon -a -e
 
 # Clear mtab
 &gt;/etc/mtab
 
 # Remove stale backups
 rm -f /etc/mtab~ /etc/mtab~~
 
 # Enter root, /proc and (potentially) /proc/bus/usb and devfs into mtab.
 mount -f /
 mount -f /proc
 [ -f /proc/bus/usb/devices ] &amp;&amp; mount -f -t usbdevfs usbdevfs /proc/bus/usb
 [ -e /dev/.devfsd ] &amp;&amp; mount -f -t devfs devfs /dev
 
 
 
 # The root filesystem is now read-write, so we can now log
 # via syslog() directly..
 if [ -n &quot;$IN_INITLOG&quot; ]; then
     IN_INITLOG=
 fi
 
 if ! LC_ALL=C grep -iq nomodules /proc/cmdline 2&gt;/dev/null &amp;&amp; [ -f /proc/ksyms ]; then
     USEMODULES=y
 fi
 
 # Our modutils don&#039;t support it anymore, so we might as well remove
 # the preferred link.
 rm -f /lib/modules/preferred /lib/modules/default
 if [ -x /sbin/depmod -a -n &quot;$USEMODULES&quot; ]; then
     # If they aren&#039;t using a recent sane kernel, make a link for them
     if [ ! -n &quot;`uname -r | LC_ALL=C grep -- &quot;-&quot;`&quot; ]; then
        ktag=&quot;`cat /proc/version`&quot;
        mtag=`LC_ALL=C grep -l &quot;$ktag&quot; /lib/modules/*/.rhkmvtag 2&gt; /dev/null`
        if [ -n &quot;$mtag&quot; ]; then
           mver=`echo $mtag | sed -e &#039;s,/lib/modules/,,&#039; -e &#039;s,/.rhkmvtag,,&#039; -e &#039;s,[       ].*$,,&#039;`
        fi
        if [ -n &quot;$mver&quot; ]; then
          ln -sf /lib/modules/$mver /lib/modules/default
        fi
     fi
     if [ -L /lib/modules/default ]; then
        INITLOG_ARGS= action $&quot;Finding module dependencies: &quot; depmod -A default
     else
        INITLOG_ARGS= action $&quot;Finding module dependencies: &quot; depmod -A
     fi
 fi
 
 # tweak isapnp settings if needed.
 if [ -n &quot;$PNP&quot; -a  -f /proc/isapnp -a -x /sbin/sndconfig ]; then
     /sbin/sndconfig --mungepnp &gt;/dev/null 2&gt;&amp;1
 fi
 
 # Load sound modules if and only if they need persistent DMA buffers
 if LC_ALL=C grep -q &quot;options sound dmabuf=1&quot; /etc/modules.conf 2&gt;/dev/null ; then
   RETURN=0
   alias=`/sbin/modprobe -c | awk &#039;/^alias sound / { print $3 }&#039;`
   if [ -n &quot;$alias&quot; -a &quot;$alias&quot; != &quot;off&quot; ]; then
       action $&quot;Loading sound module ($alias): &quot; modprobe sound
       RETURN=$?
   fi
   alias=`/sbin/modprobe -c | awk &#039;/^alias sound-slot-0 / { print $3 }&#039;`
   if [ -n &quot;$alias&quot; -a &quot;$alias&quot; != &quot;off&quot; ]; then
       action $&quot;Loading sound module ($alias): &quot; modprobe sound-slot-0
       RETURN=$?
   fi
 fi
 
 if [ -f /proc/sys/kernel/modprobe ]; then
    if [ -n &quot;$USEMODULES&quot; ]; then
        sysctl -w kernel.modprobe=&quot;/sbin/modprobe&quot; &gt;/dev/null 2&gt;&amp;1
        sysctl -w kernel.hotplug=&quot;/sbin/hotplug&quot; &gt;/dev/null 2&gt;&amp;1
    else
        # We used to set this to NULL, but that causes &#039;failed to exec&#039; messages&quot;
        sysctl -w kernel.modprobe=&quot;/bin/true&quot; &gt;/dev/null 2&gt;&amp;1
        sysctl -w kernel.hotplug=&quot;/bin/true&quot; &gt;/dev/null 2&gt;&amp;1
    fi
 fi
 
 # Load modules (for backward compatibility with VARs)
 if [ -f /etc/rc.modules ]; then
        /etc/rc.modules
 fi
 
 if [ -f /etc/raidtab ]; then
        # Add raid devices
        [ -f /proc/mdstat ] || modprobe md &gt;/dev/null 2&gt;&amp;1
 fi
 if [ -f /etc/raidtab -a -f /proc/mdstat ]; then
 
        echo -n $&quot;Starting up RAID devices: &quot;
 
        rc=0
 
        for i in `awk &#039;{if ($1==&quot;raiddev&quot;) print $2}&#039; /etc/raidtab`
        do
                RAIDDEV=`basename $i`
                 RAIDSTAT=`LC_ALL=C grep &quot;^$RAIDDEV : active&quot; /proc/mdstat`
                if [ -z &quot;$RAIDSTAT&quot; ]; then
                        # First scan the /etc/fstab for the &quot;noauto&quot;-flag
                        # for this device. If found, skip the initialization
                        # for it to avoid dropping to a shell on errors.
                        # If not, try raidstart...if that fails then
                        # fall back to raidadd, raidrun.  If that
                        # also fails, then we drop to a shell
                        RESULT=1
                        INFSTAB=`LC_ALL=C grep -c &quot;^$i&quot; /etc/fstab`
                        if [ $INFSTAB -eq 0 ] ; then
                            RESULT=0
                            RAIDDEV=&quot;$RAIDDEV(skipped)&quot;
                        fi
                        NOAUTO=`LC_ALL=C grep &quot;^$i&quot; /etc/fstab | LC_ALL=C grep -c &quot;noauto&quot;`
                        if [ $NOAUTO -gt 0 ]; then
                            RESULT=0
                            RAIDDEV=&quot;$RAIDDEV(skipped)&quot;
                        fi
                        if [ $RESULT -gt 0 -a -x /sbin/raidstart ]; then
                                /sbin/raidstart $i
                                RESULT=$?
                        fi
                        if [ $RESULT -gt 0 -a -x /sbin/raid0run ]; then
                                /sbin/raid0run $i
                                RESULT=$?
                        fi
                        if [ $RESULT -gt 0 -a -x /sbin/raidadd -a -x /sbin/raidrun ]; then
                                /sbin/raidadd $i
                                /sbin/raidrun $i
                                RESULT=$?
                        fi
                        if [ $RESULT -gt 0 ]; then
                                rc=1
                        fi
                        echo -n &quot;$RAIDDEV &quot;
                else
                        echo -n &quot;$RAIDDEV &quot;
                fi
        done
        echo
 
        # A non-zero return means there were problems.
        if [ $rc -gt 0 ]; then
                echo
                echo
                echo $&quot;*** An error occurred during the RAID startup&quot;
                echo $&quot;*** Dropping you to a shell; the system will reboot&quot;
                echo $&quot;*** when you leave the shell.&quot;
 
                str=$&quot;(RAID Repair)&quot;
                PS1=&quot;$str \# # &quot;; export PS1
                sulogin
 
                echo $&quot;Unmounting file systems&quot;
                umount -a
                mount -n -o remount,ro /
                echo $&quot;Automatic reboot in progress.&quot;
                reboot -f
        fi
        # LVM initialization, take 2 (it could be on top of RAID)
        if [ -e /proc/lvm -a -x /sbin/vgchange -a -f /etc/lvmtab ]; then
                action $&quot;Setting up Logical Volume Management:&quot; /sbin/vgscan &amp;&amp; /sbin/vgchange -a y
        fi
 fi
 
 if [ -x /sbin/devlabel ]; then
        /sbin/devlabel restart
 fi
 
 _RUN_QUOTACHECK=0
 # Check filesystems
 if [ -z &quot;$fastboot&quot; ]; then
         STRING=$&quot;Checking filesystems&quot;
        echo $STRING
        initlog -c &quot;fsck -T -R -A -a $fsckoptions&quot;
        rc=$?
         if [ &quot;$rc&quot; = &quot;0&quot; ]; then
                success &quot;$STRING&quot;
                echo
        elif [ &quot;$rc&quot; = &quot;1&quot; ]; then
                passed &quot;$STRING&quot;
                echo
        fi
 
        # A return of 2 or higher means there were serious problems.
        if [ $rc -gt 1 ]; then
                if [ &quot;$BOOTUP&quot; = &quot;graphical&quot; ]; then
                    chvt 1
                fi
 
                failure &quot;$STRING&quot;
                echo
                echo
                echo $&quot;*** An error occurred during the file system check.&quot;
                echo $&quot;*** Dropping you to a shell; the system will reboot&quot;
                echo $&quot;*** when you leave the shell.&quot;
 
                str=$&quot;(Repair filesystem)&quot;
                PS1=&quot;$str \# # &quot;; export PS1
                sulogin
 
                echo $&quot;Unmounting file systems&quot;
                umount -a
                mount -n -o remount,ro /
                echo $&quot;Automatic reboot in progress.&quot;
                reboot -f
        elif [ &quot;$rc&quot; = &quot;1&quot; -a -x /sbin/quotacheck ]; then
                _RUN_QUOTACHECK=1
        fi
 fi
 
 # Mount all other filesystems (except for NFS and /proc, which is already
 # mounted). Contrary to standard usage,
 # filesystems are NOT unmounted in single user mode.
 action $&quot;Mounting local filesystems: &quot; mount -a -t nonfs,smbfs,ncpfs -O no_netdev
 
 # check remaining quotas other than root
 if [ X&quot;$_RUN_QUOTACHECK&quot; = X1 -a -x /sbin/quotacheck ]; then
        if [ -x /sbin/convertquota ]; then
            # try to convert old quotas
            for mountpt in `awk &#039;$4 ~ /quota/{print $2}&#039; /etc/mtab` ; do
                if [ -f &quot;$mountpt/quota.user&quot; ]; then
                    action $&quot;Converting old user quota files: &quot; \
                    /sbin/convertquota -u $mountpt &amp;&amp; \
                        rm -f $mountpt/quota.user
                fi
                if [ -f &quot;$mountpt/quota.group&quot; ]; then
                    action $&quot;Converting old group quota files: &quot; \
                    /sbin/convertquota -g $mountpt &amp;&amp; \
                        rm -f $mountpt/quota.group
                fi
            done
        fi
        action $&quot;Checking local filesystem quotas: &quot; /sbin/quotacheck -aRnug
 fi
 
 if [ -x /sbin/quotaon ]; then
     action $&quot;Enabling local filesystem quotas: &quot; /sbin/quotaon -aug
 fi
 
 # Configure machine if necessary.
 if [ -f /.unconfigured ]; then
     if [ &quot;$BOOTUP&quot; = &quot;graphical&quot; ]; then
        chvt 1
     fi
 
     if [ -x /usr/bin/passwd ]; then
         /usr/bin/passwd root
     fi
     if [ -x /usr/sbin/netconfig ]; then
        /usr/sbin/netconfig
     fi
     if [ -x /usr/sbin/timeconfig ]; then
        /usr/sbin/timeconfig
     fi
     if [ -x /usr/sbin/kbdconfig ]; then
        /usr/sbin/kbdconfig
     fi
     if [ -x /usr/sbin/authconfig ]; then
        /usr/sbin/authconfig --nostart
     fi
     if [ -x /usr/sbin/ntsysv ]; then
        /usr/sbin/ntsysv --level 35
     fi
 
     # Reread in network configuration data.
     if [ -f /etc/sysconfig/network ]; then
        . /etc/sysconfig/network
 
        # Reset the hostname.
        action $&quot;Resetting hostname ${HOSTNAME}: &quot; hostname ${HOSTNAME}
     fi
 
     rm -f /.unconfigured
 fi
 
 # Clean out /.
 rm -f /fastboot /fsckoptions /forcefsck /.autofsck /halt /poweroff
 
 # Do we need (w|u)tmpx files? We don&#039;t set them up, but the sysadmin might...
 _NEED_XFILES=
 [ -f /var/run/utmpx -o -f /var/log/wtmpx ] &amp;&amp; _NEED_XFILES=1
 
 # Clean up /var.  I&#039;d use find, but /usr may not be mounted.
 for afile in /var/lock/* /var/run/* ; do
        if [ -d &quot;$afile&quot; ]; then
           case &quot;`basename $afile`&quot; in
                news|mon)       ;;
                sudo)
                                rm -f $afile/*/* ;;
                *)              rm -f $afile/* ;;
           esac
        else
           rm -f $afile
        fi
 done
 rm -f /var/lib/rpm/__db*
 
 # Reset pam_console permissions
 [ -x /sbin/pam_console_apply ] &amp;&amp; /sbin/pam_console_apply -r
 
 {
 # Clean up utmp/wtmp
 &gt;/var/run/utmp
 touch /var/log/wtmp
 chgrp utmp /var/run/utmp /var/log/wtmp
 chmod 0664 /var/run/utmp /var/log/wtmp
 if [ -n &quot;$_NEED_XFILES&quot; ]; then
   &gt;/var/run/utmpx
   touch /var/log/wtmpx
   chgrp utmp /var/run/utmpx /var/log/wtmpx
   chmod 0664 /var/run/utmpx /var/log/wtmpx
 fi
 
 # Delete X locks
 rm -f /tmp/.X*-lock
 
 # Delete VNC &amp; X locks
 rm -rf /tmp/.X*-unix
 
 # Delete ICE locks
 rm -rf /tmp/.ICE-unix
 
 # Delete Postgres sockets
 rm -f /tmp/.s.PGSQL.*
 
 # Now turn on swap in case we swap to files.
 swapon -a
 action $&quot;Enabling swap space: &quot; /bin/true
 
 # Initialize the serial ports.
 if [ -f /etc/rc.serial ]; then
        . /etc/rc.serial
 fi
 
 # If a SCSI tape has been detected, load the st module unconditionally
 # since many SCSI tapes don&#039;t deal well with st being loaded and unloaded
 if [ -f /proc/scsi/scsi ] &amp;&amp; LC_ALL=C grep -q &#039;Type:   Sequential-Access&#039; /proc/scsi/scsi 2&gt;/dev/null ; then
        if LC_ALL=C grep -qv &#039; 9 st&#039; /proc/devices &amp;&amp; [ -n &quot;$USEMODULES&quot; ]; then
                modprobe st &gt;/dev/null 2&gt;&amp;1
        fi
 fi
 
 # Load usb storage here, to match most other things
 if [ -n &quot;$needusbstorage&quot; ]; then
        modprobe usb-storage &gt;/dev/null 2&gt;&amp;1
 fi
 
 # Ooh, firewire too.
 if ! LC_ALL=C grep -iq &quot;nofirewire&quot; /proc/cmdline 2&gt;/dev/null ; then
    aliases=`/sbin/modprobe -c | awk &#039;/^alias ieee1394-controller/ { print $3 }&#039;`
    if [ -n &quot;$aliases&quot; -a &quot;$aliases&quot; != &quot;off&quot; ]; then
       for alias in $aliases ; do
        [ &quot;$alias&quot; != &quot;off&quot; ] &amp;&amp; action $&quot;Initializing firewire controller ($alias): &quot; modprobe $alias
       done
       LC_ALL=C grep -q &quot;SBP2&quot; /proc/bus/ieee1394/devices 2&gt;/dev/null &amp;&amp; modprobe sbp2 &gt;/dev/null 2&gt;&amp;1
    fi
 fi
 
 # If they asked for ide-scsi, load it
 if LC_ALL=C grep -q &quot;ide-scsi&quot; /proc/cmdline ; then
        modprobe ide-cd &gt;/dev/null 2&gt;&amp;1
        modprobe ide-scsi &gt;/dev/null 2&gt;&amp;1
 fi
 
 # Turn on harddisk optimization
 # There is only one file /etc/sysconfig/harddisks for all disks
 # after installing the hdparm-RPM. If you need different hdparm parameters
 # for each of your disks, copy /etc/sysconfig/harddisks to
 # /etc/sysconfig/harddiskhda (hdb, hdc...) and modify it.
 # Each disk which has no special parameters will use the defaults.
 # Each non-disk which has no special parameters will be ignored.
 #
 
 disk[0]=s;
 disk[1]=hda;  disk[2]=hdb;  disk[3]=hdc;  disk[4]=hdd;
 disk[5]=hde;  disk[6]=hdf;  disk[7]=hdg;  disk[8]=hdh;
 disk[9]=hdi;  disk[10]=hdj; disk[11]=hdk; disk[12]=hdl;
 disk[13]=hdm; disk[14]=hdn; disk[15]=hdo; disk[16]=hdp;
 disk[17]=hdq; disk[18]=hdr; disk[19]=hds; disk[20]=hdt;
 
 
 if [ -x /sbin/hdparm ]; then
    for device in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do
        unset MULTIPLE_IO USE_DMA EIDE_32BIT LOOKAHEAD EXTRA_PARAMS
         if [ -f /etc/sysconfig/harddisk${disk[$device]} ]; then
                 . /etc/sysconfig/harddisk${disk[$device]}
                 HDFLAGS[$device]=
                 if [ -n &quot;$MULTIPLE_IO&quot; ]; then
                     HDFLAGS[$device]=&quot;-q -m$MULTIPLE_IO&quot;
                 fi
                 if [ -n &quot;$USE_DMA&quot; ]; then
                     HDFLAGS[$device]=&quot;${HDFLAGS[$device]} -q -d$USE_DMA&quot;
                 fi
                 if [ -n &quot;$EIDE_32BIT&quot; ]; then
                     HDFLAGS[$device]=&quot;${HDFLAGS[$device]} -q -c$EIDE_32BIT&quot;
                 fi
                 if [ -n &quot;$LOOKAHEAD&quot; ]; then
                     HDFLAGS[$device]=&quot;${HDFLAGS[$device]} -q -A$LOOKAHEAD&quot;
                 fi
                 if [ -n &quot;$EXTRA_PARAMS&quot; ]; then
                     HDFLAGS[$device]=&quot;${HDFLAGS[$device]} $EXTRA_PARAMS&quot;
                 fi
         else
                 HDFLAGS[$device]=&quot;${HDFLAGS[0]}&quot;
         fi
         if [ -e &quot;/proc/ide/${disk[$device]}/media&quot; ]; then
              hdmedia=`cat /proc/ide/${disk[$device]}/media`
              if [ &quot;$hdmedia&quot; = &quot;disk&quot; -o -f &quot;/etc/sysconfig/harddisk${disk[$device]}&quot; ]; then
                   if [ -n &quot;${HDFLAGS[$device]}&quot; ]; then
                       action $&quot;Setting hard drive parameters for ${disk[$device]}: &quot;  /sbin/hdparm ${HDFLAGS[$device]} /dev/${disk[$device]}
                   fi
              fi
         fi
    done
 fi
 
 # Boot time profiles. Yes, this should be somewhere else.
 if LC_ALL=C grep -q &quot;netprofile=&quot; /proc/cmdline ; then
     cmdline=`cat /proc/cmdline`
     for arg in $cmdline ; do
        if [ &quot;${arg##netprofile=}&quot; != &quot;${arg}&quot; ]; then
           [ -x /usr/sbin/redhat-config-network-cmd ] &amp;&amp;
            /usr/sbin/redhat-config-network-cmd --profile ${arg##netprofile=}
        fi
     done
 fi
 
 # Generate a header that defines the boot kernel.
 /sbin/mkkerneldoth
 
 # Adjust symlinks as necessary in /boot to keep system services from
 # spewing messages about mismatched System maps and so on.
 if [ -L /boot/System.map -a -r /boot/System.map-`uname -r` -a \
        ! /boot/System.map -ef /boot/System.map-`uname -r` ]; then
        ln -s -f System.map-`uname -r` /boot/System.map
 fi
 if [ ! -e /boot/System.map -a -r /boot/System.map-`uname -r` ]; then
        ln -s -f System.map-`uname -r` /boot/System.map
 fi
 
 # The special Red Hat kernel library symlink must point to the right library
 # We need to deal with cases where there is no library, and we need to
 # deal with any version numbers that show up.
 shopt -s nullglob
 for library in /lib/kernel/$(uname -r)/libredhat-kernel.so* ; do
        ln -f $library /lib/
        ldconfig -n /lib/
 done
 shopt -u nullglob
 
 # Now that we have all of our basic modules loaded and the kernel going,
 # let&#039;s dump the syslog ring somewhere so we can find it later
 dmesg -s 131072 &gt; /var/log/dmesg
 # Also keep kernel symbols around in case we need them for debugging
 i=5
 while [ $i -ge 0 ]; do
        if [ -f /var/log/ksyms.$i ]; then
                mv /var/log/ksyms.$i /var/log/ksyms.$(($i+1))
        fi
        i=$(($i-1))
 done
 /sbin/mkkerneldoth
 
 # Adjust symlinks as necessary in /boot to keep system services from
 # spewing messages about mismatched System maps and so on.
 if [ -L /boot/System.map -a -r /boot/System.map-`uname -r` -a \
        ! /boot/System.map -ef /boot/System.map-`uname -r` ]; then
        ln -s -f System.map-`uname -r` /boot/System.map
 fi
 if [ ! -e /boot/System.map -a -r /boot/System.map-`uname -r` ]; then
        ln -s -f System.map-`uname -r` /boot/System.map
 fi
 
 # The special Red Hat kernel library symlink must point to the right library
 # We need to deal with cases where there is no library, and we need to
 # deal with any version numbers that show up.
 shopt -s nullglob
 for library in /lib/kernel/$(uname -r)/libredhat-kernel.so* ; do
        ln -f $library /lib/
        ldconfig -n /lib/
 done
 shopt -u nullglob
 
 # Now that we have all of our basic modules loaded and the kernel going,
 # let&#039;s dump the syslog ring somewhere so we can find it later
 dmesg -s 131072 &gt; /var/log/dmesg
 # Also keep kernel symbols around in case we need them for debugging
 i=5
 while [ $i -ge 0 ]; do
        if [ -f /var/log/ksyms.$i ]; then
                mv /var/log/ksyms.$i /var/log/ksyms.$(($i+1))
        fi
        i=$(($i-1))
 done
 (/bin/date;
  /bin/uname -a;
  /bin/cat /proc/cpuinfo;
  [ -r /proc/modules ] &amp;&amp; /bin/cat /proc/modules;
  [ -r /proc/ksyms ] &amp;&amp; /bin/cat /proc/ksyms) &gt;/var/log/ksyms.0
 # create the crash indicator flag to warn on crashes, offer fsck with timeout
 touch /.autofsck
 sleep 1
 kill -TERM `/sbin/pidof getkey` &gt;/dev/null 2&gt;&amp;1
 } &amp;
 if [ &quot;$PROMPT&quot; != &quot;no&quot; ]; then
    /sbin/getkey i &amp;&amp; touch /var/run/confirm
 fi
 wait    </description>
    <dc:date>2007-12-16T15:40:51+09:00</dc:date>
    <utime>1197787251</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/15.html">
    <title>Redhat Linux 9/etc/inittab</title>
    <link>https://w.atwiki.jp/fuzy/pages/15.html</link>
    <description>
       #
 # inittab       This file describes how the INIT process should set up
 #               the system in a certain run-level.
 #
 # Author:       Miquel van Smoorenburg, &lt;miquels@drinkel.nl.mugnet.org&gt;
 #               Modified for RHS Linux by Marc Ewing and Donnie Barnes
 #
 
 # Default runlevel. The runlevels used by RHS are:
 #   0 - halt (Do NOT set initdefault to this)
 #   1 - Single user mode
 #   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
 #   3 - Full multiuser mode
 #   4 - unused
 #   5 - X11
 #   6 - reboot (Do NOT set initdefault to this)
 #
 id:3:initdefault:
 
 # System initialization.
 si::sysinit:/etc/rc.d/rc.sysinit
 
 l0:0:wait:/etc/rc.d/rc 0
 l1:1:wait:/etc/rc.d/rc 1
 l2:2:wait:/etc/rc.d/rc 2
 l3:3:wait:/etc/rc.d/rc 3
 l4:4:wait:/etc/rc.d/rc 4
 l5:5:wait:/etc/rc.d/rc 5
 l6:6:wait:/etc/rc.d/rc 6
 
 # Trap CTRL-ALT-DELETE
 ca::ctrlaltdel:/sbin/shutdown -t3 -r now
 
 # When our UPS tells us power has failed, assume we have a few minutes
 # of power left.  Schedule a shutdown for 2 minutes from now.
 # This does, of course, assume you have powerd installed and your
 # UPS connected and working correctly.
 pf::powerfail:/sbin/shutdown -f -h +2 &quot;Power Failure; System Shutting Down&quot;
 
 # If power was restored before the shutdown kicked in, cancel it.
 pr:12345:powerokwait:/sbin/shutdown -c &quot;Power Restored; Shutdown Cancelled&quot;
 
 
 # Run gettys in standard runlevels
 1:2345:respawn:/sbin/mingetty tty1
 2:2345:respawn:/sbin/mingetty tty2
 3:2345:respawn:/sbin/mingetty tty3
 4:2345:respawn:/sbin/mingetty tty4
 5:2345:respawn:/sbin/mingetty tty5
 6:2345:respawn:/sbin/mingetty tty6
 
 # Run xdm in runlevel 5
 x:5:respawn:/etc/X11/prefdm -nodaemon    </description>
    <dc:date>2007-12-16T15:39:28+09:00</dc:date>
    <utime>1197787168</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/14.html">
    <title>Redhat Linux 9/initrd-2.4.20-8/linuxrc</title>
    <link>https://w.atwiki.jp/fuzy/pages/14.html</link>
    <description>
       #!/bin/nash
 
 echo &quot;Loading jbd.o module&quot;
 insmod /lib/jbd.o
 echo &quot;Loading ext3.o module&quot;
 insmod /lib/ext3.o
 echo Mounting /proc filesystem
 mount -t proc /proc /proc
 echo Creating block devices
 mkdevices /dev
 echo Creating root device
 mkrootdev /dev/root
 echo 0x0100 &gt; /proc/sys/kernel/real-root-dev
 echo Mounting root filesystem
 mount -o defaults --ro -t ext3 /dev/root /sysroot
 pivot_root /sysroot /sysroot/initrd
 umount /initrd/proc    </description>
    <dc:date>2007-12-16T15:35:52+09:00</dc:date>
    <utime>1197786952</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/11.html">
    <title>Redhat Linux 9/initrd-2.4.20-8</title>
    <link>https://w.atwiki.jp/fuzy/pages/11.html</link>
    <description>
       .
 ./etc
 ./bin
 ./bin/insmod
 ./bin/modprobe
 ./bin/nash
 ./lib
 ./lib/jbd.o
 ./lib/ext3.o
 ./proc
 ./dev
 ./dev/tty4
 ./dev/tty1
 ./dev/tty3
 ./dev/ram
 ./dev/tty2
 ./dev/systty
 ./dev/null
 ./dev/console
 ./loopfs
 ./sysroot
 ./linuxrc
 ./sbin

2.4はinitがないのか?    </description>
    <dc:date>2007-12-16T15:34:34+09:00</dc:date>
    <utime>1197786874</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/13.html">
    <title>Redhat Linux 9/initrd-2.4.20-8/dev</title>
    <link>https://w.atwiki.jp/fuzy/pages/13.html</link>
    <description>
       crw-r--r-- 5, 1 console
 crw-r--r-- 1, 3 null
 brw-r--r-- 1, 1 ram
 crw-r--r-- 4, 0 systty
 crw-r--r-- 4, 1 tty1
 crw-r--r-- 4, 2 tty2
 crw-r--r-- 4, 3 tty3
 crw-r--r-- 4, 4 tty4    </description>
    <dc:date>2007-12-16T15:33:55+09:00</dc:date>
    <utime>1197786835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/fuzy/pages/1.html</link>
    <description>
      **@wikiへようこそ
-ウィキはみんなで気軽にホームページ編集できるツールです。
-このページは自由に編集することができます。
-メールで送られてきたパスワードを用いてログインすることで、各種変更（サイト名、トップページ、メンバー管理、サイドページ、デザイン、ページ管理、等）することができます


**まずはこちらをご覧ください。
-[[@wikiの基本操作&gt;http://atwiki.jp/guide/category2.html]]
-[[用途別のオススメ機能紹介&gt;http://atwiki.jp/guide/category22.html]]
-[[@wikiの設定/管理&gt;http://atwiki.jp/guide/category6.html]]

**おすすめ機能
-[[気になるニュースをチェック&gt;http://atwiki.jp/guide/17_174_ja.html]]
-[[関連するブログ一覧を表示&gt;http://atwiki.jp/guide/17_161_ja.html]]

**その他にもいろいろな機能満載！！
-[[@wikiプラグイン&gt;http://atwiki.jp/guide/category17.html]]
-[[@wiki便利ツール&gt;http://atwiki.jp/guide/category32.html]]
-[[@wiki構文&gt;http://atwiki.jp/guide/category16.html]]
-[[@wikiプラグイン一覧&gt;http://www1.atwiki.jp/guide/pages/264.html]]

**バグ・不具合を見つけたら？ 要望がある場合は？
お手数ですが、メールでお問い合わせください。


**分からないことは？
-[[@wiki ご利用ガイド&gt;http://atwiki.jp/guide/]]
-[[よくある質問&gt;http://atwiki.jp/guide/category1.html]]
-[[@wiki更新情報&gt;http://www1.atwiki.jp/guide/pages/264.html]]
-[[@wikiへお問い合わせ&gt;http://atwiki.jp/guide/contact.html]]
等をご活用ください

**その他お勧めサービスについて
-[[フォーラム型の無料掲示板は@bbをご利用ください&gt;&gt;http://atbb.jp/]]
-[[2ch型の無料掲示板は@chsをご利用ください&gt;&gt;http://atchs.jp/]]
-[[お絵かき掲示板は@paintをご利用ください&gt;&gt;http://atpaint.jp/]]
-[[その他の無料掲示板は@bbsをご利用ください&gt;&gt;http://atbbs.jp/]]
-[[無料ブログ作成は@WORDをご利用ください&gt;&gt;http://atword.jp/]]
-[[CGIゲームが設置できる無料ホームページ作成は@PAGESをご利用ください&gt;&gt;http://atpages.jp/]]

    </description>
    <dc:date>2007-12-16T14:04:03+09:00</dc:date>
    <utime>1197781443</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/fuzy/pages/2.html</link>
    <description>
      **メニュー
-[[トップページ]]
-[[プラグイン紹介&gt;プラグイン]]
-[[メニュー]]
-[[メニュー2]]

----

**リンク
-[[@wiki&gt;&gt;http://atwiki.jp]]
-[[@wikiご利用ガイド&gt;&gt;http://atwiki.jp/guide/]]

**他のサービス
-[[無料ホームページ作成&gt;&gt;http://atpages.jp]]
-[[無料ブログ作成&gt;&gt;http://atword.jp]]
-[[無料掲示板レンタル&gt;&gt;http://atbbs.jp]]
-[[2ch型掲示板レンタル&gt;&gt;http://atchs.jp]]
-[[お絵かきレンタル&gt;&gt;http://atpaint.jp/]]

// リンクを張るには &quot;[&quot; 2つで文字列を括ります。
// &quot;&gt;&quot; の左側に文字、右側にURLを記述するとリンクになります


**更新履歴
#recent(20)
    </description>
    <dc:date>2007-12-16T14:04:03+09:00</dc:date>
    <utime>1197781443</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/3.html">
    <title>メニュー2</title>
    <link>https://w.atwiki.jp/fuzy/pages/3.html</link>
    <description>
      **更新履歴
#recent(20)
    </description>
    <dc:date>2007-12-16T14:04:03+09:00</dc:date>
    <utime>1197781443</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/fuzy/pages/4.html">
    <title>プラグイン/ニュース</title>
    <link>https://w.atwiki.jp/fuzy/pages/4.html</link>
    <description>
      * ニュース
@wikiのwikiモードでは
 #news(興味のある単語)
と入力することで、あるキーワードに関連するニュース一覧を表示することができます
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_174_ja.html


-----


たとえば、#news(wiki)と入力すると以下のように表示されます。


#news(wiki)
    </description>
    <dc:date>2007-12-16T14:04:03+09:00</dc:date>
    <utime>1197781443</utime>
  </item>
  </rdf:RDF>
