<?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>WiredRevolution.com &#187; command line</title>
	<atom:link href="http://www.wiredrevolution.com/tag/command-line/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wiredrevolution.com</link>
	<description>A Bit of Linux Wisdom</description>
	<lastBuildDate>Fri, 10 Sep 2010 16:50:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Download digital camera photos with gphoto2</title>
		<link>http://www.wiredrevolution.com/commands/download-digital-camera-photos-with-gphoto2</link>
		<comments>http://www.wiredrevolution.com/commands/download-digital-camera-photos-with-gphoto2#comments</comments>
		<pubDate>Sat, 29 Nov 2008 22:14:44 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[commands]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[digital camera]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[gphoto2]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[mpg]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=786</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/commands_icon.png" width="80" height="69" alt="" title="commands" /><br/>gphoto2 allows you to directly connect a digital camera over USB and transfer the saved images and videos to your computer. This is very helpful when you don&#8217;t have access to a media card reader.
Install the gphoto2 package on your system.
In Gentoo:

# emerge media-gfx/gphoto2

In Ubuntu:

# aptitude install gphoto2

Start off by connecting your digital camera to [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/commands_icon.png" width="80" height="69" alt="" title="commands" /><br/><p><strong>gphoto2</strong> allows you to directly connect a digital camera over USB and transfer the saved images and videos to your computer. This is very helpful when you don&#8217;t have access to a media card reader.</p>
<p>Install the gphoto2 package on your system.</p>
<p>In <strong>Gentoo</strong>:</p>
<pre>
# emerge media-gfx/gphoto2
</pre>
<p>In <strong>Ubuntu</strong>:</p>
<pre>
# aptitude install gphoto2
</pre>
<p>Start off by connecting your digital camera to your computer with a USB cable and turning on any transfer/playback mode that might exist.</p>
<p>Run the following command to see if your camera is auto-detected by gphoto2. It will show you the camera model that detected and what port it is on.</p>
<pre>
$ gphoto2 --auto-detect
</pre>
<p>This will show you all the files that are currently stored on your camera including images and videos. You will get data such as type, size, and location on the camera device.</p>
<pre>
$ gphoto2 --list-files
</pre>
<p>Change your current working directory to the location that you want the images saved on your system. </p>
<pre>
$ cd ~/camera_images/
</pre>
<p>Now you can download all the images and videos from your camera to your current working directory on your system.</p>
<pre>
$ gphoto2 --get-all-files
</pre>
<p>Once all images are downloaded to your computer you can clear the camera. Make sure your images are stored on your system correctly because there is no going back.</p>
<pre>
$ gphoto2 --delete-all-files
</pre>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/commands/download-digital-camera-photos-with-gphoto2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find your MAC address with ifconfig</title>
		<link>http://www.wiredrevolution.com/system-administration/find-your-mac-address-with-ifconfig</link>
		<comments>http://www.wiredrevolution.com/system-administration/find-your-mac-address-with-ifconfig#comments</comments>
		<pubDate>Thu, 30 Oct 2008 11:06:53 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[system administration]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[HWaddr]]></category>
		<category><![CDATA[ifconfig]]></category>
		<category><![CDATA[mac address]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=555</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/>You can find the MAC address of your system at the command line by using the ifconfig command. The ifconfig command will show you information on all your network interfaces.  If no arguments are given ifconfig displays the status of the currently active interfaces.
You have to run this command as root or use sudo.

# [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/><p>You can find the MAC address of your system at the command line by using the <strong>ifconfig</strong> command. The ifconfig command will show you information on all your network interfaces.  If no arguments are given ifconfig displays the status of the currently active interfaces.</p>
<p>You have to run this command as root or <a href="/commands/submit-commands-as-root-with-sudo">use sudo</a>.</p>
<pre>
# ifconfig
</pre>
<pre>
wlan0     Link encap:Ethernet  <strong>HWaddr a1:b2:c3:d4:e5:f6  </strong>
          inet addr:192.168.2.11  Bcast:192.168.2.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1492  Metric:1
          RX packets:4007 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4246 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3292271 (3.1 MiB)  TX bytes:994922 (971.6 KiB)
</pre>
<p>Your MAC address is displayed in the <strong>HWaddr</strong> field.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/system-administration/find-your-mac-address-with-ifconfig/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find your IP address with ifconfig</title>
		<link>http://www.wiredrevolution.com/system-administration/find-your-ip-address-with-ifconfig</link>
		<comments>http://www.wiredrevolution.com/system-administration/find-your-ip-address-with-ifconfig#comments</comments>
		<pubDate>Thu, 30 Oct 2008 10:48:07 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[system administration]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[ifconfig]]></category>
		<category><![CDATA[inet addr]]></category>
		<category><![CDATA[IP address]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=544</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/>You can find the IP address of your system at the command line by using the ifconfig command.  The ifconfig command will show you information on all your network interfaces.  If no arguments are given ifconfig displays the status of the currently active interfaces.
You have to run this command as root or use [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/><p>You can find the IP address of your system at the command line by using the <strong>ifconfig</strong> command.  The ifconfig command will show you information on all your network interfaces.  If no arguments are given ifconfig displays the status of the currently active interfaces.</p>
<p>You have to run this command as root or <a href="/commands/submit-commands-as-root-with-sudo">use sudo</a>.</p>
<pre>
# ifconfig
</pre>
<pre>
wlan0     Link encap:Ethernet  HWaddr a1:b2:c3:d4:e5:f6
          <strong>inet addr:192.168.2.11</strong>  Bcast:192.168.2.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1492  Metric:1
          RX packets:4007 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4246 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3292271 (3.1 MiB)  TX bytes:994922 (971.6 KiB)
</pre>
<p>Your IP address is displayed in the <strong>inet addr</strong> field.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/system-administration/find-your-ip-address-with-ifconfig/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
