<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>In The Woods Of Eryn Vorn</title>
	<link>http://labutes.no-ip.org/blog</link>
	<description>the return to middle earth</description>
	<pubDate>Sat, 18 Jul 2009 20:38:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Peter Murphy - Cuts you up</title>
		<link>http://labutes.no-ip.org/blog/?p=413</link>
		<comments>http://labutes.no-ip.org/blog/?p=413#comments</comments>
		<pubDate>Sun, 21 Jun 2009 14:23:27 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[musica]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=413</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><font face="sans-serif"><br /><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/dUsWur3EqUE" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/dUsWur3EqUE" /></object></font></p>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=413</wfw:commentRss>
		</item>
		<item>
		<title>copia rápida de ficheiros entre computadores via ssh</title>
		<link>http://labutes.no-ip.org/blog/?p=412</link>
		<comments>http://labutes.no-ip.org/blog/?p=412#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:58:46 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=412</guid>
		<description><![CDATA[Para se preceder à copia rápida de um ou mais ficheiros entre pcs via ssh temos pelo menos duas formas:
i) scp
ii) ssh directo a partir do computador para onde se vão copiar os ficheiros (ssh user@host &#8220;cat /path/file_a_copiar&#8221; &#62; file_destino)
SCP
The scp command allows you to copy files over ssh connections. This is pretty useful if [...]]]></description>
			<content:encoded><![CDATA[<p>Para se preceder à copia rápida de um ou mais ficheiros entre pcs via ssh temos pelo menos duas formas:</p>
<p>i) <a href="http://www.linuxtutorialblog.com/post/ssh-and-scp-howto-tips-tricks">scp</a><br />
ii) ssh directo a partir do computador para onde se vão copiar os ficheiros (ssh user@host &#8220;cat /path/file_a_copiar&#8221; &gt; file_destino)</p>
<p><strong>SCP</strong></p>
<p>The scp command allows you to copy files over ssh connections. This is pretty useful if you want to transport files between computers, for example to backup something. The scp command uses the ssh command and they are very much alike. However, there are some important differences.</p>
<p>The scp command can be used in three* ways: to copy from a (remote) server to your computer, to copy from your computer to a (remote) server, and to copy from a (remote) server to another (remote) server. In the third case, the data is transferred directly between the servers; your own computer will only tell the servers what to do. These options are very useful for a lot of things that require files to be transferred, so let&#8217;s have a look at the syntax of this command:</p>
<blockquote><p>[rechosen@localhost ~]$ scp examplefile yourusername@yourserver:/home/yourusername/</p></blockquote>
<p>Looks quite familiar, right? But there are differences. The command above will transfer the file &#8220;examplefile&#8221; to the directory &#8220;/home/yourusername/&#8221; at the server &#8220;yourserver&#8221;, trying to get ssh acces with the username &#8220;yourusername&#8221;. That&#8217;s quite a lot information, but scp really needs it all. Well, almost all of it. You could leave out the &#8220;yourusername@&#8221; in front of &#8220;yourserver&#8221;, but only if you want to login on the server with your current username on your own computer. Let&#8217;s have a closer look at the end of the command. There&#8217;s a colon over there, with a directory after it. Just like Linux&#8217;s normal cp command, scp will need to know both the source file(s) and the target directory (or file). For remote hosts, the file(s)/directory are given to the scp command is this way.</p>
<p>You can also copy a file (or multiple files) from the (remote) server to your own computer. Let&#8217;s have a look at an example of that:</p>
<blockquote><p>[rechosen@localhost ~]$ scp yourusername@yourserver:/home/yourusername/examplefile .</p></blockquote>
<p><em>Note: The dot at the end means the current local directory. This is a handy trick that can be used about everywhere in Linux. Besides a single dot, you can also type a double dot ( .. ), which is the parent directory of the current directory.</em></p>
<p>This will copy the file &#8220;/home/yourusername/examplefile&#8221; to the current directory on your own computer, provided that the username and password are correct and that the file actually exists.</p>
<p>You probably already guessed that the following command copies a file from a (remote) server to another (remote) server:</p>
<blockquote><p>[rechosen@localhost ~]$ scp yourusername@yourserver:/home/yourusername/examplefile yourusername2@yourserver2:/home/yourusername2/</p></blockquote>
<p>Please note that, to make the above command work, the servers <em>must</em> be able to reach each other, as the data will be transferred directly between them. If the servers somehow can&#8217;t reach each other (for example, if port 22 is not open on one of the sides) you won&#8217;t be able to copy anything. In that case, copy the files to your own computer first, then to the other host. Or make the servers able to reach each other (for example by opening the port).</p>
<p>Well, those are the main uses of scp. We&#8217;ll now go a bit more in-depth about the differences between ssh and scp.</p>
<p>*: <em>Actually you can also use it just like the normal cp command, withhout any ssh connections in it, but that&#8217;s quite useless. It requires you to type an extra &#8217;s&#8217; =).</em></p>
<p><strong>Specifying a port with scp</strong></p>
<p>The scp command acts a little different when it comes to ports. You&#8217;d expect that specifying a port should be done this way:</p>
<blockquote><p>[rechosen@localhost ~]$ scp -p yourport yourusername@yourserver:/home/yourusername/examplefile .</p></blockquote>
<p>However, that will not work. You will get an error message like this one:</p>
<blockquote><p>cp: cannot stat `yourport&#8217;: No such file or directory</p></blockquote>
<p>This is caused by the different architecture of scp. It aims to resemble cp, and cp also features the -p option. However, in cp terms it means &#8216;preserve&#8217;, and it causes the cp command to preserve things like ownership, permissions and creation dates. The scp command can also preserve things like that, and the -p option enables this feature. The port specification should be done with the -P option. Therefore, the following command will work:</p>
<blockquote><p>[rechosen@localhost ~]$ scp -P yourport yourusername@yourserver:/home/yourusername/examplefile .</p></blockquote>
<p>Also note that the -P option <em>must</em> be in front of the (remote) server. The ssh command will still work if you put -p yourport behind the host syntax, but scp won&#8217;t. Why? Because scp also supports copying between two servers and therefore needs to know <em>which</em> server the -P option applies to.</p>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=412</wfw:commentRss>
		</item>
		<item>
		<title>The mission (UK) - Like a Child Again</title>
		<link>http://labutes.no-ip.org/blog/?p=411</link>
		<comments>http://labutes.no-ip.org/blog/?p=411#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:17:30 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[musica]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=411</guid>
		<description><![CDATA[(live @ Dusseldorf - 1995)

(live @ the london astoria - 2002)

Im not scared anymore
Im not scared of the dark when I sleep with you
And Im feeling alive
And Im feeling strong again when Im with you
And it hits me
Just like a runaway train
And it blows me away
Just like a hurricane
You can make me happy and I [...]]]></description>
			<content:encoded><![CDATA[<p>(live @ Dusseldorf - 1995)<br />
<embed src="http://www.metacafe.com/fplayer/yt-Lz5xz8fm9wY/like_a_child_again_the_mission_uk_dusseldorf_1995.swf" wmode="transparent" allowfullscreen="true" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="345"></embed></p>
<p>(live @ the london astoria - 2002)<br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/uhDvQNgbBv0" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/uhDvQNgbBv0" /></object></p>
<p>Im not scared anymore<br />
Im not scared of the dark when I sleep with you<br />
And Im feeling alive<br />
And Im feeling strong again when Im with you<br />
And it hits me<br />
Just like a runaway train<br />
And it blows me away<br />
Just like a hurricane<br />
You can make me happy and I hope you feel the same<br />
You make me feel just like a child, a child again</p>
<p>Im not trapped anymore<br />
Between madonna and the whore when I lay with you<br />
And the days run away<br />
Like wild horses run away when Im with you<br />
And Im breathing you in<br />
Just like the morning air<br />
And Im wrapping you around<br />
Just like a skin to wear</p>
<p>You can make me happy and I hope you feel the same<br />
You make me feel just like a child, a child again</p>
<p>Oh sweet thing<br />
Im born once again<br />
For you sweet thing<br />
Just like a baby again<br />
You make me happy and I hope you feel the same<br />
And Im in heaven and it feels like a gentle rain<br />
You make me happy and I want you to feel the same<br />
You make me feel just like a child<br />
A child again</p>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=411</wfw:commentRss>
		</item>
		<item>
		<title>lastscrape - grab you scrobles @ last.fm</title>
		<link>http://labutes.no-ip.org/blog/?p=410</link>
		<comments>http://labutes.no-ip.org/blog/?p=410#comments</comments>
		<pubDate>Sun, 03 May 2009 13:28:50 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[internet]]></category>

		<category><![CDATA[musica]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=410</guid>
		<description><![CDATA[If, like me, you&#8217;ve decided to dump last.fm for libre.fm maybe you find this interesting. II &#8216;ve found a couple of scripts that allow me to dump the last.fm database and import it to libre.fm. 
Thats quite usefull for those, like me, who have used last.fm for years now.
here&#8217;s the link to those scripts

]]></description>
			<content:encoded><![CDATA[<p>If, like me, you&#8217;ve decided to dump last.fm for libre.fm maybe you find this interesting. II &#8216;ve found a couple of scripts that allow me to dump the last.fm database and import it to libre.fm. </p>
<p>Thats quite usefull for those, like me, who have used last.fm for years now.</p>
<p>here&#8217;s the <a href="http://ideas.libre.fm/index.php/Using_lastscrape">link</a> to those scripts</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=c6ad80cb-9853-885c-a8e9-dcf8fc245184" /></div>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=410</wfw:commentRss>
		</item>
		<item>
		<title>Twilight Zone intro</title>
		<link>http://labutes.no-ip.org/blog/?p=409</link>
		<comments>http://labutes.no-ip.org/blog/?p=409#comments</comments>
		<pubDate>Sat, 02 May 2009 14:27:21 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[televisão]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=409</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/NzlG28B-R8Y&amp;hl" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/NzlG28B-R8Y&amp;hl" /></object></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=9f3fab6f-6330-8209-802d-3aa856c723c4" /></div>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=409</wfw:commentRss>
		</item>
		<item>
		<title>setting up banshee media player with libre.fm</title>
		<link>http://labutes.no-ip.org/blog/?p=408</link>
		<comments>http://labutes.no-ip.org/blog/?p=408#comments</comments>
		<pubDate>Sun, 26 Apr 2009 10:35:04 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[internet]]></category>

		<category><![CDATA[musica]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=408</guid>
		<description><![CDATA[despite libre.fm being a very, very new service it&#8217;s spreading like wildfire in cyberspace. Specially in free software and open source communities, due to social tools as identi.ca.
Altough the service already supports a bunch of media players, it doesn&#8217;t officially supports my actual favorite player banshee. That problem has been overcome today with the help [...]]]></description>
			<content:encoded><![CDATA[<p>despite libre.fm being a very, very new service it&#8217;s spreading like wildfire in cyberspace. Specially in free software and open source communities, due to social tools as identi.ca.</p>
<p>Altough the service already supports a bunch of media players, it doesn&#8217;t officially supports my actual favorite player banshee. That problem has been overcome today with the help of the online comunitie.</p>
<p>the solution is  quite simple. just edit /etc/hosts and add the following line:</p>
<p>89.16.177.55 post.audioscrobbler.com</p>
<p class="zemanta-pixie"><img src="http://img.zemanta.com/pixy.gif?x-id=3c6da82b-91fa-8089-8593-732a953ff5e1" class="zemanta-pixie-img" /></p>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=408</wfw:commentRss>
		</item>
		<item>
		<title>No more last.fm. Welcome to libre.fm</title>
		<link>http://labutes.no-ip.org/blog/?p=407</link>
		<comments>http://labutes.no-ip.org/blog/?p=407#comments</comments>
		<pubDate>Sun, 26 Apr 2009 10:22:46 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[musica]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=407</guid>
		<description><![CDATA[In view of recent events concerning the privacy of users i&#8217;ve decided to leave last.fm (cbs corporation owned).
Fortunately i&#8217;m not the only one unpleased with last.fm current course and alternatives are beginning to emerge. There for i&#8217;ve decide to migrate my scrobbling to Libre.fm. here&#8217;s my new home (http://alpha.libre.fm/user/lothar_m)

More info on this project can be [...]]]></description>
			<content:encoded><![CDATA[<p>In view of recent events concerning the privacy of users i&#8217;ve decided to leave last.fm (cbs corporation owned).</p>
<p>Fortunately i&#8217;m not the only one unpleased with last.fm current course and alternatives are beginning to emerge. There for i&#8217;ve decide to migrate my scrobbling to Libre.fm. here&#8217;s my new home (<a href="http://alpha.libre.fm/user/lothar_m" rel="nofollow">http://alpha.libre.fm/user/lothar_m</a>)</p>
<p><img src="http://danlynch.org/blog/wp-content/uploads/2009/04/librefm-300x58.png" width="300" height="58" /></p>
<p>More info on this project can be found <a href="http://danlynch.org/blog/2009/04/librefm/">here</a></p>
<p class="zemanta-pixie"><img src="http://img.zemanta.com/pixy.gif?x-id=37ab2ccc-7248-8838-b679-9fbaa1aa6864" class="zemanta-pixie-img" /></p>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=407</wfw:commentRss>
		</item>
		<item>
		<title>Fleetwood Mac - Go Your Own Way</title>
		<link>http://labutes.no-ip.org/blog/?p=406</link>
		<comments>http://labutes.no-ip.org/blog/?p=406#comments</comments>
		<pubDate>Sat, 25 Apr 2009 14:27:00 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[musica]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=406</guid>
		<description><![CDATA[
&#8220;Loving youIsnt the right thing to doHow can I ever change thingsThat I feel
If I couldMaybe Id give you my worldHow can iWhen you wont take it from me
You can go your own wayGo your own wayYou an call itAnother lonely dayYou can go your own wayGo your own way
Tell me whyEverything turned aroundPacking upShacking [...]]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/GE7sGbnbqxk" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/GE7sGbnbqxk" /></object></p>
<p>&#8220;Loving you<br />Isnt the right thing to do<br />How can I ever change things<br />That I feel</p>
<p>If I could<br />Maybe Id give you my world<br />How can i<br />When you wont take it from me</p>
<p>You can go your own way<br />Go your own way<br />You an call it<br />Another lonely day<br />You can go your own way<br />Go your own way</p>
<p>Tell me why<br />Everything turned around<br />Packing up<br />Shacking up is all you wanna do</p>
<p>If I could<br />Baby Id give you my world<br />Open up<br />Everythings waiting for you</p>
<p>You can go your own way<br />Go your own way<br />You an call it<br />Another lonely day<br />You can go your own way<br />Go your own way&#8221;</p>
<p>E agora com sotaque irlandes</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/q_Xxj2UNB84" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/q_Xxj2UNB84" /></object></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=b85c26c9-5c73-8e0d-bc97-5a800283b69f" /></div>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=406</wfw:commentRss>
		</item>
		<item>
		<title>linux outlaws podcast</title>
		<link>http://labutes.no-ip.org/blog/?p=405</link>
		<comments>http://labutes.no-ip.org/blog/?p=405#comments</comments>
		<pubDate>Sat, 18 Apr 2009 14:18:43 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[internet]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=405</guid>
		<description><![CDATA[
my little contribution in answer to this post. later i&#8217;ll print it out a copy to post somewhere.

]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px;" src="http://linuxoutlaws.com/files/lo-wanted.png" /></p>
<p>my little contribution in answer to this <a href="http://linuxoutlaws.com/wanted">post</a>. later i&#8217;ll print it out a copy to post somewhere.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=67b517d7-c416-8ddc-8ca4-b25245a963d1" /></div>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=405</wfw:commentRss>
		</item>
		<item>
		<title>As bactérias enquanto &#8220;organismos&#8221; multicelulares</title>
		<link>http://labutes.no-ip.org/blog/?p=404</link>
		<comments>http://labutes.no-ip.org/blog/?p=404#comments</comments>
		<pubDate>Sun, 12 Apr 2009 19:53:18 +0000</pubDate>
		<dc:creator>lothar_m</dc:creator>
		
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://labutes.no-ip.org/blog/?p=404</guid>
		<description><![CDATA[Bonnie Bessler fala das capacidades de comunicação entre bacterias e as implicações práticas desta descoberta.
   

]]></description>
			<content:encoded><![CDATA[<p>Bonnie Bessler fala das capacidades de comunicação entre bacterias e as implicações práticas desta descoberta.</p>
<p><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" allowfullscreen="true" flashvars="vu=http://video.ted.com/talks/embed/BonnieBassler_2009-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/BonnieBassler-2009.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=509" width="446" height="326"> </embed>  </p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=4cc1b347-f90d-8c52-a322-807d3ea4e545" /></div>
]]></content:encoded>
			<wfw:commentRss>http://labutes.no-ip.org/blog/?feed=rss2&amp;p=404</wfw:commentRss>
		</item>
	</channel>
</rss>
