<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>LinuxHostingSupport</title>
	<link>http://linuxhostingsupport.net/blog</link>
	<description>Everything About _Linux WebHosting_</description>
	<lastBuildDate>Sun, 05 Sep 2010 14:00:12 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>error: unpacking of archive failed on file /usr/bin/xxxx: cpio: open Failed</title>
		<description><![CDATA[The error message &#8220;unpacking of archive failed on file /usr/bin/xxxx: cpio: open Failed&#8221; indicates that the system failed to install the rpm since it cannot unpack the package under the /usr/bin directory.
For example, you may see the error message as stated below while installing a &#8216;nano&#8217; package using yum

Error unpacking rpm package nano-1.x.x.i386
error: unpacking of [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/error-unpacking-of-archive-failed-on-file-usrbinxxxx-cpio-open-failed</link>
			</item>
	<item>
		<title>phpize: command not found</title>
		<description><![CDATA[You may receive the error &#8220;-bash: phpize: command not found&#8221; while executing the &#8220;phpize&#8221; command. The reason is the php-devel package is not installed on the server. The easiest way to install the package is to use &#8216;yum&#8217;.
SSH to your server as root and execute:
# yum install php-devel
Once done, you should be able to execute [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/phpize-command-not-found</link>
			</item>
	<item>
		<title>Can&#8217;t create/write to file /tmp/ (Errcode: 13)</title>
		<description><![CDATA[The error message &#8220;Can&#8217;t create/write to file /tmp/&#8221; appears when any application tries to write it&#8217;s temporary files to the /tmp directory and it is unable to write to due to the permission issue. In such a case, make sure the permissions of the /tmp directory is writable i.e. 1777.
1) SSH to your server as [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/cant-createwrite-to-file-tmp-errcode-13</link>
			</item>
	<item>
		<title>Problem adding a database user in plesk Or restarting mysql: Table mysql.servers doesn&#8217;t exist</title>
		<description><![CDATA[You may receive a &#8220;Table &#8216;mysql.servers&#8217; doesn&#8217;t exist&#8221; error message while adding a database user in Plesk OR while restarting the Mysql service. The complete error message look like:
Error: Connection to the database server has failed:
Table &#8216;mysql.servers&#8217; doesn&#8217;t exist
OR
Can&#8217;t open and lock privilege tables:
Table &#8216;mysql.servers&#8217; doesn&#8217;t exist
The problem mostly occurs when Mysql server is upgraded [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/problem-adding-a-database-user-in-plesk-or-restarting-mysql-table-mysql-servers-doesnt-exist</link>
			</item>
	<item>
		<title>make: ffmpeg_frame.lo error while compiling ffmpeg-php</title>
		<description><![CDATA[The error message &#8220;make: *** [ffmpeg_frame.lo] Error 1&#8243; is received while compiling ffmpeg-php and the reason is  the misspelled file name. If you notice, &#8220;ffmpeg_frame.lo&#8221; file is missing from the ffmpeg-php directory, instead a file called &#8220;ffmpeg_frame.loT&#8221; is present which shouldn&#8217;t be there.
The solution is to rename the file from ffmpeg_frame.loT to ffmpeg_frame.lo. Go to [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/make-ffmpeg_frame-lo-error-while-compiling-ffmpeg-php</link>
			</item>
	<item>
		<title>ffmpeg: error while loading shared libraries: libavdevice.so.52: cannot open shared object file</title>
		<description><![CDATA[The &#8220;loading shared libraries&#8221; error message is received when ffmpeg is not able to locate the file libavdevice.so.52. This happens when either the file is missing from the server OR ffmpeg is not looking at the path the file is in. You see the following error while executing the &#8216;ffmpeg&#8217; command:
[root@server ~]# ffmpeg
ffmpeg: error while [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/ffmpeg-error-while-loading-shared-libraries-libavdevice-so-52-cannot-open-shared-object-file</link>
			</item>
	<item>
		<title>How to set OR enable Timestamp for the previously executed commands in Linux?</title>
		<description><![CDATA[Linux provides a command called &#8220;history&#8221; to view the previously executed commands on shell. By default, the &#8220;history&#8221; command display only the commands that were executed but not the date and time when they were executed. To display the time OR the date when the previous commands were executed on shell, you need to set [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/how-to-set-or-enable-timestamp-for-the-previously-executed-commands-in-linux</link>
			</item>
	<item>
		<title>How to Block Ftp Access/Port using iptables OR CSF?</title>
		<description><![CDATA[The default firewall that comes along with Linux is &#8220;iptables&#8221; and you can use iptables to block Ftp access/port on your server.
Completely block Ftp access on the server:

# iptables -A INPUT -p tcp --dport 21 -j DROP

Block Ftp access for a specific IP address, say 11.12.13.14

# iptables -A INPUT -p tcp -s 11.12.13.14 --dport 21 [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/how-to-block-ftp-accessport-using-iptables-or-csf</link>
			</item>
	<item>
		<title>How to check System Information and vendors of MotherBoard/Processor/RAM in Linux?</title>
		<description><![CDATA[To check the system&#8217;s information and manufacturers of MotherBoard, Processor, RAM and other hardware from the command line in a Linux machine, install the package &#8220;dmidecode&#8221;. You can search and install the dmidecode package using yum.
Check your Linux server architecture i.e. 32bit OR 64bit:
# uname -p
Search for the dmidecode package
# yum search dmidecode
Depending on the [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/how-to-check-system-information-and-vendors-of-motherboardprocessorram-in-linux</link>
			</item>
	<item>
		<title>Plesk Installation: Unable to install the psa-backup-manager</title>
		<description><![CDATA[You see a “Unable to install the psa-backup-manager” error while installing Plesk and it is because of the incomplete db4 packages needed for embedded database support for various applications. The complete error message looks like:
Determining the packages that need to be installed.
ERROR: Unable to install the &#8220;psa-backup-manager-9.x.x-cos5.buildxxxxxxx.00.i586&#8243; package.
Not all packages were installed.
Please, contact product technical [...]]]></description>
		<link>http://linuxhostingsupport.net/blog/plesk-installation-unable-to-install-the-psa-backup-manager</link>
			</item>
</channel>
</rss>
