<?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>LinuxConfig.net</title>
	<atom:link href="http://linuxconfig.net/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxconfig.net</link>
	<description>Linux and Unix based systems configurations, manuals, HOWTOs and more ...</description>
	<lastBuildDate>Fri, 18 May 2012 12:50:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Sending mail from bash [Script]</title>
		<link>http://linuxconfig.net/manual-howto/sending-mail-from-bash-script.html</link>
		<comments>http://linuxconfig.net/manual-howto/sending-mail-from-bash-script.html#comments</comments>
		<pubDate>Fri, 18 May 2012 05:55:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Manuals, HOWTOs]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1820</guid>
		<description><![CDATA[The mail command can be used under Linux or UNIX bash, ksh, csh shell to send an email. To send a message to one or more people, mail can be invoked with arguments which are the names of people to whom the mail will be sent. You are then expected to type in your message, [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/manual-howto/send-mail-script.html' rel='bookmark' title='Sending mail from command line [Script]'>Sending mail from command line [Script]</a> <small>Mail content text is /tmp/message.txt mail -s 'Server Status Report'...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/key-combinations-in-bash-keyboard-shortcuts.html' rel='bookmark' title='Key combinations in Bash [Keyboard Shortcuts]'>Key combinations in Bash [Keyboard Shortcuts]</a> <small>Ctrl+A &#8211; Move cursor to the beginning of the command...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/shell-types.html' rel='bookmark' title='Shell types'>Shell types</a> <small>sh or Bourne Shell &#8211; the original shell still used...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The mail command can be used under Linux or UNIX <em>bash</em>, <em>ksh</em>, <em>csh shell</em> to send an email. To send a message to one or more people, mail can be invoked with arguments which are the names of people to whom the mail will be sent. You are then expected to type in your message, followed by an &lt;control-D&gt; at the beginning of a line. However, using the following syntax one can send email easily:</p>
<p>mail -s &#8216;Subject&#8217; yourmail@test.com</p>
<h3>Script</h3>
<pre class="brush:shell">#!/bin/bash
# Subject
SUBJECT="EMAIL-SUBJECT"
# To
TOEMAIL="tomail@test.com"
# Message
EMAILMESSAGE="/home/user/message.txt"
echo "This is email text" &gt;&gt;$EMAILMESSAGE
# Sending email using /bin/mail
/bin/mail -s "$SUBJECT" "$TOEMAIL" &lt; $EMAILMESSAGE</pre>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/manual-howto/send-mail-script.html' rel='bookmark' title='Sending mail from command line [Script]'>Sending mail from command line [Script]</a> <small>Mail content text is /tmp/message.txt mail -s 'Server Status Report'...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/key-combinations-in-bash-keyboard-shortcuts.html' rel='bookmark' title='Key combinations in Bash [Keyboard Shortcuts]'>Key combinations in Bash [Keyboard Shortcuts]</a> <small>Ctrl+A &#8211; Move cursor to the beginning of the command...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/shell-types.html' rel='bookmark' title='Shell types'>Shell types</a> <small>sh or Bourne Shell &#8211; the original shell still used...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/manual-howto/sending-mail-from-bash-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>atktopbm [Command]</title>
		<link>http://linuxconfig.net/commands/command-atktopbm.html</link>
		<comments>http://linuxconfig.net/commands/command-atktopbm.html#comments</comments>
		<pubDate>Wed, 16 May 2012 06:02:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[File, Directory]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[atktopbm]]></category>
		<category><![CDATA[CLI]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1709</guid>
		<description><![CDATA[Command atktopbm atktopbm — Convert Andrew Toolkit raster object to portable bitmap Syntax atktopbm [atkfile] Description atktopbm reads an Andrew Toolkit raster object as input and produces a portable bitmap as output. See also pbmtoatk, pbm Related posts: asciitopgm [Command] Command asciitopgm asciitopgm — Convert ASCII graphics into a portable... anytopnm [Command] Command anytopnm anytopnm [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-asciitopgm.html' rel='bookmark' title='asciitopgm [Command]'>asciitopgm [Command]</a> <small>Command asciitopgm asciitopgm — Convert ASCII graphics into a portable...</small></li>
<li><a href='http://linuxconfig.net/commands/command-anytopnm.html' rel='bookmark' title='anytopnm [Command]'>anytopnm [Command]</a> <small>Command anytopnm anytopnm — Attempt to convert an unknown type...</small></li>
<li><a href='http://linuxconfig.net/commands/command-diff.html' rel='bookmark' title='diff [Command]'>diff [Command]</a> <small>Command diff diff command shows the differences between two text...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command atktopbm</h2>
<p><strong>atktopbm</strong> — Convert Andrew Toolkit raster object to portable bitmap</p>
<h3>Syntax</h3>
<pre class="brush:shell">atktopbm [atkfile]</pre>
<h3>Description</h3>
<p>atktopbm reads an Andrew Toolkit raster object as input and produces a portable bitmap as output.</p>
<h3>See also</h3>
<p>pbmtoatk, pbm</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-asciitopgm.html' rel='bookmark' title='asciitopgm [Command]'>asciitopgm [Command]</a> <small>Command asciitopgm asciitopgm — Convert ASCII graphics into a portable...</small></li>
<li><a href='http://linuxconfig.net/commands/command-anytopnm.html' rel='bookmark' title='anytopnm [Command]'>anytopnm [Command]</a> <small>Command anytopnm anytopnm — Attempt to convert an unknown type...</small></li>
<li><a href='http://linuxconfig.net/commands/command-diff.html' rel='bookmark' title='diff [Command]'>diff [Command]</a> <small>Command diff diff command shows the differences between two text...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-atktopbm.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asciitopgm [Command]</title>
		<link>http://linuxconfig.net/commands/command-asciitopgm.html</link>
		<comments>http://linuxconfig.net/commands/command-asciitopgm.html#comments</comments>
		<pubDate>Wed, 16 May 2012 05:59:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[File, Directory]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[asciitopgm]]></category>
		<category><![CDATA[CLI]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1706</guid>
		<description><![CDATA[Command asciitopgm asciitopgm — Convert ASCII graphics into a portable graymap Syntax asciitopgm [-d divisor] height width [asciifile] Description Reads ASCII data as input. Produces a portable graymap with pixel values that are an approximation of the brightness of the ASCII characters, assuming black-on-white printing. In other words, a capital M is very dark, a [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-grep.html' rel='bookmark' title='grep [Command]'>grep [Command]</a> <small>Command grep grep &#8211; command provides search in one or...</small></li>
<li><a href='http://linuxconfig.net/commands/command-tail.html' rel='bookmark' title='tail [Command]'>tail [Command]</a> <small>Command tail Displays the last few lines of the file....</small></li>
<li><a href='http://linuxconfig.net/commands/command-dos2unix.html' rel='bookmark' title='dos2unix [Command]'>dos2unix [Command]</a> <small>Command dos2unix dos2unix command converts a text file format DOS/Mac...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command asciitopgm</h2>
<p><strong>asciitopgm</strong> — Convert ASCII graphics into a portable graymap</p>
<h3>Syntax</h3>
<pre class="brush:shell">asciitopgm [-d divisor] height width [asciifile]</pre>
<h3>Description</h3>
<p>Reads ASCII data as input. Produces a portable graymap with pixel values that are an approximation of the brightness of the ASCII characters, assuming black-on-white printing. In other words, a capital M is very dark, a period is very light, and a space is white. Input lines that are fewer than width characters are automatically padded with spaces.</p>
<p>The divisor argument is a floating-point number by which the output pixels are divided; the default value is 1.0. This can be used to adjust the brightness of the graymap; for example, if the image is too dim, reduce the divisor.</p>
<p>In keeping with (I believe) FORTRAN line-printer conventions, input lines beginning with a + (plus) character are assumed to overstrike the previous line, allowing a larger range of gray values.</p>
<p>This tool contradicts the message in the pbmtoascii manual: &#8220;Note that there is no asciitopbm tool—this transformation is one-way.&#8221;</p>
<h3>See also</h3>
<p>pbmtoascii, pgm</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-grep.html' rel='bookmark' title='grep [Command]'>grep [Command]</a> <small>Command grep grep &#8211; command provides search in one or...</small></li>
<li><a href='http://linuxconfig.net/commands/command-tail.html' rel='bookmark' title='tail [Command]'>tail [Command]</a> <small>Command tail Displays the last few lines of the file....</small></li>
<li><a href='http://linuxconfig.net/commands/command-dos2unix.html' rel='bookmark' title='dos2unix [Command]'>dos2unix [Command]</a> <small>Command dos2unix dos2unix command converts a text file format DOS/Mac...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-asciitopgm.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU as [Command]</title>
		<link>http://linuxconfig.net/commands/command-gnu-as.html</link>
		<comments>http://linuxconfig.net/commands/command-gnu-as.html#comments</comments>
		<pubDate>Wed, 16 May 2012 05:51:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[as]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[GNU as]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1701</guid>
		<description><![CDATA[Command GNU as GNU as — The portable GNU assembler Syntax as [ –a &#124; –al &#124; -as ][–D ][–f ][–I path ][–K ][–L ][–o objfile ][–R ][–v ][–w ][––\&#124;\ files ...] i960-only options: [ –ACA&#124; –ACA A &#124; –ACB &#124; –ACC&#124; –AKA&#124; –AKB &#124; –AKC&#124; –AMC][–b ][–no-relax ] m680x0-only options: [ –l ][–mc68000&#124; –mc68010&#124; [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-wc.html' rel='bookmark' title='wc [Command]'>wc [Command]</a> <small>Command wc Displays the number of bytes, words and lines...</small></li>
<li><a href='http://linuxconfig.net/commands/command-head.html' rel='bookmark' title='head [Command]'>head [Command]</a> <small>Command head head &#8211; command displays the first few lines...</small></li>
<li><a href='http://linuxconfig.net/commands/command-locate.html' rel='bookmark' title='locate [Command]'>locate [Command]</a> <small>Command locate Find Files and Directories Quickly and Efficiently Syntax...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command GNU as</h2>
<p><strong>GNU as</strong> — The portable GNU assembler</p>
<h3>Syntax</h3>
<pre class="brush:shell">as [ –a | –al | -as ][–D ][–f ][–I path ][–K ][–L ][–o objfile ][–R ][–v ][–w ][––\|\
files ...]</pre>
<p>i960-only options:</p>
<pre class="brush:shell">[ –ACA| –ACA A | –ACB | –ACC| –AKA| –AKB | –AKC| –AMC][–b ][–no-relax ]</pre>
<p>m680x0-only options:</p>
<pre class="brush:shell">[ –l ][–mc68000| –mc68010| –mc68020]</pre>
<h3>Description</h3>
<p>GNU as is really a family of assemblers. If you use (or have used) the GNU assembler on one architecture, you should find a fairly similar environment when you use it on another architecture. Each version has much in common with the others, including object file formats, most assembler directives (often called pseudo-ops) and assembler syntax.<br />
For information on the syntax and pseudo-ops used by GNU as, see as entry in info (or the manual Using as: The GNU Assembler).<br />
as is primarily intended to assemble the output of the GNU C compiler gcc for use by the linker ld. Nevertheless, we&#8217;ve tried to make as assemble correctly everything that the native assembler would. This doesn&#8217;t mean as always uses the same syntax as another assembler for the same architecture; for example, we know of several incompatible versions of 680&#215;0 assembly language syntax.<br />
Each time you run as, it assembles exactly one source program. The source program is made up of one or more files. (The standard input is also a file.)<br />
If as is given no filenames, it attempts to read one input file from the as standard input, which is normally your terminal. You may have to type Ctrl-D to tell as there is no more program to assemble. Use –– if you need to explicitly name the standard input file in your command line.<br />
as may write warnings and error messages to the standard error file (usually your terminal). This should not happen when as is run automatically by a compiler. Warnings report an assumption made so that as could keep assembling a flawed program; errors report a grave problem that stops the assembly.</p>
<h3>Options</h3>
<p>–a|–al|–as: Turn on assembly listings; –al, listing only, –as, symbols only, -a, everything.<br />
–D: This option is accepted only for script compatibility with calls to other assemblers; it has no effect on as.<br />
–f: &#8220;Fast&#8221;–skip preprocessing (assume source is compiler output).<br />
–I\path: Add path to the search list for .include directives.<br />
–K: Issue warnings when difference tables altered for long displacements.<br />
–L: Keep (in symbol table) local symbols, starting with L.<br />
–o\objfile: Name the object-file output from as.<br />
–R: Fold data section into text section.<br />
–v: Announce as version.<br />
–W: Suppress warning messages.<br />
––\|\files&#8230; Source files to assemble, or standard input (––).<br />
–Avar: (When configured for Intel 960.) Specify which variant of the 960 architecture is the target.<br />
–b: (When configured for Intel 960.) Add code to collect statistics about branches taken.<br />
–no-relax: (When configured for Intel 960.) Do not alter compare-and-branch instructions for long displacements; error if necessary.<br />
–l: (When configured for Motorola 68000.) Shorten references to undefined symbols to one word instead of two.<br />
–mc68000|–mc68010|–mc68020: (When configured for Motorola 68000.) Specify which processor in the 68000 family is the target (default 68020).</p>
<p>Options may be in any order, and may be before, after, or between filenames. The order of filenames is significant.<br />
The double hyphens command (—) by itself names the standard input file explicitly, as one of the files for as to assemble.<br />
Except for ––, any command line argument that begins with a hyphen (–) is an option. Each option changes the behavior of as. No option changes the way another option works. An option is a hyphen followed by one or more letters; the case of the letter is important. All options are optional.<br />
The –o option expects exactly one filename to follow. The filename may either immediately follow the option&#8217;s letter (compatible with older assemblers) or it may be the next command argument (GNU standard).<br />
These two command lines are equivalent:</p>
<pre class="brush:shell">
as –o my–object–file.o mumble.s
as –omy–object–file.o mumble.s
</pre>
<h3>See also</h3>
<p>as entry in info</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-wc.html' rel='bookmark' title='wc [Command]'>wc [Command]</a> <small>Command wc Displays the number of bytes, words and lines...</small></li>
<li><a href='http://linuxconfig.net/commands/command-head.html' rel='bookmark' title='head [Command]'>head [Command]</a> <small>Command head head &#8211; command displays the first few lines...</small></li>
<li><a href='http://linuxconfig.net/commands/command-locate.html' rel='bookmark' title='locate [Command]'>locate [Command]</a> <small>Command locate Find Files and Directories Quickly and Efficiently Syntax...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-gnu-as.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Review] Gnome 3.4</title>
		<link>http://linuxconfig.net/reviews/review-gnome-3-4.html</link>
		<comments>http://linuxconfig.net/reviews/review-gnome-3-4.html#comments</comments>
		<pubDate>Mon, 30 Apr 2012 12:16:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Gnome 3]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1696</guid>
		<description><![CDATA[Gnome 3.4, the third stable release in the 3.x series, is here. We couldn&#8217;t wait to try it out, since the last year has revealed Gnome 3 to be a desktop with a lot of potential, if a few rough edges. The first point to note is that Gnome 3.4 hasn&#8217;t set out to simply [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><b>Gnome 3.4</b>, the third stable release in the 3.x series, is here. We couldn&#8217;t wait to try it out, since the last year has revealed Gnome 3 to be a desktop with a lot of potential, if a few rough edges. The first point to note is that <b>Gnome 3.4</b> hasn&#8217;t set out to simply polish the rough edges, but has introduced a lot of welcome new features. The most significant is the work put in to the default web browser. Web (also known as Epiphany).</p>
<p>Thanks to its Webkit backend, it feels fast and passes the Acid3 test v/ith flying colours. What&#8217;s more, a new SQLite backend for the address bar has made that part of the interface much quicker too. We think it&#8217;s sad that many users will never notice these improvements, as most distributions will replace Web with Firefox in their default selections. The most striking changes are in its appearance, however, and it locks great. Every unnecessary part of the interface has been removed. No more status bar. no more menu bar. It&#8217;s very Chrome-esque, and is perfect for a wet browser.</p>
<h3>Title bars be gone</h3>
<p>When you first launch Web, it defaults to full-screen and. as in Unity, the title bar is removed to give you the most screen space possible. It feels a bit strange at first, but on our test laptop, we quickly got used to it.</p>
<p>Many of these interface developments have been integrated into the other new applications introduced since Gnome 3.2, including Documents and Contacts. One change that&#8217;s less visible is the introduction of document search to the Overview In the past, searching for documents in the Overview has included only recent documents, but now it uses Tracker to do a full search. This feels like a natural extension, and we can&#8217;t believe it wasn&#8217;t included in the first Gnome 3 releases.</p>
<h3>More new applications</h3>
<p>On top of the applications already introduced in Gnome 3.2, there&#8217;s another new application in 3.4. It&#8217;s called Boxes, and it&#8217;s designed to provide a nice interface for desktop users to access alternative machines from their current system. That is to say, it combines a virtual machine manager (used with KVM) with a remote desktop viewer.</p>
<p>Virtualbox is great, but constant fiddling with kernel modules can be a pain; on the other hand, until Boxes came along, if you wanted to use KVM you had to use the command line or the virt-manager application.</p>
<p>Don&#8217;t expect many advanced features, but you will find a quick and easy way to test the latest releases of your favorite distributions. With all of these new and updated applications, some of Gnome&#8217;s older programmes are looking long in the tooth. We&#8217;d love to see Rhythmbox, Brasero and Evolution get new-look interfaces, too; until they do. Gnome 3 won&#8217;t feel like the complete, integrated environment its developers want it to be.</p>
<p>One question long-time Gnome users may ask is if some of the more annoying &#8216;features&#8217; of Gnome 3 have been removed. They haven&#8217;t. Users still have to hold down the Alt key to shut down (something our production editor, a new Linux user, found ridiculous).  Alt+Tab still cycles through applications, not windows, and clicking a launcher in the Dash still doesn&#8217;t launch a new instance of an application, but gives focus to the already running one After three stable releases, if you&#8217;re still hoping the developers will switch these default settings, it&#8217;s lime you gave up. But these annoyances are not the problems they used to be, thanks to the increasing size and maturity of Gnome&#8217;s extension collection. Extensions exist to modify all of these strange behaviors, and are installable through your web browser. This release continues to bring out Gnome 3&#8242;s potential. We just hope that in the coming releases, the pace of new introductions will slow and some of the desktop&#8217;s older elements will get a bit more attention.</p>
<h3>Videos</h3>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/QgiLh9EMLfg" frameborder="0" allowfullscreen></iframe></p>
<h3>Links</h3>
<ul>
<li><a href="http://www.gnome.org/news/2012/03/gnome-3-4-released/" target="_blank">http://www.gnome.org/news/2012/03/gnome-3-4-released/</a></li>
</ul>
<table border="0" align="center">
<tbody>
<tr>
<th align="center"></th>
<td align="center">
<h1>Gnome 3.4</h1>
</td>
<td align="center"></td>
</tr>
<tr>
<th>Developer</th>
<td align="center">Gnome Foundation</td>
<td align="center"></td>
</tr>
<tr>
<th>WEB</th>
<td align="center"><a href="http://www.gnome.org/" target="_blank">www.gnome.org</a></td>
<td align="center"></td>
</tr>
<tr>
<th>Price</th>
<td align="center">Free under GPL</td>
<td align="center"></td>
</tr>
<tr>
<th>Features</th>
<td align="center">8/10</td>
<td align="center"></td>
</tr>
<tr>
<th>Performance</th>
<td align="center">7/10</td>
<td align="center"></td>
</tr>
<tr>
<th>Ease of use</th>
<td align="center">7/10</td>
<td align="center"></td>
</tr>
<tr>
<th>Documentation</th>
<td align="center">7/10</td>
<td align="center"></td>
</tr>
<tr>
<th></th>
<td align="center"><em>Progress has been made in the last year, but some default applications still need attention.</em></td>
<td align="center"></td>
</tr>
<tr>
<th>Rating</th>
<td align="center">
<h1>7/10</h1>
</td>
<td align="center"></td>
</tr>
</tbody>
</table>
<p>Source: <strong>LXF158</strong></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/reviews/review-gnome-3-4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup MAC address filtering in FreeBSD [HowTo]</title>
		<link>http://linuxconfig.net/manual-howto/howto-mac-address-filtering.html</link>
		<comments>http://linuxconfig.net/manual-howto/howto-mac-address-filtering.html#comments</comments>
		<pubDate>Mon, 23 Apr 2012 06:45:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Manuals, HOWTOs]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[OSes]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1686</guid>
		<description><![CDATA[To enable MAC address filtering in FreeBSD first you need get MAC addresses for all clients which you want to give internet access. To get MACs I suggest use FastResolver. You need to run it any computer located in your network. Also You can run # arp -a in your router. After that edit ethers [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/manual-howto/how-to-change-or-setup-new-ip-address-in-freebsd.html' rel='bookmark' title='[How To] change or setup new ip address in FreeBSD'>[How To] change or setup new ip address in FreeBSD</a> <small>[How To] change or setup new ip address in FreeBSD...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/databases/how-to-setup-mysql-listen-on-localhost-only.html' rel='bookmark' title='[How To] Setup MySQL Listen on Localhost Only'>[How To] Setup MySQL Listen on Localhost Only</a> <small>If You want that MySQL listen only to localhost edit...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/ipfw-nat-on-freebsd-7.html' rel='bookmark' title='ipfw nat on FreeBSD 7'>ipfw nat on FreeBSD 7</a> <small>In the kernel configuration add: options IPFIREWALL # firewall options...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To enable MAC address filtering in FreeBSD first you need get MAC addresses for all clients which you want to give internet access.<br />
To get MACs I suggest use <a href="http://www.nirsoft.net/utils/fastresolver.html" target="_blank">FastResolver</a>. You need to run it any computer located in your network. Also You can run
<pre class="brush:shell"># arp -a</pre>
<p> in your router.</p>
<p>After that edit ethers file</p>
<pre class="brush:shell">$ vi /etc/ethers</pre>
<p>and add ip and MAC address list like:</p>
<pre class="brush:shell">192.168.2.1	00:00:00:00:00:00
192.168.2.2	00:00:00:00:00:00
192.168.2.3	00:00:00:00:00:00
192.168.2.4	00:00:00:00:00:00
192.168.2.5	AB:CD:AB:CD:AB:CD
</pre>
<p>Use 00:00:00:00:00:00 for that IP addresses which should not have access to internet.<br />
Next step is to delete the current configuration of ARP entries:</p>
<pre class="brush:shell">$ arp -ad</pre>
<p>And finally load the configuration file:</p>
<pre class="brush:shell">$ arp -f /etc/ethers</pre>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/manual-howto/how-to-change-or-setup-new-ip-address-in-freebsd.html' rel='bookmark' title='[How To] change or setup new ip address in FreeBSD'>[How To] change or setup new ip address in FreeBSD</a> <small>[How To] change or setup new ip address in FreeBSD...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/databases/how-to-setup-mysql-listen-on-localhost-only.html' rel='bookmark' title='[How To] Setup MySQL Listen on Localhost Only'>[How To] Setup MySQL Listen on Localhost Only</a> <small>If You want that MySQL listen only to localhost edit...</small></li>
<li><a href='http://linuxconfig.net/manual-howto/ipfw-nat-on-freebsd-7.html' rel='bookmark' title='ipfw nat on FreeBSD 7'>ipfw nat on FreeBSD 7</a> <small>In the kernel configuration add: options IPFIREWALL # firewall options...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/manual-howto/howto-mac-address-filtering.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>arch [Command]</title>
		<link>http://linuxconfig.net/commands/command-arch.html</link>
		<comments>http://linuxconfig.net/commands/command-arch.html#comments</comments>
		<pubDate>Thu, 05 Apr 2012 05:32:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1683</guid>
		<description><![CDATA[Command arch arch — Print architecture Syntax arch Description arch displays machine architecture type. See also Related posts: uname [Command] Command uname Displays system information, such as the type of... ps [Command] Command ps Displays the status of processes (programs) running in... pstree [Command] Command pstree Displays all running processes in a tree. Syntax...
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-uname.html' rel='bookmark' title='uname [Command]'>uname [Command]</a> <small>Command uname Displays system information, such as the type of...</small></li>
<li><a href='http://linuxconfig.net/commands/command-ps.html' rel='bookmark' title='ps [Command]'>ps [Command]</a> <small>Command ps Displays the status of processes (programs) running in...</small></li>
<li><a href='http://linuxconfig.net/commands/command-pstree.html' rel='bookmark' title='pstree [Command]'>pstree [Command]</a> <small>Command pstree Displays all running processes in a tree. Syntax...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command arch</h2>
<p><strong>arch</strong> — Print architecture</p>
<h3>Syntax</h3>
<pre class="brush:shell">arch</pre>
<h3>Description</h3>
<p><strong>arch</strong> displays machine architecture type.</p>
<h3>See also</h3>
<a href="http://linuxconfig.net/commands/command-uname.html">uname</a>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-uname.html' rel='bookmark' title='uname [Command]'>uname [Command]</a> <small>Command uname Displays system information, such as the type of...</small></li>
<li><a href='http://linuxconfig.net/commands/command-ps.html' rel='bookmark' title='ps [Command]'>ps [Command]</a> <small>Command ps Displays the status of processes (programs) running in...</small></li>
<li><a href='http://linuxconfig.net/commands/command-pstree.html' rel='bookmark' title='pstree [Command]'>pstree [Command]</a> <small>Command pstree Displays all running processes in a tree. Syntax...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-arch.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ar [Command]</title>
		<link>http://linuxconfig.net/commands/command-ar.html</link>
		<comments>http://linuxconfig.net/commands/command-ar.html#comments</comments>
		<pubDate>Thu, 05 Apr 2012 05:19:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[File, Directory]]></category>
		<category><![CDATA[ar]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1681</guid>
		<description><![CDATA[Command ar ar — Create, modify, and extract from archives Syntax ar [ - ] dmpqrtx[abcilosuvV] [ membername ] archive files ... Description The GNU ar program creates, modifies, and extracts from archives. An archive is a single file holding a collection of other files in a structure that makes it possible to retrieve the [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-tar.html' rel='bookmark' title='tar [Command]'>tar [Command]</a> <small>Command tar tar &#8211; Creates archive files or extract files...</small></li>
<li><a href='http://linuxconfig.net/commands/command-uptime.html' rel='bookmark' title='uptime [Command]'>uptime [Command]</a> <small>Command uptime Displays the time of continuous operation of the...</small></li>
<li><a href='http://linuxconfig.net/commands/command-addftinfo.html' rel='bookmark' title='addftinfo [Command]'>addftinfo [Command]</a> <small>Command addftinfo addftinfo — Add information to troff font files...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command ar</h2>
<p><strong>ar</strong> — Create, modify, and extract from archives</p>
<h3>Syntax</h3>
<pre class="brush:shell">ar [ - ] dmpqrtx[abcilosuvV] [ membername ] archive files ...</pre>
<h3>Description</h3>
<p>The GNU <strong>ar</strong> program creates, modifies, and extracts from archives. An archive is a single file holding a collection of other files in a structure that makes it possible to retrieve the original individual files (called members of the archive).</p>
<p>
The original files&#8217; contents, mode (permissions), timestamp, owner, and group are preserved in the archive, and may be reconstituted on extraction.</p>
<p>
GNU ar can maintain archives whose members have names of any length; however, depending on how ar is configured on your system, a limit on member-name length may be imposed (for compatibility with archive formats maintained with other tools). If it exists, the limit is often 15 characters (typical of formats related to a.out) or 16 characters (typical of formats related to coff).</p>
<p>
<strong>ar</strong> is considered a binary utility because archives of this sort are most often used as libraries holding commonly needed subroutines.</p>
<p>
ar will create an index to the symbols defined in relocatable object modules in the archive when you specify the modifier s. Once created, this index is updated in the archive whenever <strong>ar</strong> makes a change to its contents (save for the q update operation). An archive with such an index speeds up linking to the library, and allows routines in the library to call each<br />
other without regard to their placement in the archive.</p>
<p>
You may use <em>nm –s</em> or <em>nm —print–armap</em> to list this index table. If an archive lacks the table, another form of ar called ranlib can be used to add just the table.</p>
<p>
<strong>ar</strong> insists on at least two arguments to execute: one keyletter specifying the operation (optionally accompanied by other keyletters specifying modifiers ), and the archive name to act on.</p>
<p>
Most operations can also accept further files arguments, specifying particular files to operate on.</p>
<h3>Options</h3>
<p>GNU ar allows you to mix the operation code p and modifier flags mod in any order, within the first command-lineargument.</p>
<p>
If you wish, you may begin the first command-line argument with a dash.</p>
<p>
The p keyletter specifies what operation to execute; it may be any of the following, but you must specify only one of them:</p>
<p>
<strong>d</strong> &#8211; Delete modules from the archive. Specify the names of modules to be deleted as files ; the archive is untouched if you specify no files to delete.<br />
If you specify the v modifier, ar will list each module as it is deleted.</p>
<p>
<strong>m</strong> &#8211; Use this operation to move members in an archive.<br />
The ordering of members in an archive can make a difference in how programs are linked using the library if a symbol is defined in more than one member.<br />
If no modifiers are used with m, any members you name in the files arguments are moved to the end of the archive; you can use the a, b, or i modifiers to move them to a specified place instead.</p>
<p>
<strong>p</strong> &#8211; Print the specified members of the archive to the standard output file. If the <em>v</em> modifier is specified, show the membername before copying its contents to standard output.<br />
If you specify no files, all the files in the archive are printed.</p>
<p>
<strong>q</strong> &#8211; Quick append; add files to the end of archive without checking for replacement.<br />
The modifiers <em>a</em>, <em>b</em>, and <em>i</em> do not affect this operation; new members are always placed at the end of the archive.<br />
The modifier <em>v</em> makes ar list each file as it is appended.<br />
Since the point of this operation is speed, the archive&#8217;s symbol table index is not updated, even if it already existed; you can use ar s or ranlib explicitly to update the symbol table index.<br />
<strong>r</strong> &#8211; Insert files into archive (with replacement). This operation differs from q in that any previously existing members are deleted if their names match those being added.<br />
If one of the files named in files doesn&#8217;t exist, <strong>ar</strong> displays an error message and leaves undisturbed any existing members of the archive matching that name.<br />
By default, new members are added at the end of the file, but you may use one of the modifiers <em>a</em>, <em>b</em>, and <em>i</em> to request placement relative to some existing member.<br />
The modifier <em>v</em> used with this operation elicits a line of output for each file inserted, along with one of the letters a or r to indicate whether the file was appended (no old member deleted) or replaced.</p>
<p>
<strong>t</strong> &#8211; Display a table listing the contents of archive, or those of the files listed in files that are present in the archive. Normally, only the membername is shown; if you also want to see the modes (permissions), timestamp, owner, group, and size, you can request that by also specifying the <em>v</em> modifier.<br />
If you do not specify any files, all files in the archive are listed.<br />
If there is more than one file with the same name (say, fie) in an archive (say, b.a), ar t b.a fie will<br />
list only the first instance; to see them all, you must ask for a complete listing—in our example, ar t b.a.</p>
<p>
<strong>x</strong> &#8211; Extract members (named files) from the archive. You can use the v modifier with this operation to request that ar list each name as it extracts it.<br />If you do not specify any files, all files in the archive are extracted.</p>
<p>
A number of modifiers (mod) may immediately follow the p keyletter, to specify variations on an operation&#8217;s behavior, as<br />
follows:</p>
<p>
<strong>a</strong> &#8211; Add new files after an existing member of the archive. If you use the modifier a, the name of an existing archive member must be present as the membername argument, before the archive specification.</p>
<p>
<strong>b</strong> &#8211; Add new files before an existing member of the archive. If you use the modifier b, the name of an existing archive member must be present as the membername argument, before the archive specification (same as i).</p>
<p>
<strong>c</strong> &#8211; Create the archive. The specified archive is always created if it didn&#8217;t exist when you request an update. But a warning is issued unless you specify in advance that you expect to create it by using this modifier.</p>
<p>
<strong>i</strong> &#8211; Insert new files before an existing member of the archive. If you use the modifier i, the name of an existing archive member must be present as the membername argument, before the archive specification. (same as b).</p>
<p>
<strong>l</strong> &#8211; This modifier is accepted but not used.</p>
<p>
<strong>o</strong> &#8211; Preserve the original dates of members when extracting them. If you do not specify this modifier, files extracted from the archive will be stamped with the time of extraction.</p>
<p>
<strong>s</strong> &#8211; Write an object-file index into the archive, or update an existing one, even if no other change is made to the archive. You may use this modifier flag either with any operation, or alone. Running ar s on an archive is equivalent to running ranlib on it.</p>
<p>
<strong>u</strong> &#8211; Normally, ar r&#8230; inserts all files listed into the archive. If you would like to insert only those of the files you list that are newer than existing members of the same names, use this modifier. The u modifier is allowed only for the operation r (replace). In particular, the combination qu is not allowed, since checking the timestamps would lose any speed advantage from the operation q.</p>
<p>
<strong>v</strong> &#8211; This modifier requests the verbose version of an operation. Many operations display additional information, such as filenames processed, when the modifier v is appended.</p>
<p>
<strong>V</strong> &#8211; This modifier shows the version number of <strong>ar</strong>.</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-tar.html' rel='bookmark' title='tar [Command]'>tar [Command]</a> <small>Command tar tar &#8211; Creates archive files or extract files...</small></li>
<li><a href='http://linuxconfig.net/commands/command-uptime.html' rel='bookmark' title='uptime [Command]'>uptime [Command]</a> <small>Command uptime Displays the time of continuous operation of the...</small></li>
<li><a href='http://linuxconfig.net/commands/command-addftinfo.html' rel='bookmark' title='addftinfo [Command]'>addftinfo [Command]</a> <small>Command addftinfo addftinfo — Add information to troff font files...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-ar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>appres [Command]</title>
		<link>http://linuxconfig.net/commands/command-appres.html</link>
		<comments>http://linuxconfig.net/commands/command-appres.html#comments</comments>
		<pubDate>Tue, 03 Apr 2012 06:33:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[appres]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1675</guid>
		<description><![CDATA[Command appres appres — List X application resource database Syntax appres [[class [instance]] [–1] [toolkitoptions] Description The appres program prints the resources seen by an application (or subhierarchy of an application) with the specified class and instance names. It can be used to determine which resources a particular program will load. For example, % appres [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-ps.html' rel='bookmark' title='ps [Command]'>ps [Command]</a> <small>Command ps Displays the status of processes (programs) running in...</small></li>
<li><a href='http://linuxconfig.net/commands/command-top.html' rel='bookmark' title='top [Command]'>top [Command]</a> <small>Command top Displays a list of currently executing processes, ordered...</small></li>
<li><a href='http://linuxconfig.net/commands/command-afmtodit.html' rel='bookmark' title='afmtodit [Command]'>afmtodit [Command]</a> <small>Command afmtodit afmtodit — Create font files for use with...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command appres</h2>
<p><strong>appres</strong> — List X application resource database</p>
<h3>Syntax</h3>
<pre class="brush:shell">appres [[class [instance]] [–1] [toolkitoptions]</pre>
<h3>Description</h3>
<p>The appres program prints the resources seen by an application (or subhierarchy of an application) with the specified class and instance names. It can be used to determine which resources a particular program will load. For example,</p>
<pre class="brush:shell">% appres XTerm</pre>
<p>will list the resources that any xterm program will load. If no application class is specified, the class -AppResTest- is used. To match a particular instance name, specify an instance name explicitly after the class name, or use the normal Xt toolkit option. For example,</p>
<pre class="brush:shell">% appres XTerm myxterm</pre>
<p>or</p>
<pre class="brush:shell">% appres XTerm –name myxterm</pre>
<p>To list resources that match a subhierarchy of an application, specify hierarchical class and instance names. The number of class and instance components must be equal, and the instance name should not be specified with a toolkit option. For example,</p>
<pre class="brush:shell">% appres Xman.TopLevelShell.Form xman.topBox.form</pre>
<p>will list the resources of widgets of xman topBox hierarchy. To list just the resources matching a specific level in the hierarchy, use the –1 option. For example,</p>
<pre class="brush:shell">% appres XTerm.VT100 xterm.vt100 –1</pre>
<p>will list the resources matching the xterm vt100 widget.</p>
<h3>See also</h3>
<p>X, xrdb, listres</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-ps.html' rel='bookmark' title='ps [Command]'>ps [Command]</a> <small>Command ps Displays the status of processes (programs) running in...</small></li>
<li><a href='http://linuxconfig.net/commands/command-top.html' rel='bookmark' title='top [Command]'>top [Command]</a> <small>Command top Displays a list of currently executing processes, ordered...</small></li>
<li><a href='http://linuxconfig.net/commands/command-afmtodit.html' rel='bookmark' title='afmtodit [Command]'>afmtodit [Command]</a> <small>Command afmtodit afmtodit — Create font files for use with...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-appres.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>anytopnm [Command]</title>
		<link>http://linuxconfig.net/commands/command-anytopnm.html</link>
		<comments>http://linuxconfig.net/commands/command-anytopnm.html#comments</comments>
		<pubDate>Tue, 03 Apr 2012 06:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[File, Directory]]></category>
		<category><![CDATA[anytopnm]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://linuxconfig.net/?p=1673</guid>
		<description><![CDATA[Command anytopnm anytopnm — Attempt to convert an unknown type of image file to a portable anymap Syntax anytopnm file Description anytopnm uses the file program, possibly augmented by the magic numbers file included with PBMPLUS, to try to figure out what type of image file it is. If that fails (very few image formats [...]
Related posts:<ol>
<li><a href='http://linuxconfig.net/commands/command-file.html' rel='bookmark' title='file [Command]'>file [Command]</a> <small>Command file file &#8211; command displays the type of data...</small></li>
<li><a href='http://linuxconfig.net/commands/command-dos2unix.html' rel='bookmark' title='dos2unix [Command]'>dos2unix [Command]</a> <small>Command dos2unix dos2unix command converts a text file format DOS/Mac...</small></li>
<li><a href='http://linuxconfig.net/commands/command-afmtodit.html' rel='bookmark' title='afmtodit [Command]'>afmtodit [Command]</a> <small>Command afmtodit afmtodit — Create font files for use with...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Command anytopnm</h2>
<p><strong>anytopnm</strong> — Attempt to convert an unknown type of image file to a portable anymap</p>
<h3>Syntax</h3>
<pre class="brush:shell">anytopnm file</pre>
<h3>Description</h3>
<p><strong>anytopnm</strong> uses the file program, possibly augmented by the magic numbers file included with PBMPLUS, to try to figure out what type of image file it is. If that fails (very few image formats have magic numbers), looks at the filename extension. If that fails, punt.</p>
<p>The type of the output file depends on the input file.</p>
<p>Related posts:</p><ol>
<li><a href='http://linuxconfig.net/commands/command-file.html' rel='bookmark' title='file [Command]'>file [Command]</a> <small>Command file file &#8211; command displays the type of data...</small></li>
<li><a href='http://linuxconfig.net/commands/command-dos2unix.html' rel='bookmark' title='dos2unix [Command]'>dos2unix [Command]</a> <small>Command dos2unix dos2unix command converts a text file format DOS/Mac...</small></li>
<li><a href='http://linuxconfig.net/commands/command-afmtodit.html' rel='bookmark' title='afmtodit [Command]'>afmtodit [Command]</a> <small>Command afmtodit afmtodit — Create font files for use with...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://linuxconfig.net/commands/command-anytopnm.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

