<?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>A Passionate Developer from the Third World Putting Things into his World's Perspective &#187; Linux</title>
	<atom:link href="http://www.cybervaldez.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Thu, 15 Jul 2010 06:04:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Unix Super Tip: How to CHMOD all your files recursively</title>
		<link>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:09:09 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[individual]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1052</guid>
		<description><![CDATA[Problem: How do I set permissions to my files and/or directories without manually setting them up individually?
Note: You may need administrator privileges for these to work, if that&#8217;s the case simply add a sudo before typing the commands below.
If you want to chmod all your directories:
find . -type d -exec chmod 755 {} \;
and for [...]


Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-deleteremove-protected-folders-and-files-from-a-previous-installation-of-windows/2009/' rel='bookmark' title='Permanent Link: How to: Delete/Remove protected folders and files from a previous installation of Windows'>How to: Delete/Remove protected folders and files from a previous installation of Windows</a> <small>Problem: I&#8217;ve decided to re-install windows because of some issues....</small></li><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Problem: How do I set permissions to my files and/or directories without manually setting them up individually?</p>
<p><strong>Note:</strong> You may need administrator privileges for these to work, if that&#8217;s the case simply add a <strong>sudo</strong> before typing the commands below.</p>
<p>If you want to chmod all your directories:</p>
<blockquote><p>find . -type d -exec chmod 755 {} \;</p></blockquote>
<p>and for files:</p>
<blockquote><p>find . -type f -exec chmod 644 {} \;</p></blockquote>
<p><strong>That&#8217;s it!</strong></p>


<p>Related posts:<ol><li><a href='http://www.cybervaldez.com/how-to-deleteremove-protected-folders-and-files-from-a-previous-installation-of-windows/2009/' rel='bookmark' title='Permanent Link: How to: Delete/Remove protected folders and files from a previous installation of Windows'>How to: Delete/Remove protected folders and files from a previous installation of Windows</a> <small>Problem: I&#8217;ve decided to re-install windows because of some issues....</small></li><li><a href='http://www.cybervaldez.com/super-tip-how-to-create-that-floating-facebook-toolbar-at-the-bottom-of-the-page/2009/' rel='bookmark' title='Permanent Link: Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!'>Super Tip! How to Create that floating Facebook toolbar at the bottom of the page!</a> <small>Help! I&#8217;d like to create a toolbar similar to facebook...</small></li><li><a href='http://www.cybervaldez.com/jquery-super-tip-automatically-highlight-the-linksmenu-of-the-current-page-with-1-line-of-code/2009/' rel='bookmark' title='Permanent Link: Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code'>Jquery Super Tip! Automatically highlight the links/menu of the current page with 1 line of code</a> <small> One very important usability feature of a website is...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Super Tip: Easy Access to your files and directories by creating symbolic links(shortcuts)</title>
		<link>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 18:36:15 +0000</pubDate>
		<dc:creator>Cyber Valdez</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[ln]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[symbolic]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1009</guid>
		<description><![CDATA[How to create shortcuts to your folders and files in Mac or Linux, aka Symbolic Linking.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>The directory structure of Mac and Linux(both are UNIX) tends to get really <strong>_really_</strong> long. But don&#8217;t worry, by using the <code>ln -s</code>, or <strong>Symbolic Link</strong> command in the terminal(unix shell), creating <strong>&#8220;shortcuts&#8221;</strong> to your folders or files is now a breeze.</p>
<blockquote><p><code>ln -s <source_file_or_folder> <shortcut_name></code>  &nbsp;<br />
Here&#8217;s an example:<br />
<code>ln -s /Library/Python/2.5/ /shortcuts/PYTHON</code> &nbsp; </p></blockquote>
<p>The effect: <code>cd /shortcuts/PYTHON</code> is now the same as <code>cd /Library/Python/2.5/</code>, removing a shortcut is similar to removing a file: <code>rm /shortcuts/PYTHON</code>&#8230; <strong>that&#8217;s it!</strong></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
