<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technology, Computer, Network and Games Cheat &#187; Server</title>
	<atom:link href="http://www.gamescheat.ca/tag/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gamescheat.ca</link>
	<description>Day to day technical how to - by Andrew Lin</description>
	<lastBuildDate>Thu, 26 May 2011 18:48:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Nslookup resolves address but ping is unable to resolve hostname on Unix server</title>
		<link>http://www.gamescheat.ca/2010/11/nslookup-resolves-addpress-but-ping-is-unable-to-resolve-hostname-on-unix-server/</link>
		<comments>http://www.gamescheat.ca/2010/11/nslookup-resolves-addpress-but-ping-is-unable-to-resolve-hostname-on-unix-server/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 14:42:58 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aix]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[SUN]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=844</guid>
		<description><![CDATA[I came across this issue on my newly built Solaris 10 server. I was able to ping a remote machine by Ip address, but not by its hostname. This indicated that I had the correct route and gateway. Using nslookup and dig I verified that the DNS servers were resolving the hostname to IP address. [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this issue on my newly built Solaris 10 server.  I was able to ping a remote machine by Ip address, but not by its hostname. This indicated that I had the correct route and gateway. Using nslookup and dig I verified that the DNS servers were resolving the hostname to IP address.  I confirmed that the file /etc/resolv.conf had the correct syntax for search domain-name.com.</p>
<p>Here is what my /etc/resolv.conf looks like, the two DNS servers are defined correctly as it the search domain.<br />
<strong>domain andrewlin.com<br />
namesserver 10.10.10.11<br />
namesserver 10.10.11.13<br />
search andrewlin.com</strong><br />
The gateway was defined in /etc/defaultrouter.<br />
<strong>10.10.0.1</strong><br />
It seems that ping did not know how to resolve an address.  I was also not able to surf the internet with the Firefox browser in the Sun Java Desktop System for Soalris.  All symptoms indicated that the nsswitch.conf did not have the correct environment defined.  The /etc/nsswitch.conf file defines which services are to used to retrieve information such as hostnames, password files, and group files.  So in this case for the command ping and firefox which wants to resolve and address, it will check the nsswitch.conf file to see what services to use.</p>
<p>Below are the lines I changed in /etc/nsswitch.conf, by adding dns to the end of each lines.<br />
<strong>hosts: files dns<br />
ipnodes: files dns</strong><br />
I am now able to ping and surf the internet without any issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2010/11/nslookup-resolves-addpress-but-ping-is-unable-to-resolve-hostname-on-unix-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Booting up Solaris 10 from a SAN replicated LUN on a different Sun SPARC server</title>
		<link>http://www.gamescheat.ca/2010/07/booting-up-solaris-10-from-a-san-replicated-lun-on-a-different-sun-sparc-server/</link>
		<comments>http://www.gamescheat.ca/2010/07/booting-up-solaris-10-from-a-san-replicated-lun-on-a-different-sun-sparc-server/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 20:23:40 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[SUN]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=815</guid>
		<description><![CDATA[The quickest way to recover from a total disaster is to have some sort of replication implemented. There are two different methods of real-time replication, hardware and software. My experiences with software replication such as Symantec Veritas Volume replicator for AIX was not pleasing. It required constant maintenance and troubleshooting. The best is hardware replication [...]]]></description>
			<content:encoded><![CDATA[<p>The quickest way to recover from a total disaster is to have some sort of replication implemented.  There are two different methods of  real-time replication, hardware and software.  My experiences with software replication such as Symantec Veritas Volume replicator for AIX was  not pleasing.  It required constant maintenance and troubleshooting. The best is hardware replication if you can afford it.  A lot of  organizations pick software replication as it generally cost a lot less up front, but the cost of maintenance eventually adds up.</p>
<p>I will explain how to recover a Solaris 10 server from hardware replicated SAN disk.  It took me sometime to figure out how to boot up from  the replicated SAN LUN (disk), and many more hours to understand why the steps I applied works.</p>
<p>In this example I have a SUN SPARC M3000 server with two Qlogic fiber channel cards (HBA) installed in the PCI solts.  The HBAs were already  configured to connect to the SAN disk (LUN).  This LUN contained the replicated copy of a production Slaris 10 server.  The production server had two ZFS pool residing in a single LUN.</p>
<p>Using the Solaris 10 installation CD boot up the Sparc server into single user mode. </p>
<blockquote><p>boot cdrom -s</p></blockquote>
<p>The first thing you need to do is to see if the HBAs are working.  The connected status indictes that communication between the server and  switch is working.  There are two HBAs installed for redundancy, both connected to the same LUN.</p>
<blockquote><p># luxadm -e port<br />
/devices/pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0:devctl CONNECTED<br />
/devices/pci@1,700000/pci@0/pci@0/SUNW,qlc@0/fp@0,0:devctl CONNECTED</p></blockquote>
<p>Now you need to find out if the SAN disk is visible from the server. Even though both HBAs are connected to the same SAN disk, you will see  two separate SAN disks in the results below.  It just means there are two paths to the SAN.</p>
<blockquote><p># luxadm probe<br />
No Network Array enclosures found in /dev/es</p>
<p>Found Fibre Channel device(s):<br />
  Node WWN:50060e80058c7b10  Device Type:Disk device<br />
    Logical Path:/dev/rdsk/c1t50060E80058C7B10d1s2<br />
  Node WWN:50060e80058c7b00  Device Type:Disk device<br />
    Logical Path:/dev/rdsk/c2t50060E80058C7B00d1s2</p></blockquote>
<p>In the above example the first LUN is c1t50060E80058C7B10d1s2. This is the logical device name which is a symbolic link to the physical  device name stored in the /devices directory. Logical device names contain the controller number(c2), target number (t50060E80058C7B10), disk number (d1), and slice number (s2).</p>
<p>The next step is to find out how the disk is partitioned, the format command will give you that information. You need this information to  understand how to boot up the disk.</p>
<blockquote><p># format<br />
Searching for disks&#8230;done</p>
<p>AVAILABLE DISK SELECTIONS:<br />
0. c1t50060E80058C7B10d1 <HITACHI-OPEN-V-SUN-6006 cyl 65533 alt 2 hd 15 sec<br />
1066>/pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b10,1</p>
<p>1. c2t50060E80058C7B00d1 <HITACHI-OPEN-V-SUN-6006 cyl 65533 alt 2 hd 15 sec<br />
1066>/pci@1,700000/pci@0/pci@0/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b00,1</p></blockquote>
<p>Select the first disk 0.</p>
<blockquote><p>Specify disk (enter its number): 0<br />
selecting c1t50060E80058C7B10d1<br />
[disk formatted]</p>
<p>FORMAT MENU:<br />
        disk       &#8211; select a disk<br />
        type       &#8211; select (define) a disk type<br />
        partition  &#8211; select (define) a partition table<br />
        current    &#8211; describe the current disk<br />
        format     &#8211; format and analyze the disk<br />
        repair     &#8211; repair a defective sector<br />
        label      &#8211; write label to the disk<br />
        analyze    &#8211; surface analysis<br />
        defect     &#8211; defect list management<br />
        backup     &#8211; search for backup labels<br />
        verify     &#8211; read and display labels<br />
        save       &#8211; save new disk/partition definitions<br />
        inquiry    &#8211; show vendor, product and revision<br />
        volname    &#8211; set 8-character volume name<br />
        !<cmd>     &#8211; execute <cmd>, then return<br />
        quit</p></blockquote>
<p>Display the labels and slices (partitions).  In Solaris each slice is treated as a separate physical disk.  In the below example you can tell that the disk is labeled as VTOC (Volume Table of Contents) because you can see the cylinders.  VTOC is also known as SMI label.  If the disk was labeled with EFI (Extensible Firmware Interface), then you would see sectors instead of cylinders.  Partition 0 (slice 0) holds the  operating system files, the boot disk.  Please note that you cannot boot from a disk with EFI label.  Slice 2 is the entire physical disk  because it contains all cylinders, 0 &#8211; 65532.</p>
<blockquote><p>format> verify</p>
<p>Primary label contents:</p>
<p>Volume name = <<br />
ascii name  = <HITACHI-OPEN-V-SUN-6006 cyl 65533 alt 2 hd 15 sec 1066><br />
pcyl        = 65535<br />
ncyl        = 65533<br />
acyl        =    2<br />
nhead       =   15<br />
nsect       = 1066<br />
Part      Tag    Flag     Cylinders         Size            Blocks<br />
  0       root    wm       0 &#8211;  3356       25.60GB    (3357/0/0)    53678430<br />
  1 unassigned    wm       0                0         (0/0/0)              0<br />
  2     backup    wm       0 &#8211; 65532      499.66GB    (65533/0/0) 1047872670<br />
  3 unassigned    wm       0                0         (0/0/0)              0<br />
  4 unassigned    wm       0                0         (0/0/0)              0<br />
  5 unassigned    wm       0                0         (0/0/0)              0<br />
  6 unassigned    wm       0                0         (0/0/0)              0<br />
  7 unassigned    wm    3357 &#8211; 65532      474.07GB    (62176/0/0)  994194240
    </p></blockquote>
<p>Here is what we know so far, we know that the disk name is c1t50060E80058C7B10d1. Slice 0 on this disk contains the boot files.  The physical path for this disk is /pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b10,1.  Now we need to find out the physical path for Slice 0.</p>
<p>I know that the disk contains ZFS filesystems because it is a replica of the production disk.  When a ZFS filesystem is moved to a different  SPARC server it must first be imported because the hostid is different.</p>
<p>List the ZFS pool contained on the disk using the zpool import command.  There are two ZFS pools in the below example, epool and rpool.  Take a note of the status and action.</p>
<blockquote><p># zpool import<br />
  pool: epool<br />
    id: 16865366839830765202<br />
 state: ONLINE<br />
status: The pool was last accessed by another system.<br />
action: The pool can be imported using its name or numeric identifier and the &#8216;-f&#8217; flag.<br />
   see: http://www.sun.com/msg/ZFS-8000-EY<br />
config:</p>
<p>        epool                      ONLINE<br />
          c2t50060E80058C7B00d1s7  ONLINE</p>
<p>  pool: rpool<br />
    id: 10594898920105832331<br />
 state: ONLINE<br />
status: The pool was last accessed by another system.<br />
action: The pool can be imported using its name or numeric identifier and the &#8216;-f&#8217; flag.<br />
   see: http://www.sun.com/msg/ZFS-8000-EY<br />
config:</p>
<p>        rpool                      ONLINE<br />
          c2t50060E80058C7B00d1s0  ONLINE</p></blockquote>
<p>Import the pool with the zpool import command.  The options -a will import all the ZFS pools it can find, the -f option will force the  import.  If you do not specify the force option, then the import may fail with the error &#8220;cannot import &#8216;rpool&#8217;: pool may be in use from other system, it was last accessed by server name (hostid: 123456)&#8221;.  Ignore the error message about failed to create mountpoint.</p>
<blockquote><p># zpool import -af<br />
cannot mount &#8216;/epool&#8217;: failed to create mountpoint<br />
cannot mount &#8216;/rpool&#8217;: failed to create mountpoint</p></blockquote>
<p>List the imported ZFS pools.</p>
<blockquote><p># zpool list<br />
NAME    SIZE   USED  AVAIL    CAP  HEALTH  ALTROOT<br />
epool   472G   260G   212G    55%  ONLINE  -<br />
rpool  25.5G  5.75G  19.8G    22%  ONLINE  -</p></blockquote>
<p>List the ZFS filesystems. In the example below notice the mountpoint / is mounted on the zfs filesystem rpool/ROOT/zfsboot.  This is the boot partition, it resides in rpool.</p>
<blockquote><p># zfs list<br />
NAME                                     USED  AVAIL  REFER  MOUNTPOINT<br />
epool                                    260G   205G    21K  /epool<br />
rpool                                   7.74G  17.4G    99K  /rpool<br />
rpool/ROOT                              4.74G  17.4G    21K  legacy<br />
rpool/ROOT/zfsboot                      4.74G  17.4G  4.48G  /<br />
rpool/ROOT/zfsboot/var                   139M  17.4G   105M  /var<br />
rpool/dump                              1.00G  17.4G  1.00G  -<br />
rpool/swap                              2.00G  19.4G    16K  -</p></blockquote>
<p>Change the mountpoint for rpoo/ROOT/zfsboot to /mnt so you can mount it to read the contents.</p>
<blockquote><p># zfs set mountpoint=/mnt rpool/ROOT/zfsboot</p></blockquote>
<p>Confirm that the mountpoint was changed.</p>
<blockquote><p># zfs list<br />
NAME                                     USED  AVAIL  REFER  MOUNTPOINT<br />
epool                                    260G   205G    21K  /epool<br />
rpool                                   7.74G  17.4G    99K  /rpool<br />
rpool/ROOT                              4.74G  17.4G    21K  legacy<br />
rpool/ROOT/zfsboot                      4.74G  17.4G  4.48G  /mnt<br />
rpool/ROOT/zfsboot/var                   139M  17.4G   105M  /mnt/var<br />
rpool/dump                              1.00G  17.4G  1.00G  -<br />
rpool/swap                              2.00G  19.4G    16K  -
           </p></blockquote>
<p>Now mount rpool/ROOT/zfsboot.</p>
<blockquote><p># zfs mount rpool/ROOT/zfsboot</p></blockquote>
<p>List the logical disks.</p>
<blockquote><p># cd /dev/dsk<br />
# ls<br />
c1t50060E80058C7B10d1s0  c2t50060E80058C7B00d1s0<br />
c1t50060E80058C7B10d1s1  c2t50060E80058C7B00d1s1<br />
c1t50060E80058C7B10d1s2  c2t50060E80058C7B00d1s2<br />
c1t50060E80058C7B10d1s3  c2t50060E80058C7B00d1s3<br />
c1t50060E80058C7B10d1s4  c2t50060E80058C7B00d1s4<br />
c1t50060E80058C7B10d1s5  c2t50060E80058C7B00d1s5<br />
c1t50060E80058C7B10d1s6  c2t50060E80058C7B00d1s6<br />
c1t50060E80058C7B10d1s7  c2t50060E80058C7B00d1s7</p></blockquote>
<p>As stated earlier the physical path for the disk we are looking for is /pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b10,1.   The boot slice is 0.  We can derive from the physical path that the disk name is 50060e80058c7b10.  We also know from the output of the format command that the physical disk 50060e80058c7b10 maps to the logical disk c1t50060E80058C7B10d1.  Therefore we can derive that the  logical boot disk is c1t50060E80058C7B10d1s0.</p>
<p>Now find out what physical path c1t50060E80058C7B10d1s0 is a symbolic link for and that is your complete boot path.  In the below example the boot path starts at the first slash (/) right after /devices. It is /pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b10,1:a.  You need to replace ssd@ with disk@ when entering the path into EEPROM.</p>
<blockquote><p># ls -l c1t50060E80058C7B10d1s0<br />
lrwxrwxrwx   1 root     root          82 Jul  5 10:21 c1t50060E80058C7B10d1s0 -><br />
 ../../devices/pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/ssd@w50060e80058c7b10,1:a</p></blockquote>
<p>If you have more than one ZFS pool the non root pool may not get mounted upon booting up the server, as in this example.  You may get the  below error.</p>
<blockquote><p>SUNW-MSG-ID: ZFS-8000-D3, TYPE: Fault, VER: 1, SEVERITY: Major<br />
EVENT-TIME: Mon Jul  5 11:54:14 EDT 2010<br />
PLATFORM: SUNW,SPARC-Enterprise, CSN: PX654321, HOSTNAME: Andrew-Lin<br />
SOURCE: zfs-diagnosis, REV: 1.0<br />
EVENT-ID: 33e5a9f1-49ac-6ebc-f2a9-dff25dea6b86<br />
DESC: A ZFS device failed.  Refer to http://sun.com/msg/ZFS-8000-D3 for more information.<br />
AUTO-RESPONSE: No automated response will occur.<br />
IMPACT: Fault tolerance of the pool may be compromised.<br />
REC-ACTION: Run &#8216;zpool status -x&#8217; and replace the bad device.</p>
<p>http://sun.com/msg/ZFS-8000-D3fameserverq9{root}: zpool status -x<br />
  pool: epool<br />
 state: UNAVAIL<br />
status: One or more devices could not be opened.  There are insufficient<br />
        replicas for the pool to continue functioning.<br />
action: Attach the missing device and online it using &#8216;zpool online&#8217;.<br />
   see: http://www.sun.com/msg/ZFS-8000-3C<br />
 scrub: none requested<br />
config:</p>
<p>        NAME                                       STATE     READ WRITE CKSUM<br />
        epool                                      UNAVAIL      0     0     0  insufficient replicas<br />
          c3t60060E8005652C000000652C00002100d0s7  UNAVAIL      0     0     0  cannot open</p></blockquote>
<p>The above error is caused by the zpool.cache file.  This file contains the old paths of the disks from the previous server. The default  behavior of Solaris 10 is to read the path from the zpool.cache file to speed up the boot sequence.  You should delete this file and the  system will recreate a fresh one during the boot up sequence.</p>
<p>Below are the steps to rename the zpool.cache file.</p>
<blockquote><p># cd /mnt/etc/zfs<br />
# ls<br />
zpool.cache<br />
# mv zpool.cache zpool.cache.old</p></blockquote>
<p>Now you need to reverse the changed you applied to the mountpoint earlier. Make sure that you change directory out of /mnt to /, otherwise  the set mountpoint command will fail with the error device busy.  Ignore the cannot mount &#8216;/&#8217;: directory is not empty message.</p>
<blockquote><p># zfs set mountpoint=/ rpool/ROOT/zfsboot<br />
cannot mount &#8216;/&#8217;: directory is not empty<br />
property may be set but unable to remount filesystem                            </p></blockquote>
<p>Confirm that the mount points were changed.</p>
<blockquote><p># zfs list<br />
NAME                                     USED  AVAIL  REFER  MOUNTPOINT<br />
epool                                    260G   205G    21K  /epool<br />
rpool                                   7.74G  17.4G    99K  /rpool<br />
rpool/ROOT                              4.74G  17.4G    21K  legacy<br />
rpool/ROOT/zfsboot                      4.74G  17.4G  4.48G  /<br />
rpool/ROOT/zfsboot/var                   139M  17.4G   105M  /var<br />
rpool/dump                              1.00G  17.4G  1.00G  -<br />
rpool/swap                              2.00G  19.4G    16K  -</p></blockquote>
<p>Shutdown the server.</p>
<blockquote><p># init 0
                            </p></blockquote>
<p>Now set the boot device in EEPROM.</p>
<blockquote><p>setenv boot-device /pci@0,600000/pci@0/pci@8/SUNW,qlc@0/fp@0,0/disk@w50060e80058c7b10,1:a</p></blockquote>
<p>The server is ready to be booted with the boot command.</p>
<blockquote><p>{0} ok boot</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2010/07/booting-up-solaris-10-from-a-san-replicated-lun-on-a-different-sun-sparc-server/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to change the IP address in Solaris 10</title>
		<link>http://www.gamescheat.ca/2010/02/how-to-change-the-ip-address-in-solaris-10/</link>
		<comments>http://www.gamescheat.ca/2010/02/how-to-change-the-ip-address-in-solaris-10/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 16:17:02 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=794</guid>
		<description><![CDATA[Here is a list of files that you need to edit when changing the IP address of an interface in Solaris 10. /etc/hosts /etc/hostname.interface-name /etc/nodename /etc/defaultrouter /etc/resolv.conf /etc/netmasks Add the ip address and server name to the host file. vi /etc/hosts 10.0.0.10 server-name Select the interface you want, your server may have more than one [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a list of files that you need to edit when changing the IP address of an interface in Solaris 10.<br />
/etc/hosts<br />
/etc/hostname.interface-name<br />
/etc/nodename<br />
/etc/defaultrouter<br />
/etc/resolv.conf<br />
/etc/netmasks</p>
<p>Add the ip address and server name to the host file.</p>
<blockquote><p>vi /etc/hosts<br />
10.0.0.10 server-name</p></blockquote>
<p>Select the interface you want, your server may have more than one network interfaces.</p>
<blockquote><p>vi /etc/hostname.bge0<br />
10.0.0.10 netmask 255.255.255.0</p></blockquote>
<p>Change the node name</p>
<blockquote><p>vi /etc/nodename<br />
server-name</p></blockquote>
<p>Add the gateway ip address</p>
<blockquote><p>vi /etc/defaultrouter<br />
10.0.0.1</p></blockquote>
<p>Add the DNS servers ip addresses</p>
<blockquote><p>vi /etc/resolv.conf<br />
nameserver 168.20.0.10<br />
nameserver 168.20.10.22</p></blockquote>
<p>Add the network address</p>
<blockquote><p>vi /etc/netmasks<br />
10.0.0.0 255.255.255.0</p></blockquote>
<p>Now reboot the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2010/02/how-to-change-the-ip-address-in-solaris-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a virtual disk with the Dell OpenManage Server Admnistrator.</title>
		<link>http://www.gamescheat.ca/2009/04/how-to-create-a-virtual-disk-with-the-dell-openmanage-server-admnistrator/</link>
		<comments>http://www.gamescheat.ca/2009/04/how-to-create-a-virtual-disk-with-the-dell-openmanage-server-admnistrator/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 16:20:03 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Microsoft Windows Server]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=208</guid>
		<description><![CDATA[Open the Dell OpenManage Server Administrator Click on System &#8211; Storage &#8211; PERC 5/E Adapter (PCI Slot 1) &#8211; Connector 0 (RAID) &#8211; Enclosure &#8211; Physical Disks. This will display all the Disk Drives in the right window. Under the column Available RAID DISK Space, you should be able to determine if there is any [...]]]></description>
			<content:encoded><![CDATA[<p>Open the Dell OpenManage Server Administrator</p>
<p>Click on System &#8211; Storage &#8211; PERC 5/E Adapter (PCI Slot 1) &#8211; Connector 0 (RAID) &#8211; Enclosure &#8211; Physical Disks.</p>
<p>This will display all the Disk Drives in the right window.</p>
<p>Under the column Available RAID DISK Space, you should be able to determine if there is any unused disk. Make a note of the name of the disks that are avaiable, this would be under the column Name.  Such as &#8220;Physical Disk 0.0.0&#8243; and &#8220;Physical DISK 0.0.1&#8243;.  You will need to this information when creating the RAID volume.</p>
<p>Go to Click on System &#8211; Storage &#8211; PERC 5/E Adapter (PCI Slot 1) &#8211; Connector 0 (RAID) &#8211; Virtual Disks.  On the right screen you should see any existing virtual disks.</p>
<p>Click on Go To Create Virtual Disk Wizard, then click on Go To Advanced Wizard.  You will be presented with the option to create Raid 0, Raid 1, Raid 5, Raid 10 and Raid 50.  The options may differ depending on the firmware and type of PERC controller.</p>
<p>In this case I want to create a RAID 5 volume, which is striping with distributed parity. You need a minumum of 3 hard disks for Raid 5. The storage size equal to one disk is used for parity.  So if you have 3 disks then the usable space is equal to the total of 2 disks.</p>
<p>Slect Raid 5 and click on Continue.  This will display only the physical disks that are avaiable. Check all the Physical Disks that you wish to add to your virtual Disk, then click on Continue.</p>
<p>You can now give the virtual disk an optional name. Leave the defaults and click on Continue.</p>
<p>When creating virtual disk that is larger than 2 TB in size, you will be prompted with a warning message. &#8220;Please verify that your operating system, including any updates or modifications, supports a virtual disk of this size.  Do you want to proceed?&#8221;. Click on OK to continue.</p>
<p>You will now be presented with the configuration summary.  Click on Finish.</p>
<p>The new virtual disk should now appear in the list.  Note the Device Name of the new virtual disk you just created, e.g. Windows Disk 2.  You will need this information when configuring the new virtual disk in Windows Disk Management MMC.  Under the progress column you will see the status of the new disk volume, this may take many hours to complete if the volume is many terra bytes large.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2009/04/how-to-create-a-virtual-disk-with-the-dell-openmanage-server-admnistrator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TCP ports opened on firewall for Dell Remote Access Card &#8211; DRAC.</title>
		<link>http://www.gamescheat.ca/2009/04/tcp-ports-opened-firewall-for-dell-remote-access-card-drac/</link>
		<comments>http://www.gamescheat.ca/2009/04/tcp-ports-opened-firewall-for-dell-remote-access-card-drac/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:13:20 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Dell Remote Access Card - DRAC]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[TCP Ports]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=132</guid>
		<description><![CDATA[The Dell Remote Access Card (DRAC) communicates via the following ports: 22 Secure Shell, SSH 23 Telnet 80 http 443 https 161 SNMP 3668 Virtual Media Server 5900 Console Redirection 5901 Console Redirection If you have a firewall in between you and the server, ensure that you have the above ports opened.]]></description>
			<content:encoded><![CDATA[<p>The Dell Remote Access Card (DRAC) communicates via the following ports:</p>
<p>22 Secure Shell, SSH<br />
23 Telnet<br />
80 http<br />
443 https<br />
161 SNMP<br />
3668 Virtual Media Server<br />
5900 Console Redirection<br />
5901 Console Redirection</p>
<p>If you have a firewall in between you and the server, ensure that you have the above ports opened.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2009/04/tcp-ports-opened-firewall-for-dell-remote-access-card-drac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find file that contains a specific word in Linux and Unix.</title>
		<link>http://www.gamescheat.ca/2009/04/how-to-find-file-that-contains-a-specific-word-in-linux-and-unix/</link>
		<comments>http://www.gamescheat.ca/2009/04/how-to-find-file-that-contains-a-specific-word-in-linux-and-unix/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 02:22:55 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aix]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/?p=107</guid>
		<description><![CDATA[The find and grep command is very handy when searching for files that contains a specific word. Both the find and grep commands are universal in Linux and Unix and the syntax is very similar. Below is an example. find /home/andrew -type f -exec grep -H &#8216;networks&#8217; {} \; This will display all files in [...]]]></description>
			<content:encoded><![CDATA[<p>The find and grep command is very handy when searching for files that contains a specific word.  Both the find and grep commands are universal in Linux and Unix and the syntax is very similar.</p>
<p>Below is an example.</p>
<p>find /home/andrew -type f -exec grep -H &#8216;networks&#8217; {} \;</p>
<p>This will display all files in the directory /home/andrew that contains the word networks abd output it to screen.</p>
<p>Here is another example using the grep command alone.</p>
<p>grep -r &#8220;networks&#8221; /home/andrew</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2009/04/how-to-find-file-that-contains-a-specific-word-in-linux-and-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a volume with a different mount point in Aix ?</title>
		<link>http://www.gamescheat.ca/2008/02/how-to-mount-a-volume-with-a-different-mount-point-in-aix/</link>
		<comments>http://www.gamescheat.ca/2008/02/how-to-mount-a-volume-with-a-different-mount-point-in-aix/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:54:10 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aix]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/2008/02/28/how-to-mount-a-volume-with-a-different-mount-point-in-aix/</guid>
		<description><![CDATA[I ran across a situation where my volume was running low on free disk space. In order to prevent my application from crashing, I had to either expand the volume or move the application files to a larger volume. Well, in this case the volume was created with Veritas and I wanted to move the [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across a situation where my volume was running low on free disk space. In order to prevent my application from crashing, I had to either expand the volume or move the application files to a larger volume. Well, in this case the volume was created with Veritas and I wanted to move the files off to a Aix natively created volume. There were some pretty good business reasons for not expanding the Veeritas volume, one of them being the lack of good support.</p>
<p>Well here is how I did it. First create a new volume and file system, in this case the new volume was mounted as /new-vol. I then backed up all files in the old Veritas volume to tape, let&#8217;s say the volume is /old-vol. To back this up to tape (/dev/rmt0) I issued the command &#8216;tar &#8211; cvf /dev/rmt0 /old-vol&#8217;, notice I used absolute path and not relative path. You can use either absolute or relative path, for relative simply put a period in front, e.g. &#8216;tar -cvf /dev/rmt0 ./old-vol&#8217;. The period means current directory, so make sure you have changed directory to the proper path, before issuing the tar command.</p>
<p>To rename the mount point, first unmount the volumes. e.g. umount /old-vol and unmount /new-vol. If you get the error that the resource is busy and the volume cannot be unmounted. Then you will need to stop the process that is running. To find out what process was using the /old-vol, first find out what volume is associated with /old-vol. You can do this by issuing the command &#8216;mount&#8217;, and look for the volume name next to the mount point. Then issue the command fuser -c &#8216;volume name&#8217;, this will display any running process. Alternatively the command &#8216;listuser&#8217;, which will display all users currently logged in. The command &#8216;kill -9 process#&#8217; will stop the running process.</p>
<p>Now edit the file /etc/filesystems and find the line &#8216;old-vol &#8216;, and replace that with &#8216;old-vol-bak&#8217;. Also change &#8216;new-vol&#8217; to &#8216;old-vol&#8217;. Go to the / directory and delete the directory new-vol, &#8216;rm -r new-vol&#8217;, this will remove the directory and all files inside it. Create a directory old-vol-bak, &#8216;mkdir old-vol-bak&#8217;. You should be able to mount the volumes now with these commands, &#8216;mount /old-vol&#8217; and &#8216;mount /old-vol-bak&#8217;.</p>
<p>Now restore the files from tape with the tar command.</p>
<p>Â tar -xvf /dev/rmt0 /old-vol</p>
<p>This will restore all files under /old-vol.</p>
</p>
<p><u style=display:none><a href="http://www.ridingsouthmagazine.com/images/?p=3-910">Cheap Xanax No Membership</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2379">Affects Of Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12537">Have Ever Snorted Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5885">Tramadol Vs Codiene</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7602">Is Ambien Detected In Drug Screening</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2809">Identification Of Generic Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10679">Xanax Controlled Substance</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7582">Valium Necklace</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12383">Xanax Overdose Concerns</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10997">Tramadol Interaction Clonidine</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-219">Onlineorder Ambien Zolpidem</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9075">Valium Generic No Prescription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1792">Analgesic With Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8246">Prescribe Tramadol For Depression</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9358">On Line Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4799">Tramadol Apap 37.5</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-921">Online Order Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6046">Xanax Abuse Health Affects</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7588">Ambien Stopping</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9723">Tramadol Online Sale</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3915">Very Cheap Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7288">Schedule Ii Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7662">Ambien Sleeping Pill</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11540">Ambien Get Off</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6565">Ambien Drugs</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8309">Buy Valium Prescription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7761">Valium Without A Prescription Order Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4268">Xanax Street Price Value</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10626">Overseas Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3051">Buy Xanax Quick</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9025">Will Tramadol Test Positive For Methadone</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5382">Buy Ambien With No Rx</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4813">Valium Class Name</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1215">Cost Of Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6244">Ambien Multiple Sclerosis Encyclopaedia Keyword</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6867">Vesparax Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6138">Ambien Online Europa</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6894">Tramadol Detox</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5586">Cor 127 Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12252">Tramadol And Effexor Similarities</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10058">Xanax Chart</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-378">Purchase Xanax On Line</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13068">Achat Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11114">Tramadol Neurotransmitter</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13111">Buying Xanax On Line</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10048">Valium Without A Perscription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12051">Xanax Look Alike</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5825">Generic Drug For Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-232">Non Prescription Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9063">Ambien Electronics</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2373">Tramadol Withdrawl Schedule</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2944">Mobile Office Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4703">Best Place To Buy Generic Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5722">Taking Xanax While On Suboxone</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12164">Xanax Next Day No Presrciption</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3941">Canadian Ambien Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12511">Tramadol Er And Itching</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12612">Get High On Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5422">Buy Xanax Online Buy</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3687">School Finance Buy Tramadol Now</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6150">Mdma And Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-264">Valium For Flying</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11115">Xanax 031</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5594">Xanax With Birth Control Pills</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9298">Welbutrin With Xanax Contraindications</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4327">Xanax Benzo</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10715">Liver Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3571">Xanax Prescription Overnight Delivery</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6398">Dj Valium Spirit Of Yesterday</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7241">Prescription Drug Ambien Free Sample</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3987">Xanax Used For Dementia Alzheimers</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-138">Xanax Withdrawal Narcotics Anonymous</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9051">Tramadol Cod Overnight</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13212">Purchase Ambien Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8769">Online Pharmacy No Prescription Hydrocodone Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9978">Xanax Overnight Fedex Delivery</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12546">Ambien And Date Rape</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12781">Compare Online Price Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8578">Online Tramadol Purchase</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11841">Ambien Side Effects Pulmonary</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3559">Drugs From Canada Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6874">Valium Substitute</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7865">Discount Generic Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7688">Coma Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-798">Ambien Weight</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11473">Brand Name Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10225">Ambien Causes Skin Irritations</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3766">Xanax How Long Before Addicted</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4271">Free Removal Scan Spyware Buy Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8467">Pet Meds Tramadol 50mg</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8564">Ambien Overnight No Prescription Fedex</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8937">Diazepam T Quil Valrelease Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6774">Can Tramadol Cause Trouble Urinating</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3624">Valium Dan</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11272">Drug Interaction Tramadol Neurontin</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-638">2mg Xanax Bars On Linw</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9918">Tramadol For Vicodin Detox</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12369">Xanax Si</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3596">Tramadol Order By 3 Cst</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5693">Effects Side Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9310">Ambien Pre-authorization</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12620">Tramadol Fail Drug Test</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6175">Ambien Canine Interaction</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9831">Xanax Drug Test How Long Clear</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10504">West Coast Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1924">Ambien Lethal Dose Of Aspirin</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4126">Online Tramadol Prescriptions</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5768">Discontinuing Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6173">Prescription Drugs Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2825">Generic Name Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12607">Buy Xanax With Money Order</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5121">Buy Cheap Discounted Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5554">Ambien Dose Dog</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-989">Valium 10 Poem</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-488">Symptoms Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10000">Xanax High</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3758">Xanax And Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1668">Ambien Long Term Use</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8711">Body Does In Long Stay Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7744">Ambien Picture</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12309">Deine Nachricht Site Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1984">Sonata Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6458">Order Online Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-317">Tramadol Crushing</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3702">Effects Of Sniffing Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11808">Tramadol Tramadol Hci Online Cheap Pharmacy</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-955">Ambien Overdose Symptom</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12697">Online Cheap Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7831">Tramadol Memory Loss</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1674">Hemitartrate Ambien Zolpidem</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12948">Xanax Code</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4682">Ambien And Alcoholism</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1881">Questions About Ambien Addiction</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4514">Valium Best Buy</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8936">Tramadol 300ct</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1848">Klonopin With Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4398">Xanax And Serotonergic Effects</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10275">Forms Of Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5122">Alcohol Valium Danger</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1723">Ambien And Traffic Accidents</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8712">Xanax Withdrawel Symptoms</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11538">Valium Photos</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1818">Fedex Shipped Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-258">Buy Cheap Xanax Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9040">Xanax Before Pregnant</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3511">Xanax Steet Value</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7860">Buy Domain Valium Tripod Com</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1951">Tramadol Stimula</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5400">Cheap Tramadol 300ct 50mg No Prescripion</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2736">Tramadol Yasmin Metrogel Nasacort Aq</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10017">Elden Pueblo Board Cheap Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10321">Xanax Versus Lorazepam</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9137">Xanax Overdose Confusion</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8733">Xanax Causing Hiccups</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9424">Ambien Cr Abuse</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8357">Xanax Verses Klonopin</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1510">Xanax Excretion</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-994">Sideeffects Of Tramadol For Dogs</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4795">No Rx Needed Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2322">Tramadol Hc</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12878">Xanax Online Doctor</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1500">Veterinary Merck Manual Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1836">Concerta With Xanax Side Effects</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6808">Ambien Cr Picture</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3190">Valium Tablet 5 Mg</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9418">6 7 Dihydroxybergamottin And Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10772">Xanax Valium Overnight Usa</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4386">Babies Addicted To Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2926">Ambien Sale</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11138">Xanax Length Of Time In Body</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7320">Feline Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3675">Ambien Vs Rozerem</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7281">Xanax Like</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12949">Tramadol In Elderly Patients</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11831">Valium Waltz</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8057">Tramadol Use In Canines</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1096">Xanax Addictions</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12136">Safe To Take Hydrocodone And Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10335">Order Ambien With A Prescription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6604">Xanax Date Rape</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6332">What Xanax Does When Taken</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4295">Buy Sh Site Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10798">Sonata Vs Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7802">Difference Between Clonopin And Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2383">Drug Test Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1493">Months Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3303">Flomax Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4421">Tramadol Vs Codeine</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8990">Xanax Alcohol Danger</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8106">Long Term Damage From Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8875">Tramadol Pain Medicine</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13008">Photos Of Xanax Bars</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-260">Ambien 10g</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10991">100 Mg Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11187">Lyrica Interaction With Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1513">Ambien Fed Ex Shipping</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11759">When Will Ambien Become Generic</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-544">Forum Xanax Overseas</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-498">Apnea Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5493">Xanax Time Minutes</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12502">Valium Alcohol Withdrawal</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-985">Ambien Ld50</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10817">Side Effects Of Tramadol 50mg</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12944">Ambien Chat Cr Room</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2464">What To Take To Intensify Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1703">Buying Online Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1327">20mg Ambien Max Dosage</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5360">Released Time Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9127">Script Free Xanax Direct</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6266">Iv Valium Complications</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7763">Generics For Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12124">Ambien April 2006</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8738">Valium Autoinjector Manufacturer</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10310">Ambien Sonata</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4497">Xanax Picture .25 .5</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3405">Ambien And Obesity</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10911">Buy Pharmacy Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9389">Ambien Female Hair Loss</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10905">Buy Xanax Online Best Price</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11921">Where To Find Cheap Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1717">Valium And Its Side Effects</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-204">Xanax Recreational</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2508">Hypnotic Drugs Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2835">Ambien Complex Sleep-related Behaviors</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6770">Generic For Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5845">Tramadol Veterinarian Medicine</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1044">Pill Images And Pictres Valium Vocodin</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1647">Dog Xanax Dosage</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10631">Taking Suboxone Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3557">Buy Xanax Withouy Prescription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4935">Tramadol Legal Status</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4978">Breast Feeding While Taking Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1419">Tramadol And Motrin Taken Together</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2956">Xanax Keyword</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1596">Venlafaxine Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2168">Where To Buy Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6180">Tramadol Generic Name</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3096">Brand Name Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2930">Valium And Breastfeeding</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13133">Buy Ambien Cheap Onlinine</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11973">Treatments For Tramadol Withdrawals</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7029">Xanax How Long Does It Last</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-145">Ambien Ambien Cr</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6255">Geodon And Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5730">Ivf Transfer Valium How Much</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-3421">Facts About Prescription Drug Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4827">90 Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7902">Xanax Money Order</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8665">Xanax Withdrawal Seizure</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11920">In Long Stays Urine Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6482">What Is The Ingredients Of Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-59">Buy Xanax With Prescription</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7893">Prescription Xanax Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12712">Tramadol 300ct 50mg</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10375">Valium And Clonopin Adverse Reactions</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9859">Xanax Fedex</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-13076">Darvocet Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12840">Xanax In China</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-714">Order Pharmacy Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-278">Ambien Dosage For Heavy Sedation</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11062">Drug Type Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-10811">Dose Lethal Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4502">Frequently Asked Questions About Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-984">Overseas Mail Order Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6510">Ambien Cost</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4111">Buy It Site Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8745">Xanax And Hypertension</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9387">Benzodiazepine Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11997">Fake Xanax Info</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-953">Roche Valium Sku</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-1864">Valium Joint Pain</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12121">Buy Information Xanax Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6698">Does Xanax Give A High Feeling</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5567">Addictive Diazepam Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6245">Prescription For Valium</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-560">Generic Prescription For Ambien</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2681">Valium Dilate Pupils</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9316">Cheap Domain Online Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7014">Dangers Of Mixing Subutex And Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12631">Ambien And Rape</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-222">Cheap Site Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-866">Tramadol Ups Delivery</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-787">Valium 10 Mg Tablet Identification</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5578">Beitrag Hinzufgen Name Text Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7506">Pharmacy Salary Tech Buy Tramadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11364">Tramadol Best Buy Tremadol</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6196">Tramadol Tough Online</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-11466">Tramadol And Dentistry</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-6755">Metabolism Pharmacokinetics Pharmacology Study Xanax Xr</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-9788">Valium Xanax Ambien Zolpidem</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-2009">Valium Image</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5463">Mixing Methadone And Xanax</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-8361">Tramadol Effects</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7972">Ambien Xxx Terrorism Terror Screw</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-12128">Ambien Symptoms</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7377">Ambien Prozac Interaction</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-7471">Ambien Mechanism Of Action</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-5372">Xanax Xr 3mg</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4613">Ambien Cheep</a><br />
<a href="http://www.ridingsouthmagazine.com/images/?p=3-4531">Buy Ambien Sleeping Pill Uk</a><br />
</u></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2008/02/how-to-mount-a-volume-with-a-different-mount-point-in-aix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sendmail-largeboxes.conf displays warning for large mailboxes</title>
		<link>http://www.gamescheat.ca/2007/11/sendmail-largeboxesconf-displays-warning-for-large-mailboxes/</link>
		<comments>http://www.gamescheat.ca/2007/11/sendmail-largeboxesconf-displays-warning-for-large-mailboxes/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 15:12:13 +0000</pubDate>
		<dc:creator>Andrew Lin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aix]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.gamescheat.ca/2007/11/05/sendmail-largeboxesconf-displays-warning-for-large-mailboxes/</guid>
		<description><![CDATA[The sendmail-largeboxes.cof file is used to display warnings for large mailboxes.Â  The default configuration is hard coded to consider 40MB+ as large.Â  Users will receive email warnings that they have exceeded the 40MB mailbox size.Â  You can change the default 40MB to a different value.Â  On my Fedora Core 4 installation the file is located [...]]]></description>
			<content:encoded><![CDATA[<p>The <a target="_blank" href="http://www.wiivil.com">sendmail</a>-largeboxes.cof file is used to display warnings for large mailboxes.Â  The default configuration is hard coded to consider 40MB+ as large.Â  Users will receive email warnings that they have exceeded the 40MB mailbox size.Â  You can change the default 40MB to a different value.Â  On my <a target="_blank" href="http://www.wiivil.com">Fedora Core</a> 4 installation the file is located in /usr/share/logwatch/default.conf/services/sendmail-largebooxes.conf.Â Â Â  The variable to change is $sendmail_largeboxes_size = 40MB.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gamescheat.ca/2007/11/sendmail-largeboxesconf-displays-warning-for-large-mailboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

