<?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>ByREV &#187; Linux</title>
	<atom:link href="http://blog.4rev.net/topic/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.4rev.net</link>
	<description>4 REV NET</description>
	<lastBuildDate>Thu, 19 Nov 2009 00:36:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Changes your login password in LINUX</title>
		<link>http://blog.4rev.net/2009-09/changes-your-login-password-in-linux/</link>
		<comments>http://blog.4rev.net/2009-09/changes-your-login-password-in-linux/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 20:04:45 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[passwd]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8982</guid>
		<description><![CDATA[
To change your password in Linux OS, type:
passwd
The root user can change the password of any user by running passwd command with user name as argument:
passwd nick
will change nicks password. Running passwd without arguments as superuser/root, changes the root password.
]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-09/changes-your-login-password-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing APC Accelerator Into PHP5 (Fedora Core 11)</title>
		<link>http://blog.4rev.net/2009-09/installing-apc-accelerator-into-php5-fedora-core-11/</link>
		<comments>http://blog.4rev.net/2009-09/installing-apc-accelerator-into-php5-fedora-core-11/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 05:30:44 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[fedora 11]]></category>
		<category><![CDATA[fedora core]]></category>
		<category><![CDATA[PECL]]></category>
		<category><![CDATA[PHP accelerator]]></category>
		<category><![CDATA[php extension]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8961</guid>
		<description><![CDATA[APC is a PHP accelerator extension that can be installed using PECL.  PECL comes with the php-pear package, and must be installed
yum install php-pear
install APC dependencies so that PECL can build APC:
yum install php-devel httpd-devel
yum groupinstall &#8216;Development Tools&#8217;
yum groupinstall &#8216;Development Libraries&#8217;
Now that if all dependencies are installed, you can install APC php accelerator:
pecl install apc
now, [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-09/installing-apc-accelerator-into-php5-fedora-core-11/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>List number of files in a particular folder &#8211; Linux Command</title>
		<link>http://blog.4rev.net/2009-09/list-number-of-files-in-a-particular-folder-linux-command/</link>
		<comments>http://blog.4rev.net/2009-09/list-number-of-files-in-a-particular-folder-linux-command/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 04:38:27 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[number]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8869</guid>
		<description><![CDATA[
Determine how many files there are in the current folder/directory:
many ways  
1.  list files and folders:
[root@server1]# du -a /folders/test &#124; cut -d/ -f2 &#124; sort &#124; uniq -c &#124; sort -nr
17616 data
2. list files and folders
[root@server1]# ls -Ra1 /folders/test&#124;grep -v /&#124;grep -vx ""&#124;grep -vx "\.*"&#124;wc -l
17731
3. list files:
[root@server1]# find /folders/test/ -name "*.*" -print &#124; [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-09/list-number-of-files-in-a-particular-folder-linux-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install mbstring for PHP5 &#8211; Fedora Core 11 ( LINUX )</title>
		<link>http://blog.4rev.net/2009-09/install-mbstring-for-php5-fedora-core-11-linux/</link>
		<comments>http://blog.4rev.net/2009-09/install-mbstring-for-php5-fedora-core-11-linux/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 13:36:00 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[core 11]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[mbstring]]></category>
		<category><![CDATA[php-mbstring]]></category>
		<category><![CDATA[PHP5]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8857</guid>
		<description><![CDATA[if you use PhpMyAdmin without install mbstring php extension, you get the warning about this:
The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
Install mbstring PHP extension using YUM:
root@server1 /]# yum [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-09/install-mbstring-for-php5-fedora-core-11-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7-Zip compression options -mx ( LINUX )</title>
		<link>http://blog.4rev.net/2009-09/7-zip-compression-options-mx-linux/</link>
		<comments>http://blog.4rev.net/2009-09/7-zip-compression-options-mx-linux/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 18:47:02 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[7-Zip]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[multithreading]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8851</guid>
		<description><![CDATA[This is the most important and useful option you can use and change the optimization settings in 7-Zip on the command line:
-mx, 7-Zip compression switch:

-mx0 &#8211; Don&#8217;t compress at all. ( Is called &#8220;copy mode.&#8221; )
-mx1 &#8211; Very low compression. (It is called &#8220;fastest&#8221; mode. )
-mx3 -  Fast compression mode.
-mx5 -  Same as above, but [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-09/7-zip-compression-options-mx-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure your system to start Services at boot time ? &#8211; LINUX</title>
		<link>http://blog.4rev.net/2009-07/configure-your-system-to-start-services-at-boot-time-linux/</link>
		<comments>http://blog.4rev.net/2009-07/configure-your-system-to-start-services-at-boot-time-linux/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 04:27:47 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[chkconfig]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[levels 235]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8710</guid>
		<description><![CDATA[
Easy and fast, using chkconfig linux command.
To configure your system to start Apache at boot time:
chkconfig &#8211;levels 235 httpd on
for manual start apache:
/etc/init.d/httpd start
create the system startup links for Proftpd and start it:
chkconfig &#8211;levels 235 proftpd on
/etc/init.d/proftpd start

Chkconfig provides a simple command-line tool for maintaining the /etc/rc[0-6].d folder hierarchy by relieving system administrators of the [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-07/configure-your-system-to-start-services-at-boot-time-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; Disabling PHP Safe Mode for a specific folder</title>
		<link>http://blog.4rev.net/2009-05/linux-disabling-php-safe-mode-for-a-specific-folder/</link>
		<comments>http://blog.4rev.net/2009-05/linux-disabling-php-safe-mode-for-a-specific-folder/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:51:06 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Disabling SafeMode]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[PHP 6]]></category>
		<category><![CDATA[PHP Safe Mode]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[safe_mode]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8457</guid>
		<description><![CDATA[using .htaccess file:

create the .htaccess file
the content of the .htaccess file should be:
php_value safe_mode "1"


using php.ini file

upload to specific folder the php.ini file
in php.ini enter this command
safe_mode = Off


for globall efect, search php.ini in /etc/ folder and chnage safe_mode = On with safe_mode = Off !
NOTE: Php Safe Mode was removed in PHP 6.0.0. (features.safe-mode)
]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-05/linux-disabling-php-safe-mode-for-a-specific-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; Delete all files and folders in a folder recursively</title>
		<link>http://blog.4rev.net/2009-05/linux-delete-all-files-and-folders-in-a-folder-recursively/</link>
		<comments>http://blog.4rev.net/2009-05/linux-delete-all-files-and-folders-in-a-folder-recursively/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:35:50 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[delete folder]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[exec linux]]></category>
		<category><![CDATA[find linux]]></category>
		<category><![CDATA[ommand]]></category>
		<category><![CDATA[rm linux]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=8453</guid>
		<description><![CDATA[Linux command that will delete all files &#38; folders in a certain directory:
for current path

cd to directory
rm -Rf *

or for absolute path:

 rm -Rf /home/some/directory/*

another option (this will only delete files of type f which is a regular file):

find /some/path/ -type f -exec rm -f &#8216;{}&#8217; \;

If you are trying to delete too many files [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-05/linux-delete-all-files-and-folders-in-a-folder-recursively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SSH Account on Free Shell Servers</title>
		<link>http://blog.4rev.net/2009-01/free-ssh-account-on-free-shell-servers/</link>
		<comments>http://blog.4rev.net/2009-01/free-ssh-account-on-free-shell-servers/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 10:16:31 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Amber]]></category>
		<category><![CDATA[Bshellz]]></category>
		<category><![CDATA[Caledonia]]></category>
		<category><![CDATA[ClueNet]]></category>
		<category><![CDATA[Devilix]]></category>
		<category><![CDATA[Free Shell]]></category>
		<category><![CDATA[Free Shell Servers]]></category>
		<category><![CDATA[Free SSH]]></category>
		<category><![CDATA[Free SSH Account]]></category>
		<category><![CDATA[Geekshells]]></category>
		<category><![CDATA[hax.tor]]></category>
		<category><![CDATA[IRC Shell]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netburst]]></category>
		<category><![CDATA[Nonlogic]]></category>
		<category><![CDATA[NullShells]]></category>
		<category><![CDATA[psybnc]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Shell Servers]]></category>
		<category><![CDATA[UnixPod]]></category>

		<guid isPermaLink="false">http://blog.4rev.net/?p=7309</guid>
		<description><![CDATA[Amber 
Hardware: Several Pentium 4 and Celeron based machines
Operating system: FreeBSD, Debian Linux
Quota: 100MB
Internet connection: 100mbit/s
Services/programs: Typical development, web, email tools.  No IRC
IRC access: No
Background processes allowed: Yes
Other info: Amber has been offering free services since 1999.
bsd.miki.eu.org
Hardware: Intel Pentium 166MHz, 128MB RAM
Operating system: FreeBSD
Quota: 30MB, more on request
Internet connection: 460kbs
Services/programs: unrestricted shell access, http, [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2009-01/free-ssh-account-on-free-shell-servers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Server BackUP</title>
		<link>http://blog.4rev.net/2008-03/server-backup/</link>
		<comments>http://blog.4rev.net/2008-03/server-backup/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 22:17:16 +0000</pubDate>
		<dc:creator>byrev</dc:creator>
				<category><![CDATA[Divertisment]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Idei bune - idei rele]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[7-Zip]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup mysql]]></category>
		<category><![CDATA[servere]]></category>

		<guid isPermaLink="false">http://byrev.net/2008-03/server-backup/</guid>
		<description><![CDATA[Au trecut cred ca vreo 2 luni de cand nu am mai facut un backup general la servere asa ca, azi a venit momentul sa&#8217;mi asigur un somn mai &#8220;linistit&#8221; si am facut un backup la bazele de date , pe care le consider cele mai importante, pentru ca oricum restul informatiei o am pe [...]]]></description>
		<wfw:commentRss>http://blog.4rev.net/2008-03/server-backup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
