<?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>System Network Programming Solution - Linux - windows - centos- security- cpanel - plesk -directadmin helm&#187; centos</title>
	<atom:link href="http://thegioinguonmo.com/tag/centos/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegioinguonmo.com</link>
	<description>SHARING EVERYTHING</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:45:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Shell script to create list of backup files in ~/.mybackup file. Use with mybackup shell script</title>
		<link>http://thegioinguonmo.com/programing/shell-script/shell-script-to-create-list-of-backup-files-in-mybackup-file-use-with-mybackup-shell-script.html</link>
		<comments>http://thegioinguonmo.com/programing/shell-script/shell-script-to-create-list-of-backup-files-in-mybackup-file-use-with-mybackup-shell-script.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 21:43:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[shell script]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1649</guid>
		<description><![CDATA[#!/bin/bash # mybackupadd - Add file to ~/.mybackup file, then backup and email all # file as tar.gz to your email a/c. # # Usage : ./mybackupadd ~/public_html/ # # Copyright (C) 2004 nixCraft project # Email : http://cyberciti.biz/fb/ # Date : Aug-2004 # ------------------------------------------------------------------------- # This program is free software; you can redistribute it [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:shell">#!/bin/bash
# mybackupadd - Add file to ~/.mybackup file, then backup and email all
# file as tar.gz to your email a/c.
#
# Usage   : ./mybackupadd ~/public_html/
#
# Copyright (C) 2004 nixCraft project
# Email   : http://cyberciti.biz/fb/
# Date    : Aug-2004
# -------------------------------------------------------------------------
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# -------------------------------------------------------------------------
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# -------------------------------------------------------------------------

FILE=~/.mybackup
MYH=~
CWD=`pwd`
SRC=$1

if [ "$SRC" == "" ]; then
  echo "Must supply dir or file name"
  exit 1
fi
# if list $FILE does not exist
[ ! -f $FILE ] &amp;&amp; touch $FILE || :

# make sure that file or dir exists to backup
if [ ! -f $SRC ]; then
   if [ ! -d $SRC ]; then
      echo "$SRC does not exists"
      exit 2
   fi
fi
# make sure we don't do add duplicate stuff
cat $FILE | grep -w $SRC &gt; /dev/null
if [ "$?" == "0" ]; then
   echo "$SRC exists in $FILE"
   exit 3
fi
# okay now add that to backup list
echo "$SRC" &gt;&gt; $FILE
echo "$SRC added to $FILE"</pre>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/programing/shell-script/shell-script-to-create-list-of-backup-files-in-mybackup-file-use-with-mybackup-shell-script.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell script to backup directories from Linux server to Windows 2000/NT Server</title>
		<link>http://thegioinguonmo.com/programing/shell-script/shell-script-to-backup-directories-from-linux-server-to-windows-2000nt-server.html</link>
		<comments>http://thegioinguonmo.com/programing/shell-script/shell-script-to-backup-directories-from-linux-server-to-windows-2000nt-server.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 09:41:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[shell script]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[NTUSER]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1644</guid>
		<description><![CDATA[#!/bin/bash # Shell script to backup directories from Linux server to Windows 2000/NT Server. # Run it as follows # Scriptname /home backup abc123 //server2000/backup # Backup /home directory from Linux box to NT/2000 box called # 'server2000' in share called '/backup' with username # 'backup' and password 'abc123' # -------------------------------------------------------------------- # This is a [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:shell">#!/bin/bash
# Shell script to backup directories from Linux server to Windows 2000/NT Server.
# Run it as follows
# Scriptname /home backup abc123 //server2000/backup
# Backup /home directory from Linux box  to NT/2000 box called
# 'server2000' in share called '/backup' with username
# 'backup' and password 'abc123'
# --------------------------------------------------------------------
# This is a free shell script under GNU GPL version 2.0 or above
# Copyright (C) 2005 nixCraft project
# Feedback/comment/suggestions : http://cyberciti.biz/fb/
# -------------------------------------------------------------------------
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# -------------------------------------------------------------------------

# backup what?
FROM=$1
# NT Connection Info #
# NT Username
NTUSER=$2
# NT Password
NTPASSWD=$3
# NT ShareName i.e //server/backup etc
NTSHARE="$4"

# BackUpDir Name
BACKDIR="$(hostname -s)"

# Local mount point
MNT="/mnt/smbbox"

# Get date and time
NOW=$(date +"%m-%d-%Y-%I_%M%P")
# backup file  name
BAKFILE="backup.$NOW.tar.gz"

if [ "$#" != "4" ]; then
	echo "Syntax:"
	echo "$(basename $0) {Linux-directory} {NTusername} {NTpassword} {//NTserver/share-name}"
	exit 1
fi
# make sure $from do exits
if [ ! -d $FROM ]; then
   echo "Backup source directory \"$FROM\" does NOT exist"
   exit 2
fi
#Create tar to backup first
tar -czf /tmp/$BAKFILE $FROM 

#Mount the smb to /mnt
[ ! -d $MNT ] &amp;&amp; mkdir -p $MNT || :

mount -t smbfs -o username=$NTUSER,password=$NTPASSWD $NTSHARE $MNT

[ ! -d $MNT/$BACKDIR ] &amp;&amp; mkdir -p $MNT/$BACKDIR || :

# Copy new tar to ntbox
cp /tmp/$BAKFILE $MNT/$BACKDIR

# Send sync aka force to write data before issuing umount
sync

# issue umount
umount $MNT</pre>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/programing/shell-script/shell-script-to-backup-directories-from-linux-server-to-windows-2000nt-server.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming files with –– at the start</title>
		<link>http://thegioinguonmo.com/os/linux/renaming-files-with-%e2%80%93%e2%80%93-at-the-start.html</link>
		<comments>http://thegioinguonmo.com/os/linux/renaming-files-with-%e2%80%93%e2%80%93-at-the-start.html#comments</comments>
		<pubDate>Thu, 02 Feb 2012 09:41:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1383</guid>
		<description><![CDATA[I’m making a post about this because I ran into this today and I couldn’t remember how to rename a file starting with — (two or double hyphens) in Linux (e.g. –index.html). The customer has obviously used a Windows FTP client to rename index.html to –index.html so it is out of their way, and now [...]]]></description>
			<content:encoded><![CDATA[<p>I’m making a post about this because I ran into this today and I couldn’t remember how to rename a file starting with — (two or double hyphens) in Linux (e.g. –index.html). The customer has obviously used a Windows FTP client to rename index.html to –index.html so it is out of their way, and now me, the server administrator or company sysadmin, has come along with my migration script to relocate it and it has fallen over, crashed, and burned!</p>
<p>When you try and rename it the following is given:</p>
<blockquote>
<pre class="brush:plain">$ mv ––index.html index.html.renamed
mv: unrecognized option `––index.html’
Try `mv ––help’ for more information.</pre>
</blockquote>
<p>I also tried delimiting it the normal way, but it wouldn’t work either:</p>
<blockquote>
<pre class="brush:plain">    mv \–\–index.html index.html.renamed</pre>
</blockquote>
<p>The correct way to rename it is:</p>
<blockquote>
<pre class="brush:plain">    mv ./––index.html index.html.renamed</pre>
</blockquote>
<p>Because –– has special meaning, you can’t delimit it with a simple backslash (\), you have to put a path reference in there to delimit it. So my path working directory (pwd) was /home/user/data/ where the file was located, so I could use ./ to reference the current pwd. The other option is to put the full path in:</p>
<blockquote>
<pre class="brush:plain">    mv /home/user/data/––index.html index.html.renamed</pre>
</blockquote>
<p>Hopefully this helps out some other Linux server administrator out there who’s mind it has slipped.</p>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/renaming-files-with-%e2%80%93%e2%80%93-at-the-start.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: Rename an Account [ User ID ]</title>
		<link>http://thegioinguonmo.com/os/linux/ubuntu-rename-an-account-user-id.html</link>
		<comments>http://thegioinguonmo.com/os/linux/ubuntu-rename-an-account-user-id.html#comments</comments>
		<pubDate>Wed, 01 Feb 2012 21:39:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1358</guid>
		<description><![CDATA[How do I rename a user name from ‘tom’ to ‘jerry’ under Ubuntu Linux? You need to use the usermod command. It can modify the system account files (such as /etc/passwd) to reflect the changes that are specified on the command line. The syntax is as follows: usermod -l {new-login-name} {current-old-login-name} In this example, rename [...]]]></description>
			<content:encoded><![CDATA[<p>How do I rename a user name from ‘tom’ to ‘jerry’ under Ubuntu Linux?</p>
<p>You need to use the usermod command. It can modify the system account files (such as /etc/passwd) to reflect the changes that are specified on the command line. The syntax is as follows:<br />
<code>usermod -l {new-login-name} {current-old-login-name}</code><br />
In this example, rename login id from tom to jerry. Open a command-line terminal (select Applications &gt; Accessories &gt; Terminal), and then type the following command<br />
<code>$ sudo usermod -l jerry tom</code><br />
To verify new changes, enter:<br />
<code>$ id jerry</code></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/ubuntu-rename-an-account-user-id.html" title="plesk hide information_schema">plesk hide information_schema</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/ubuntu-rename-an-account-user-id.html" title="ubuntu: rename an account">ubuntu: rename an account</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/ubuntu-rename-an-account-user-id.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Tasks You Shouldn’t Use a GUI For</title>
		<link>http://thegioinguonmo.com/os/linux/7-tasks-you-shouldn%e2%80%99t-use-a-gui-for.html</link>
		<comments>http://thegioinguonmo.com/os/linux/7-tasks-you-shouldn%e2%80%99t-use-a-gui-for.html#comments</comments>
		<pubDate>Wed, 01 Feb 2012 09:40:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Splice Together]]></category>
		<category><![CDATA[Video Conversions]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1337</guid>
		<description><![CDATA[Sometimes the GUI is just too slow. Learn how to resize images, add drop shadows, splice mp3s, clone hard drives and more with the command line. Here are a few tasks that you might want to consider using the command line for. 1. Resizing images Unless you are doing some sort of cropping there is [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes the GUI is just too slow. Learn how to resize images, add drop shadows, splice mp3s, clone hard drives and more with the command line.</p>
<p>Here are a few tasks that you might want to consider using the command line for.</p>
<h2>1. Resizing images</h2>
<p>Unless you are doing some sort of cropping there is no reason to load up Photoshop or the Gimp. A simple command will usually suffice for almost all your image resizing needs.</p>
<blockquote>
<pre class="brush:plain">    convert -resize 300 image.jpg image-small.jpg</pre>
</blockquote>
<p>If you finding yourself doing lots of image resizing during the day, this command could potentially save you a LOT of time. You can even do mass image resizing.</p>
<h2>2. Adding a Drop Shadow to an Image</h2>
<p>I found myself spending a ton of time adding drop shadows to images. Using a simple command I was able to create drop shadows in seconds.</p>
<blockquote>
<pre class="brush:plain">convert screenshot.jpg \( +clone -background black -shadow 60×5+0+5 \) +swap -background white -layers merge +repage shadow.jpg</pre>
</blockquote>
<p><em>Note: You must have <a rel="nofollow" target="_blank" href="http://www.imagemagick.org/script/index.php">Imagemagick</a> installed for this command to work. Debian/Ubuntu users can use <code>apt-get install imagemagick</code>.</em></p>
<p>Obviously, I don’t expect you to memorize this command. To shorten it use an <a rel="nofollow" target="_blank" href="http://eriwen.com/productivity/aliases-and-functions/">alias</a>.</p>
<h2>3. Splice Together an MP3</h2>
<p>If you want <strong>simple</strong> MP3 splicing this command has your back:</p>
<blockquote>
<pre class="brush:plain">    cat 1.mp3 2.mp3 &gt; combined.mp3</pre>
</blockquote>
<h2>4. Clone a Hard Drive</h2>
<p>DD is one the most simplistic and powerful image applications out there.</p>
<blockquote>
<pre class="brush:plain">    dd if=/dev/hda of=/dev/hdb</pre>
</blockquote>
<h2>5. Burn an ISO to a CD</h2>
<p>Why open up K3B or some other program just to burn an ISO? Map this command to an alias and get burning.</p>
<blockquote>
<pre class="brush:plain">    cdrecord -v speed=8 dev=0,0,0 name_of_iso_file.iso</pre>
</blockquote>
<p><em>Note: You need to get the info for the ‘dev=’ part by running ‘cdrecord -scanbus’</em></p>
<h2>6. Video Conversions</h2>
<p>Let’s say you want to convert an AVI to an Mpeg file:</p>
<pre class="brush:plain">ffmpeg -i video_origine.avi video_finale.mpg</pre>
<p>Or convert an Mpeg to AVI:</p>
<blockquote>
<pre class="brush:plain">    ffmpeg -i video_origine.mpg video_finale.avi</pre>
</blockquote>
<p>There are <a rel="nofollow" target="_blank" href="http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs">all sorts of things you can do with ffmpeg</a>.</p>
<h2>7. Replace Words in a Text File</h2>
<p>No need to open up a GUI text editor when you have sed.</p>
<p>This command from <a rel="nofollow" target="_blank" href="http://eriwen.com/tools/get-sed-savvy-1/">Eric’s Wendelin’s blog</a> will replace all instances of a color in CSS with another one.</p>
<blockquote>
<pre class="brush:plain">    sed ’s/#FF0000/#0000FF/g’ main.css</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/7-tasks-you-shouldn%e2%80%99t-use-a-gui-for.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot start Web server from Plesk panel, No such file ‘/usr/local/etc/rc.d/apache2.sh’ error appears</title>
		<link>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html#comments</comments>
		<pubDate>Sat, 28 Jan 2012 00:53:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[plesk control panel]]></category>
		<category><![CDATA[psa]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2272</guid>
		<description><![CDATA[Attempts to start or stop apache web service on Server &#62; Services page fail with error ERROR: PleskFatalException Unable to make action: Unable to manage service by websrvmng: websrvmng: No such file ‘/usr/local/etc/rc.d/apache2.sh’: No such file or directory System error 2: No such file or directory &#160; Apache startup script name is specified with the [...]]]></description>
			<content:encoded><![CDATA[<p>Attempts to start or stop apache web service on Server &gt; Services page fail with error</p>
<p><span style="color: #ff0000;">ERROR</span>: PleskFatalException<br />
Unable to make action: Unable to manage service by websrvmng:<br />
websrvmng: No such file ‘/usr/local/etc/rc.d/apache2.sh’:<br />
No such file or directory System error 2: No such file or directory</p>
<p>&nbsp;</p>
<p>Apache startup script name is specified with the following variable in /etc/psa/psa.conf file:</p>
<pre class="brush:plain">#apache startup script
HTTPD_SERVICE apache2</pre>
<p>Find out what the actual apache startup script file name is, it may be either apache2 or apache2.sh:</p>
<pre class="brush:plain"># ls /usr/local/etc/rc.d/apache2*
/usr/local/etc/rc.d/apache2</pre>
<p>then set the correct value in /etc/psa/psa.conf for HTTPD_SERVICE variable.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="ERROR: PleskFatalException StatInfo-&gt;getProductVersion failed: Plesk version file doesnt exist or empty debian">ERROR: PleskFatalException StatInfo-&gt;getProductVersion failed: Plesk version file doesnt exist or empty debian</a> (2)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="websrvmng: service /usr/local/etc/rc d/apache2 failed to restart">websrvmng: service /usr/local/etc/rc d/apache2 failed to restart</a> (2)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="councurrent execution flvtool2 windows">councurrent execution flvtool2 windows</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="plesk apache-config t failed">plesk apache-config t failed</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="pleskfatalexception: /usr/local/psa/admin/bin/apache-config -t failed with code 1">pleskfatalexception: /usr/local/psa/admin/bin/apache-config -t failed with code 1</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html" title="unable to exec utility packagemng: file does not exist or is not executable: /usr/local/psa/admin/bin/packagemng">unable to exec utility packagemng: file does not exist or is not executable: /usr/local/psa/admin/bin/packagemng</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/start-web-server-plesk-panel-file-usrlocaletcrcdapache2sh-error-appears.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk yum update shows: [Errno 14] HTTP Error 404: Not Found</title>
		<link>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html#comments</comments>
		<pubDate>Sat, 28 Jan 2012 00:49:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Linux Plesk]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[plesk control panel]]></category>
		<category><![CDATA[yum repos]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2269</guid>
		<description><![CDATA[Today while trying to run yum update for one of our server we got the following error. yum update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: mirror.bytemark.co.uk * atomic: www5.atomicorp.com * base: mirror.sov.uk.goscomb.net * extras: mirror.sov.uk.goscomb.net * updates: mirror.sov.uk.goscomb.net http://www4.atomicorp.com/channels/plesk/9.0/centos/5/i386/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found Solution: To fix this [...]]]></description>
			<content:encoded><![CDATA[<p>Today while trying to run yum update for one of our server we got the following error.</p>
<p>yum update<br />
Loaded plugins: fastestmirror<br />
Loading mirror speeds from cached hostfile<br />
* addons: mirror.bytemark.co.uk<br />
* atomic: www5.atomicorp.com<br />
* base: mirror.sov.uk.goscomb.net<br />
* extras: mirror.sov.uk.goscomb.net<br />
* updates: mirror.sov.uk.goscomb.net</p>
<p><strong>http://www4.atomicorp.com/channels/plesk/9.0/centos/5/i386/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found</strong></p>
<p><strong><span style="color: #003300;">Solution:</span><br />
</strong></p>
<p>To fix this we logged into the server and from /etc/yum.repos.d/ delete the plesk.repo and run the yum updater again.  Please make sure if you are primarly using atomic corps repo.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html" title="ssh linux plesk 404 - not found">ssh linux plesk 404 - not found</a> (2)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html" title="apache httpd errno 14">apache httpd errno 14</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html" title="oracle ErrNo=14">oracle ErrNo=14</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/plesk-yum-update-shows-errno-14-http-error-404.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW-TO install ffmpeg, Mplayer, mencoder,FLVtool2 and Yamdi on Plesk Linux based server</title>
		<link>http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html</link>
		<comments>http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:45:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flvtool2]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[plesk control panel]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2265</guid>
		<description><![CDATA[So login with SSH and enter as root. We need to make sure the correct lib directories are setup in ldconfig. Edit the /etc/ld.so.conf file and add the following lines. After you save it, run the command ldconfig /usr/local/lib /usr/lib Compiler install Because in many cases no compiler or maybe other incompatbile compiler is installed, [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>So login with SSH and enter as root.</strong></em></p>
<p>We need to make sure the correct lib directories are setup in ldconfig. Edit the <strong>/etc/ld.so.conf</strong> file and add the following lines. After you save it, run the command <strong>ldconfig</strong></p>
<pre class="brush:shell">/usr/local/lib
/usr/lib</pre>
<h2>Compiler install</h2>
<p>Because in many cases no compiler or maybe other incompatbile compiler is installed, so you can get &#8220;fails sanity check&#8221; for example.</p>
<pre class="brush:shell">yum install gcc-c++</pre>
<h2>Some initial libraries</h2>
<p>We like to install with yum because it is more easy like this.</p>
<pre class="brush:shell">yum install libogg zlib-devel libtool
rpm -ivh  http://rpm.livna.org/livna-release.rpm</pre>
<h2>Faac (<a rel="nofollow" target="_blank" href="http://sourceforge.net/projects/faac/files/" target="_blank">http://sourceforge.net/projects/faac/files/</a>)</h2>
<p>FAAC is an Advanced Audio Coder (MPEG2-AAC, MPEG4-AAC). The goal of FAAC is to explore the possibilities of AAC and exceed the quality of the currently best MP3 encoders. If missing the package, go to sourceforge and download latest version or from mirror.</p>
<pre class="brush:shell">wget  http://superb-west.dl.sourceforge.net/sourceforge/faac/faac-1.28.tar.gz
tar xvfz faac-1.28.tar.gz
cd faac-1.28/
./bootstrap
./configure --enable-shared
make
make install
ldconfig</pre>
<h2>x264 (<a rel="nofollow" target="_blank" href="ftp://ftp.videolan.org/pub/videolan/x264/snapshots/" target="_blank">ftp://ftp.videolan.org/pub/videolan/x264/snapshots/</a>)</h2>
<p>x264 is a free library for encoding H264/AVC video streams. If missing from YUM, use link below, or find the latest one (or correct OS).</p>
<pre class="brush:shell">rpm -ivh &lt;a href="http://dag.wieers.com/rpm/packages/yasm/yasm-0.6.2-1.el5.rf.x86_64.rpm"&gt;http://dag.wieers.com/rpm/packages/yasm/yasm-0.6.2-1.el5.rf.x86_64.rpm&lt;/a&gt;
yum install yasm
wget  ftp://ftp.videolan.org/pub/x264/snapshots/x264-snapshot-20100607-2245.tar.bz2
tar xjvf  x264-snapshot-20100607-2245.tar.bz2
cd x264-snapshot-20100607-2245
./configure --enable-shared  --disable-asm
make
make install
ldconfig</pre>
<h2>OpenJPEG (<a rel="nofollow" target="_blank" href="http://code.google.com/p/openjpeg/downloads/list" target="_blank">http://code.google.com/p/openjpeg/downloads/list</a>)</h2>
<p>The OpenJPEG library is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). In addition to the basic codec, various other features are under development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats, an indexing tool useful for the JPIP protocol, JPWL-tools for error-resilience, a Java-viewer for j2k-images, &#8230;</p>
<pre class="brush:shell">wget  http://openjpeg.googlecode.com/files/openjpeg_v1_3.tar.gz
tar zxvf openjpeg_v1_3.tar.gz
cd OpenJPEG_v1_3
make
make install
ldconfig</pre>
<h2>LibTheora (<a rel="nofollow" target="_blank" href="http://downloads.xiph.org/releases/theora/" target="_blank">http://downloads.xiph.org/releases/theora/</a>)</h2>
<p>Theora is a free and open video compression format from the Xiph.org Foundation. Like all our multimedia technology it can be used to distribute film and video online and on disc without the licensing and royalty fees or vendor lock-in associated with other formats. Theora scales from postage stamp to HD resolution, and is considered particularly competitive at low bitrates. It is in the same class as MPEG-4/DiVX, and like the Vorbis audio codec it has lots of room for improvement as encoder technology develops.</p>
<pre class="brush:shell">yum install libogg libogg-devel libvorbis libvorbis-devel
wget  http://downloads.xiph.org/releases/theora/libtheora-1.1.0.tar.gz
tar xjvf  libtheora-1.1.0.tar.gz
cd libtheora-1.1.0
./configure --enable-shared
make
make install</pre>
<h2>XVid (<a rel="nofollow" target="_blank" href="http://www.xvid.org/Downloads.43.0.html" target="_blank">http://www.xvid.org/Downloads.43.0.html</a>)</h2>
<p>The Xvid video codec implements MPEG-4 Simple Profile and Advanced Simple Profile standards. It permits compressing and decompressing digital video in order to reduce the required bandwidth of video data for transmission over computer networks or efficient storage on CDs or DVDs. Due to its unrivalled quality Xvid has gained great popularity and is used in many other GPLed applications, like e.g. Transcode, MEncoder, MPlayer, Xine and many more.</p>
<pre class="brush:shell">wget  http://downloads.xvid.org/downloads/xvidcore-1.2.2.tar.gz
tar zxvf xvidcore-1.2.2.tar.gz
cd xvidcore
cd build/generic
./configure --enable-shared
make
make install</pre>
<h2>Yamdi (<a rel="nofollow" target="_blank" href="http://downloads.sourceforge.net/project/yamdi/yamdi/" target="_blank">http://downloads.sourceforge.net/project/yamdi/yamdi/</a>)</h2>
<p>yamdi stands for Yet Another MetaData Injector and is a metadata injector for FLV files. It adds the onMetaData event to your FLV files. yamdi should run under *BSD, Linux and Win32</p>
<pre class="brush:shell">wget  "http://downloads.sourceforge.net/project/yamdi/yamdi/1.4/yamdi-1.4.tar.gz?use_mirror=garr"
tar zxvf yamdi-1.4.tar.gz
cd yamdi-1.4
gcc yamdi.c -o yamdi -O2 -Wall  -D_FILE_OFFSET_BITS=647
cp yamdi /usr/bin/</pre>
<h2>Lame MP3 encoder (<a rel="nofollow" target="_blank" href="http://nchc.dl.sourceforge.net/sourceforge/lame/" target="_blank">http://nchc.dl.sourceforge.net/sourceforge/lame/</a>)</h2>
<p>Pure install of FFmpeg is not enough, the FLV (Flash Video Files) converted has no audio, because FLV audio codec is mp3, so you need LAME support.</p>
<pre class="brush:shell">wget "http://downloads.sourceforge.net/project/lame/lame/3.98.2/lame-398-2.tar.gz?use_mirror=garr"
tar xvzf lame-398-2.tar.gz
cd lame-398-2
./configure –-enable-shared
make
make install</pre>
<h2>FLVTool2 (<a rel="nofollow" target="_blank" href="http://rubyforge.org/frs/?group_id=1096&amp;release_id=9694" target="_blank">http://rubyforge.org/frs/?group_id=1096&amp;release_id=9694</a>)</h2>
<p>FLVTool2 is a manipulation tool for Macromedia Flash Video files (FLV). It can calculate a lot of meta data, insert an onMetaData tag, cut FLV files, add cue points (onCuePoint), show the FLV structure and print meta data information in XML or YAML. Type <strong>flvtool2</strong> in command line to see help after install succeed.</p>
<pre class="brush:shell">yum install ruby
wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz
tar xvzf flvtool2-1.0.6.tgz
cd flvtool2-1.0.6/
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install</pre>
<h2>Finally FFMPEG</h2>
<p>FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec &#8211; the leading audio/video codec library.</p>
<pre class="brush:shell">yum install subversion
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
cd ffmpeg
./configure --enable-libfaac --enable-shared --enable-memalign-hack --enable-gpl  --enable-libtheora --enable-libmp3lame --enable-libopenjpeg  --enable-libvorbis --enable-libx264 --enable-libxvid --enable-nonfree --enable-postproc --enable-avfilter  --enable-avfilter-lavf --enable-swscale
make
make install</pre>
<p>Symlink some libraries if needed (ignore file exists errors):</p>
<pre class="brush:shell">ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51</pre>
<h2>Install ffmpeg-php (<a rel="nofollow" target="_blank" href="http://downloads.sourceforge.net/project/ffmpeg-php/" target="_blank">http://downloads.sourceforge.net/project/ffmpeg-php/</a>)</h2>
<p>ffmpeg-php is an extension for PHP that adds an easy to use, object-oriented API for accessing and retrieving information from video and audio files. It has methods for returning frames from movie files as images that can be manipulated using PHP&#8217;s image functions. This works well for automatically creating thumbnail images from movies. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma&#8230;). ffmpeg-php can access many of the video formats supported by ffmpeg (mov, avi, mpg, wmv&#8230;)</p>
<pre class="brush:shell">wget "http://downloads.sourceforge.net/project/ffmpeg-php/ffmpeg-php/0.6.0/ffmpeg-php-0.6.0.tbz2?use_mirror=garr"
tar xjvf ffmpeg-php-0.6.0.tbz2
cd ffmpeg-php-0.6.0
phpize
./configure
make
make install</pre>
<p>When encountering this error compiling ffmpeg-php:<br />
/root/ffmpeg-php-0.6.0/ffmpeg_frame.c:421: error: &#8216;PIX_FMT_RGBA32&#8242; undeclared (first use in this function) make: *** [ffmpeg_frame.lo] Error 1 &#8221;</p>
<p>do this and after make command again:</p>
<pre class="brush:shell">vim ffmpeg_frame.c
:%s/PIX_FMT_RGBA32/PIX_FMT_RGB32/g
:wq</pre>
<p>Now you need to copy the ffmpeg.so file that was created from it’s location (from the build) to /usr/local/lib/php/extensions/, it should look something like:</p>
<p><em>cp /usr/local/lib/php/extensions/no-debug-non-zts-????????????/ffmpeg.so /usr/local/lib/php/extensions/<br />
</em></p>
<p>This creates the ffmpeg.so file. Create a file /etc/php.d/gdffmpeg.ini<br />
; Enable ffmpeg extension module (please use the correct path)<br />
extension_dir = &#8220;/usr/lib64/php/modules/&#8221;<br />
extension=ffmpeg.so</p>
<p>It is important to name it as gdffmpeg.ini because seems try to load this before gd.ini and then will work. Restart Apache (service httpd restart).</p>
<h2>Mplayer &amp; Codecs (<a rel="nofollow" target="_blank" href="http://www1.mplayerhq.hu/MPlayer/releases/" target="_blank">http://www1.mplayerhq.hu/MPlayer/releases/</a>)</h2>
<p>MPlayer is a movie player which runs on many systems (see the documentation). It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native, XAnim, and Win32 DLL codecs. You can watch VideoCD, SVCD, DVD, 3ivx, DivX 3/4/5, WMV and even H.264 movies.</p>
<pre class="brush:shell">wget http://www.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2
tar xjvf essential-20071007.tar.bz2
mkdir /usr/local/lib/codecs/
mv essential-20071007/ /usr/local/lib/codecs/
chmod -R 755 /usr/local/lib/codecs/
wget http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc3.tar.bz2
tar xjvf  MPlayer-1.0rc3.tar.bz2
cd MPlayer-1.0rc3/
./configure
make
make install</pre>
<pre class="brush:shell">
</pre>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="arch postproc so 51">arch postproc so 51</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="yamdi installation on cpanel server">yamdi installation on cpanel server</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="wget ffmpeg">wget ffmpeg</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="mencoder wmv9 linux">mencoder wmv9 linux</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="mencoder latest version">mencoder latest version</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="linux plesk ffmpeg flvtool2 mencoder install">linux plesk ffmpeg flvtool2 mencoder install</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="install mencoder mplayer">install mencoder mplayer</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="install ffmpeg linux">install ffmpeg linux</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="how to install yamdi in cpanel">how to install yamdi in cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html" title="how to install latest ffmpeg mplayer mencoder flvtool2 x264 yamdi">how to install latest ffmpeg mplayer mencoder flvtool2 x264 yamdi</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/howto-install-ffmpeg-mplayer-mencoderflvtool2-yamdi-plesk-linux-based-server.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I hide information_schema database from phpMyAdmin?</title>
		<link>http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html</link>
		<comments>http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html#comments</comments>
		<pubDate>Sun, 22 Jan 2012 03:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Hide]]></category>
		<category><![CDATA[information_schema]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://sysnetpro.net/?p=2262</guid>
		<description><![CDATA[By default, phpMyAdmin shows all databases available to a user. So, in addition to the databases that belong to the user, the information_schema database is also visible to them. To hide the information_schema database from phpMyAdmin on a particular MySQL logical server, add the following line to the phpMyAdmin config.inc.php file: $cfg['Servers'][$i]['hide_db'] = ‘information_schema’; Please [...]]]></description>
			<content:encoded><![CDATA[<p>By default, phpMyAdmin shows all databases available to a user. So, in addition to the databases that belong to the user, the information_schema database is also visible to them.</p>
<p>To hide the information_schema database from phpMyAdmin on a particular MySQL logical server, add the following line to the phpMyAdmin config.inc.php file:</p>
<div>
<div>$cfg['Servers'][$i]['hide_db'] = ‘information_schema’;</div>
</div>
<p>Please note that this affects only phpMyAdmin, and users will still be able to use the information_schema database from other applications (for example, from the mysql command-line client).</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="sendxmpp google talk error">sendxmpp google talk error</a> (2)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="ftp information_schema">ftp information_schema</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="ftp user information_schema">ftp user information_schema</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="hide information_schema mysql">hide information_schema mysql</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="how to secure phpmyadmin in linux">how to secure phpmyadmin in linux</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="phpmyadmin hide comments">phpmyadmin hide comments</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="phpmyadmin hide information_schema">phpmyadmin hide information_schema</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html" title="phpmyadmin information_schema">phpmyadmin information_schema</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/hide-informationschema-database-phpmyadmin.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Broken RedHat up2date support on Parallels Plesk</title>
		<link>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/fix-broken-redhat-up2date-support-parallels-plesk.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/fix-broken-redhat-up2date-support-parallels-plesk.html#comments</comments>
		<pubDate>Sun, 22 Jan 2012 02:48:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Broken]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Parallels]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[plesk control panel]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[up2date]]></category>

		<guid isPermaLink="false">http://sysnetpro.net/?p=2259</guid>
		<description><![CDATA[In Parallels Plesk Panel 10.0.1 installed on RedHat 4 OS try upgrading any component through Autoinstaller in Parallels Plesk interface. The following error is shown: There was an error downloading: …… …… …… An error has occurred: exceptions.UnboundLocalError See /var/log/up2date for more information Error: The up2date utility failed to install the required packages. Attention! Your [...]]]></description>
			<content:encoded><![CDATA[<p>In Parallels Plesk Panel 10.0.1 installed on RedHat 4 OS try upgrading any component through Autoinstaller in Parallels Plesk interface. The following error is shown:</p>
<div>
<div>There was an error downloading: ……<br />
……<br />
……<br />
An error has occurred:<br />
exceptions.UnboundLocalError<br />
See /var/log/up2date for more information<br />
Error: The up2date utility failed to install the required packages.<br />
Attention! Your software might be inoperable.<br />
Please, contact product technical support.</div>
</div>
<p>For fixing this issue you can use following workarounds:</p>
<p>Edit /etc/sysconfig/rhn/sources file for use different IDs for sources added by Parallels Installer. Need to edit between component selection and installation process start.</p>
<p><strong>Disable up2date</strong>: Edit file /root/.autoinstallerrc</p>
<div>
<div>ALLOW_TO_USE_UP2DATE=”no”</div>
</div>
<p>Reference: <a rel="nofollow" target="_blank" href="http://parallels.com/">http://parallels.com/</a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/plesk-control-panel/fix-broken-redhat-up2date-support-parallels-plesk.html" title="parallels network centos">parallels network centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/plesk-control-panel/fix-broken-redhat-up2date-support-parallels-plesk.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: thegioinguonmo.com @ 2012-02-07 10:55:01 -->
