<?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>EAK Just Debian Guru Page :)</title>
	<atom:link href="http://eakcorp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eakcorp.com</link>
	<description>Just another Linux weblog</description>
	<lastBuildDate>Sun, 21 Feb 2010 19:34:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Move Apache domlogs to second disk drive or any where</title>
		<link>http://eakcorp.com/2010/02/move-apache-domlogs-to-second-disk-drive-or-any-where/</link>
		<comments>http://eakcorp.com/2010/02/move-apache-domlogs-to-second-disk-drive-or-any-where/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 19:34:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sunucu]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=240</guid>
		<description><![CDATA[Its a simple job and recommended appraoch is to stop Apache before moving domlogs so it will bring downtime. Here is how you can do it:

Quote:
service httpd stop
ps ax &#124; grep httpd  (Verify that no httpd process still running)
cd /usr/local/apache
mkdir /home2/apache ( Considering /home2 as your new drive)
mv domlogs /home2/apache/
ln -s /home2/apache/domlogs /usr/local/apache/domlogs
ls -la [...]]]></description>
			<content:encoded><![CDATA[<p>Its a simple job and recommended appraoch is to stop Apache before moving domlogs so it will bring downtime. Here is how you can do it:<br />
<!-- BEGIN TEMPLATE: bbcode_quote --></p>
<div>Quote:</div>
<p><strong>service httpd stop<br />
ps ax | grep httpd  (Verify that no httpd process still running)<br />
cd /usr/local/apache<br />
mkdir /home2/apache ( Considering /home2 as your new drive)<br />
mv domlogs /home2/apache/<br />
ln -s /home2/apache/domlogs /usr/local/apache/domlogs<br />
ls -la /usr/local/apache/ (Verify the link)<br />
service httpd start</strong></p>
<p>http://forums.cpanel.net/f5/move-apache-domlogs-second-disk-drive-98821.html</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/02/move-apache-domlogs-to-second-disk-drive-or-any-where/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Pidgin 2.6.2 on Lenny</title>
		<link>http://eakcorp.com/2010/02/install-pidgin-2-6-2-on-lenny/</link>
		<comments>http://eakcorp.com/2010/02/install-pidgin-2-6-2-on-lenny/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 08:22:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Pidgin]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=235</guid>
		<description><![CDATA[The version of Pidgin that is in the Lenny repositories has some problems. It’s an older version and does not work with Yahoo messenger, usually you can’t get the proper certifcate from Yahoo in Pidgin. I attempted to install it myself using the version of Pidgin for Sid by downloading the files from Debian. I [...]]]></description>
			<content:encoded><![CDATA[<p>The version of Pidgin that is in the Lenny repositories has some problems. It’s an older version and does not work with Yahoo messenger, usually you can’t get the proper certifcate from Yahoo in Pidgin. I attempted to install it myself using the version of Pidgin for Sid by downloading the files from Debian. I ran into dependency issue after issue and finally decided just to go with backports.  This is the easiest way to install Pidgin 2.6 on Debian Lenny.</p>
<p>Using <strong>Lenny-Backports</strong> you can<strong> install Pidgin 2.6.2 on Debian Lenny</strong>.<br />
<span id="more-235"></span></p>
<blockquote><p>Backports are recompiled packages from testing (mostly) and unstable (in a few cases only, e.g. security updates), so they will run without new libraries (wherever it is possible) on a stable Debian distribution. I recommend you to pick out single backports which fits your needs, and not to use all backports available here.</p>
<p><a href="http://www.backports.org/dokuwiki/doku.php">-from backports.org</a></p></blockquote>
<p>To add backports to your apt sources do the following steps.</p>
<p>open up <strong>/etc/apt/sources.list</strong> in your editor of choice (as root)</p>
<blockquote><p>add the line:  <strong>deb http://www.backports.org/debian lenny-backports main contrib non-free</strong></p></blockquote>
<p>save the sources.list</p>
<blockquote><p><strong>apt-get update</strong></p></blockquote>
<p>Now you need to add key from backports.</p>
<blockquote><p><strong>apt-get install debian-backports-keyring<br />
</strong></p>
<p>or</p>
<p><strong>gpg –keyserver hkp://subkeys.pgp.net –recv-keys 16BA136C<br />
gpg –export 16BA136C | apt-key add -<br />
</strong></p>
<p>or</p>
<p><strong>wget -O – http://backports.org/debian/archive.key | apt-key add -</strong></p></blockquote>
<p>Now I would suggest removing the current pidgin install.</p>
<blockquote><p><strong>apt-get remove pidgin</strong></p></blockquote>
<p>Once it is removed use the -t lenny-backports flag to install pidgin.</p>
<blockquote><p><strong>apt-get install -t lenny-backports pidgin</strong></p></blockquote>
<p>http://www.debiantoday.com/install-pidgin-2-6-2-on-lenny/</p>
<p><!-- end #sidebar --></p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/02/install-pidgin-2-6-2-on-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>`perl: warning: Please check that your locale settings` error on debian</title>
		<link>http://eakcorp.com/2010/02/perl-warning-please-check-that-your-locale-settings-error-on-debian/</link>
		<comments>http://eakcorp.com/2010/02/perl-warning-please-check-that-your-locale-settings-error-on-debian/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 14:46:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=233</guid>
		<description><![CDATA[
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = "en_DE:en_US:en_GB:en",
        LC_ALL = (unset),
        LANG = "en_US"
    are supported and installed on your system.
perl: warning: Falling back [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<pre dir="ltr">perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = "en_DE:en_US:en_GB:en",
        LC_ALL = (unset),
        LANG = "en_US"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
</pre>
</blockquote>
<p>dpkg-reconfigure locales</p>
<p>good luck ...</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/02/perl-warning-please-check-that-your-locale-settings-error-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>if you are having problems with RPM&#8217;s, you can just get the CLI version of WinRar</title>
		<link>http://eakcorp.com/2010/01/if-you-are-having-problems-with-rpms-you-can-just-get-the-cli-version-of-winrar/</link>
		<comments>http://eakcorp.com/2010/01/if-you-are-having-problems-with-rpms-you-can-just-get-the-cli-version-of-winrar/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 22:06:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sunucu]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=231</guid>
		<description><![CDATA[Alternativley if you are having problems with RPM's, you can just get the CLI version of WinRar directly from www.rarlab.com. Make sure you have Glibc 2.4 though.
# wget http://rarlab.com/rar/rarlinux-3.7.1.tar.gz
# tar xvzf rarlinux*
# cd rar
# make
# make install
Hope this helps.
]]></description>
			<content:encoded><![CDATA[<p>Alternativley if you are having problems with RPM's, you can just get the CLI version of WinRar directly from <a href="http://www.rarlab.com/" target="_blank">www.rarlab.com</a>. Make sure you have Glibc 2.4 though.</p>
<p># wget <a href="http://rarlab.com/rar/rarlinux-3.7.1.tar.gz" target="_blank">http://rarlab.com/rar/rarlinux-3.7.1.tar.gz</a><br />
# tar xvzf rarlinux*<br />
# cd rar<br />
# make<br />
# make install</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/if-you-are-having-problems-with-rpms-you-can-just-get-the-cli-version-of-winrar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centos Pure-ftp Problem {Lxadmin pure-ftp problemi}</title>
		<link>http://eakcorp.com/2010/01/centos-pure-ftp-problem-lxadmin-pure-ftp-problemi/</link>
		<comments>http://eakcorp.com/2010/01/centos-pure-ftp-problem-lxadmin-pure-ftp-problemi/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 09:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sunucu]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=227</guid>
		<description><![CDATA[Merhabalar, bu problem pure-ftpd nin son surumlerinde ortaya cikiyor, tabi boyle olunca celiskiye dusmemek elde degil, guncel sistem herzaman daha guvenlik acisinda daha iidir fakat butur problemlerin cikacagini dusunmek biraz kafa aritiyor:) gordugum kadariyla bu sorun lxadmin yuklu centos sunucularda meydana geliyor, cozumu basit yapmamiz gereken pure-ftp yi xinet 'in kontrolunden cikartmamiz,
rm /etc/xinet.d/pure-ftpd
Bu islem yeterli [...]]]></description>
			<content:encoded><![CDATA[<p>Merhabalar, bu problem pure-ftpd nin son surumlerinde ortaya cikiyor, tabi boyle olunca celiskiye dusmemek elde degil, guncel sistem herzaman daha guvenlik acisinda daha iidir fakat butur problemlerin cikacagini dusunmek biraz kafa aritiyor:) gordugum kadariyla bu sorun lxadmin yuklu centos sunucularda meydana geliyor, cozumu basit yapmamiz gereken pure-ftp yi xinet 'in kontrolunden cikartmamiz,</p>
<blockquote><p>rm /etc/xinet.d/pure-ftpd</p></blockquote>
<p>Bu islem yeterli gelir , sorun duzelmezse eger , pure-ftpd yi  kaldirip tekrar kurmamiz gerekir.</p>
<blockquote><p>yum remove pure-ftpd<br />
yum install pure-ftpd</p></blockquote>
<p>Daha sonra yapmamiz gereken daha onceki kayitli olan `lxadmin tarafindan olusturulan fptuser larimizi tanitmamiz lazim` pureftpd.pdb  pure-ftp.conf dosyamizda etkinlestiriyoruz.</p>
<blockquote><p>nano /etc/pure-ftpd/pure-ftpd.conf<br />
dosyayi actiktan sonra<br />
#PureDB                        /etc/pure-ftpd/pureftpd.pdb<br />
yukardaki satiri asagidaki sekilde degistiriyoruz<br />
PureDB                        /etc/pure-ftpd/pureftpd.pdb</p></blockquote>
<p>Kayit edip cikiyoruz.`ctrl-x` pure-ftpd yi durdurup tekrar baslatiyoruz. hepsi bukkadar.</p>
<blockquote><p>/etc/init.d/pure-ftpd stop<br />
/etc/init.d/pure-ftpd start</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/centos-pure-ftp-problem-lxadmin-pure-ftp-problemi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian Lenny Timezone Problems</title>
		<link>http://eakcorp.com/2010/01/debian-lenny-timezone-problems/</link>
		<comments>http://eakcorp.com/2010/01/debian-lenny-timezone-problems/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 21:29:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sunucu]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=221</guid>
		<description><![CDATA[Hoi hoi , Debian lenny de surekli karsilastigim ve karsilasiligini dusundugum timezone sorununun cozumunu kisaca ve basitce anlatacam,
cat timezone --&#62;America/New_York -&#62;Europe/Istanbul
olarak   biz bu degeri  degisitiriyoruz ve bu sorundan kurtuluyoruz.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://eakcorp.com/wp-content/uploads/openlogo-100.jpg"><img class="size-full wp-image-220 alignleft" title="openlogo-100" src="http://eakcorp.com/wp-content/uploads/openlogo-100.jpg" alt="" width="100" height="123" /></a>Hoi hoi , Debian lenny de surekli karsilastigim ve karsilasiligini dusundugum timezone sorununun cozumunu kisaca ve basitce anlatacam,</p>
<blockquote><p>cat timezone --&gt;America/New_York -&gt;Europe/Istanbul</p>
<p>olarak   biz bu degeri  degisitiriyoruz ve bu sorundan kurtuluyoruz.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/debian-lenny-timezone-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Ubuntu themes for karmic Users</title>
		<link>http://eakcorp.com/2010/01/nice-ubuntu-themes-for-karmic-users/</link>
		<comments>http://eakcorp.com/2010/01/nice-ubuntu-themes-for-karmic-users/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 07:38:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Temalar]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=207</guid>
		<description><![CDATA[

This tutorial will explain how to install zgegblog-themes in ubuntu jaunty and intrepid
Thanks to Zgegblog for this fantastic themes
 
First edit /etc/apt/sources.list file
sudo gedit /etc/apt/sources.list
add the following lines
deb http://ppa.launchpad.net/bisigi/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/bisigi/ppa/ubuntu karmic main
Save and exit the file
add the GPG key using the following command
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 1781bd45c4c3275a34bb6aec6e871c4a881574de
Update the source list using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://eakcorp.com/2010/01/nice-ubuntu-themes-for-karmic-users/"><img class="alignnone size-full wp-image-213" title="wild-pres" src="http://eakcorp.com/wp-content/uploads/wild-pres.jpg" alt="" width="720" height="263" /></a><br />
<span id="more-207"></span></p>
<p>This tutorial will explain how to install zgegblog-themes in ubuntu jaunty and intrepid<br />
Thanks to <a onclick="javascript:pageTracker._trackPageview('/outbound/article/francois.vogelweith.com');" href="http://francois.vogelweith.com/" target="_blank">Zgegblog</a> for this fantastic themes<br />
<strong> </strong></p>
<p>First edit /etc/apt/sources.list file</p>
<blockquote><p>sudo gedit /etc/apt/sources.list</p></blockquote>
<p>add the following lines</p>
<blockquote><p>deb http://ppa.launchpad.net/bisigi/ppa/ubuntu karmic main<br />
deb-src http://ppa.launchpad.net/bisigi/ppa/ubuntu karmic main</p></blockquote>
<p>Save and exit the file</p>
<p>add the GPG key using the following command</p>
<blockquote><p>sudo apt-key adv <code>--</code>recv-keys <code>--</code>keyserver keyserver.ubuntu.com 1781bd45c4c3275a34bb6aec6e871c4a881574de</p></blockquote>
<p>Update the source list using the following command</p>
<blockquote><p>sudo aptitude update</p></blockquote>
<p>Install all the themes using the following command</p>
<blockquote><p>sudo aptitude install zgegblog-themes</p></blockquote>
<p>http://www.ubuntugeek.com/nice-ubuntu-themes-for-jaunty-and-intrepid-users.html</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/nice-ubuntu-themes-for-karmic-users/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ModSecurity SecResponseBodyLimit</title>
		<link>http://eakcorp.com/2010/01/modsecurity-secresponsebodylimit/</link>
		<comments>http://eakcorp.com/2010/01/modsecurity-secresponsebodylimit/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:11:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Guvenlik]]></category>
		<category><![CDATA[Sunucu]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=204</guid>
		<description><![CDATA[Merhabalar,
Karsilastigim bir sorunun cozumunu paylasmak istedim, Apache sunucumda , sitemaplari gosterirken belli bir kayittan sonra sitemap.php dosyasi hata veriyordu, 404 yada 500  hatasi veriyordu , bu sorunu  ModSecurity SecResponseBodyLimit  degerini arttirarak cozebilirsiniz.
]]></description>
			<content:encoded><![CDATA[<p>Merhabalar,</p>
<p>Karsilastigim bir sorunun cozumunu paylasmak istedim, Apache sunucumda , sitemaplari gosterirken belli bir kayittan sonra sitemap.php dosyasi hata veriyordu, 404 yada 500  hatasi veriyordu , bu sorunu  <strong>ModSecurity SecResponseBodyLimit  </strong>degerini arttirarak cozebilirsiniz.</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/modsecurity-secresponsebodylimit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Administration-Remote Control (RCON)</title>
		<link>http://eakcorp.com/2010/01/administration-remote-control-rcon/</link>
		<comments>http://eakcorp.com/2010/01/administration-remote-control-rcon/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 09:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Games]]></category>
		<category><![CDATA[Urban Terror]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=199</guid>
		<description><![CDATA[ "RCON" is short for remote control; it allows you to make changes to the server and gives you access to administrative commands when you're connected to a remote server. To use the RCON, you first need to enter the password by typing:
/rconpassword [yourpassword]
After you have enter the RCON password you can access all the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://garret.netsons.org/wp-includes/images/blog/urbanterror_logo.png" alt="" width="128" height="128" /> "RCON" is short for remote control; it allows you to make changes to the server and gives you access to administrative commands when you're connected to a remote server. To use the RCON, you first need to enter the password by typing:<br />
/rconpassword [yourpassword]</p>
<p>After you have enter the RCON password you can access all the RCON capabilities, by typing:<br />
/rcon [command]<br />
RCON Commands</p>
<p>These commands allow individuals to remotely administer a server. Their use is based on having the RCON password. These commands are to be used in the console.<br />
Kicking<br />
<span id="more-199"></span><br />
There are two ways to do this. The first is to kick them using their player name:<br />
/rcon kick [playername]</p>
<p>The second is to use their user number on the server:<br />
/rcon status (this is to get a list of players and their user numbers)<br />
/rcon clientkick [usernumber]<br />
Restart Server</p>
<p>While you can't actually restart the server, you can reload the server.cfg, which amounts to about the same thing.<br />
/rcon exec server.cfg<br />
Ban an IP</p>
<p>The first thing that you have to do before banning anyone is to add this line to the server.cfg file:<br />
set filterBan 1</p>
<p>Now you can add an IP to the ban list by typing at the console:<br />
/rcon addIP [ip_address] (you can also use IP masks)</p>
<p>To remove an IP from the list:<br />
/rcon removeIP [ip_address]</p>
<p>To list the IPs currently banned use the banlist.txt file.<br />
Referees</p>
<p>Referees are a feature that has been added to help server admins manage their servers. The referee is like a less powerful version of RCON: you can set a password and give it out to trusted players. Unlike RCON, the referee has limited control over how they can affect the server. It gives them the ability to do things like mute annoying players, kick them and even ban them from the server for up to 3 hours. All referee commands start with the ref command. The basic referee command looks something like this:<br />
ref {refcommand} [{parameters} ...]</p>
<p>Referee commands can only be used by a client who has logged on as a referee using the reflogin command with a valid password. If a password has not been set, or if the server has disabled the referee function, no one will be able to login as a referee.<br />
Enabling Referees</p>
<p>To enable a referee, a server admin first needs to set the referee password:<br />
/g_refpass "password"</p>
<p>Then set whether the referee can ban people:<br />
/g_refNoBan 0 (to give them ban power)<br />
/g_refNoBan 1 (to stop them from banning players)</p>
<p>Finally enable referees:<br />
/g_referee 1</p>
<p>Be very careful with allowing referees to ban players on your server, unless you can trust them to use the power responsibly. Otherwise, you might find angry players boycotting your server!<br />
Log on as Referee</p>
<p>To login as a referee you need to ask the server administrator for the referee password. Once you have it, you can login by pulling down the Quake III console and typing:<br />
/reflogin "password"</p>
<p>If you enter the password correctly and the server is set up to allow referees, then you will receive a message telling you that you have successfully logged in. Once logged in you can use all the referee commands. These commands and their effects are listed below.</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/administration-remote-control-rcon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>B3 Bot Manual &#8211; Commands</title>
		<link>http://eakcorp.com/2010/01/b3-bot-admin-command/</link>
		<comments>http://eakcorp.com/2010/01/b3-bot-admin-command/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 08:57:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[B3 Manual - Commands]]></category>
		<category><![CDATA[Linux Games]]></category>
		<category><![CDATA[Urban Terror]]></category>

		<guid isPermaLink="false">http://eakcorp.com/?p=195</guid>
		<description><![CDATA[Level determins the minimum level needed to run the command.
Scope determins whether the message is displayed in public view, private view, or both.
!command  [] description
Time Suffixes
Commands that deal with time duration like !tempban can use time suffixes.
m = minutes
d = days
h = hours
w = weeks

Example:
1d = 1 day
3h = 3 hours
Player Identification
Commands that accept [...]]]></description>
			<content:encoded><![CDATA[<p>Level determins the minimum level needed to run the command.<br />
Scope determins whether the message is displayed in public view, private view, or both.</p>
<p>!command <required parameters> [<optional parameters>] description<br />
Time Suffixes</p>
<p>Commands that deal with time duration like !tempban can use time suffixes.</p>
<p>m = minutes</p>
<p>d = days</p>
<p>h = hours</p>
<p>w = weeks<br />
<span id="more-195"></span></p>
<p>Example:</p>
<p>1d = 1 day</p>
<p>3h = 3 hours</p>
<p>Player Identification</p>
<p>Commands that accept player designations can use several inputs.<br />
Partial Name</p>
<p>The simplest player identifier is the players name. You can use any part of the player name. Only enough charachters to match the players name uniquely is needed. If more than one player on the server has a simular name, you will be prompted with all players matching that name and thier client id.</p>
<p>Example:</p>
<p>!warn playe cuss</p>
<p>This will first search for players with “playe” in thier name; including “player”, “unkownplayer”, and “played”. If more that one player is found a list of results will be shown to pick a more specific user.</p>
<p>Tip:<br />
You can use the !find to show what players match a given name.<br />
Client ID</p>
<p>The client ID is the number assigned to the player by the game itself. The client ID only works for the current gaming session. For a list of players’ client IDs, use the !list command. If a players name is too hard to type or there are more than one players with simuilar names, you can use the client id to single them out.</p>
<p>Example:</p>
<p>!kick 3 tk</p>
<p>Database ID</p>
<p>The Database ID is the players unique identification within the B3 database. It is prepended with an “@” and is often referred to as the “at ID”. This ID is displayed with the !* Leveltest command and the !lookup command. You can use this ID to perform actions against a player even when that player is not connected.</p>
<p>Example:</p>
<p>!makereg @1235</p>
<p>Tip:<br />
You can use the !lookup command to find offline users in the database.<br />
Admin Plugin</p>
<p>!register<br />
Level 0<br />
Scope Private</p>
<p>!register</p>
<p>register youself as a basic user</p>
<p>!help [<command|* Level>]<br />
Level 0<br />
Scope Private<br />
get info on how to use a command, you can use “*” for partial matches </p>
<p>!regtest<br />
Level 0<br />
Scope Public or Private<br />
display your current user status </p>
<p>!time<br />
Level 1<br />
Scope Public or Private<br />
display the servers current time </p>
<p>!maps<br />
Level 2<br />
Scope Public or Private<br />
list the server map rotation </p>
<p>!nextmap<br />
Level 2<br />
Scope Public or Private<br />
display the next map in rotation </p>
<p>!seen <name><br />
Level 2<br />
Scope Public or Private<br />
when was this player last seen? </p>
<p>!admins<br />
Level 20<br />
Scope Public or Private<br />
lists all the online admins </p>
<p>!b3<br />
Level 20<br />
Scope Public or Private<br />
say b3 version info </p>
<p>!greeting [<greeting>]<br />
Level 20<br />
Scope Private<br />
set or list your greeting </p>
<p>!list<br />
Level 20<br />
Scope Public or Private<br />
list all connected players </p>
<p>!say<br />
Level 20<br />
Scope Public<br />
say a message to all players </p>
<p>!spam <name> <message><br />
Level 20<br />
Scope Public<br />
spam a predefined message </p>
<p>!spams<br />
Level 20<br />
Scope Private<br />
list spam messages </p>
<p>!warn <name> [<warning>]<br />
Level 20<br />
Scope Public<br />
warn user </p>
<p>!warninfo <name><br />
Level 20<br />
Scope Public or Private<br />
display how many warning points a user has </p>
<p>!warnremove <name><br />
Level 20<br />
Scope Public<br />
remove a users last warning </p>
<p>!warns<br />
Level 20<br />
Scope Private<br />
list warnings </p>
<p>!warntest <warning><br />
Level 20<br />
Scope Private<br />
test a warning </p>
<p>!admintest<br />
Level 40<br />
Scope Public or Private<br />
display your current user status </p>
<p>!aliases <name><br />
Level 40<br />
Scope Public or Private<br />
list a players aliases </p>
<p>!baninfo <name><br />
Level 40<br />
Scope Public or Private<br />
display how many bans a user has </p>
<p>!find <name><br />
Level 40<br />
Scope Public or Private<br />
test to find a connected player </p>
<p>!kick <name> [<reason>]<br />
Level 40<br />
Scope Public<br />
kick a player </p>
<p>!leveltest [<name>]<br />
Level 40<br />
Scope Public or Private<br />
display the status of a user </p>
<p>!scream <message><br />
Level 40<br />
Scope Public<br />
yell a message to all players </p>
<p>!tempban <name> <duration> [<reason>]<br />
Level 40<br />
Scope Public<br />
Temporarily ban a player. You can use Time Suffixes for durations. </p>
<p>!ban <name> [<reason>]<br />
Level 60<br />
Scope Public<br />
ban a player for settings.ban_duration time </p>
<p>!permban <name> [<reason>]<br />
Level 80<br />
Scope Public<br />
Permantly ban a player. </p>
<p>!spank <name> [<reason>]<br />
Level 60<br />
Scope Public<br />
spank a player, naughty boy! </p>
<p>!unban <name><br />
Level 60<br />
Scope Public<br />
un-ban a player </p>
<p>!clear [
<player>]<br />
Level 80<br />
Scope Public<br />
clear all tk points and warnings </p>
<p>!lookup <name><br />
Level 80<br />
Scope Private<br />
lookup a player in the database </p>
<p>!makereg <name><br />
Level 80<br />
Scope Public<br />
make a name a regular * Level 1 user </p>
<p>!map<br />
<map>
Level 80<br />
Scope Public<br />
switch current map </p>
<p>!restart<br />
Level 80<br />
Scope Public<br />
restart b3 </p>
<p>!warnclear <name><br />
Level 80<br />
Scope Public<br />
clear all of a users warnings </p>
<p>!clientinfo <name> <field><br />
Level 90<br />
Scope Public or Private<br />
get info about a client </p>
<p>!cmdlevel <command> <level><br />
Level 90<br />
Scope Private<br />
set a commands level </p>
<p>!delgroup <group><br />
Level 90<br />
Scope Private<br />
remove a group and remove all clients from the group </p>
<p>!editgroup <group> <-n|-k|-l> <value><br />
Level 90<br />
Scope Private<br />
change a group’s settings </p>
<p>!groups <name><br />
Level 90<br />
Scope Private<br />
lists all the player’s groups </p>
<p>!newgroup <keyword> <level> <name><br />
Level 90<br />
Scope Private<br />
create a new group </p>
<p>!pause <duration><br />
Level 90<br />
Scope Public<br />
pause the bot from parsing </p>
<p>!putgroup <client> <group><br />
Level 90<br />
Scope Public or Private<br />
add a client to a group </p>
<p>!rebuild<br />
Level 90<br />
Scope Private<br />
sync up connected players </p>
<p>!ungroup <client> <group><br />
Level 90<br />
Scope Public or Private<br />
remove a client from a group </p>
<p>!die<br />
Level 100<br />
Scope Public or Private<br />
shutdown b3 </p>
<p>!disable
<plugin>
Level 100<br />
Scope Public or Private<br />
disable a plugin </p>
<p>!enable
<plugin>
Level 100<br />
Scope Public or Private<br />
enable a disabled plugin </p>
<p>!reconfig<br />
Level 100<br />
Scope Private<br />
re-load all configs<br />
Stats Plugin</p>
<p>!mapstats [<name>]<br />
Level 1<br />
Scope Public or Private<br />
display the current maps stats for a user </p>
<p>!testscore <name><br />
Level 1<br />
Scope Public or Private<br />
show how many skill points you would get if you killed {P name}<br />
Team Damage Plugin</p>
<p>!forgive<br />
Level 0<br />
Scope Public</p>
<p>!forgive [<name>]</p>
<p>forgive a player for team damaging</p>
<p>@!forgiveall @<br />
Level 0<br />
Scope Public<br />
forgive all attacker tk points </p>
<p>@!forgiveprev @<br />
Level 0<br />
Scope Public<br />
forgive the last person to tk you </p>
<p>@!forgivelist @<br />
Level 0<br />
Scope Private<br />
list all the players who have shot you </p>
<p>!grudge [<name>]<br />
Level 0<br />
Scope Public<br />
grudge a player for team damaging, a grudge player will not be auto-forgiven </p>
<p>!forgiveinfo <name><br />
Level 20<br />
Scope Public or Private<br />
display a user’s tk points </p>
<p>!forgiveclear<br />
Level 60<br />
Scope Public or Private</p>
<p>!forgiveclear <name></p>
<p>clear a user’s tk points</p>
]]></content:encoded>
			<wfw:commentRss>http://eakcorp.com/2010/01/b3-bot-admin-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
