<?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>Digitivity &#187; Power User</title>
	<atom:link href="http://digitivity.org/category/audience/power-user/feed" rel="self" type="application/rss+xml" />
	<link>http://digitivity.org</link>
	<description>The Digital Productivity Blog</description>
	<lastBuildDate>Sat, 24 Dec 2011 17:34:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Rename Files as Lowercase in Ubuntu Linux Recursively</title>
		<link>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively</link>
		<comments>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively#comments</comments>
		<pubDate>Sun, 27 Dec 2009 21:08:38 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[filenames]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lowercase]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[subdirectories]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=420</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/linuxunix" title="Linux/Unix">Linux/Unix</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Some reasons you might want to lowercase your filenames include: 1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower. 2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some reasons you might want to lowercase your filenames include:</p>
<p>1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower.</p>
<p>2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a lot faster to type in all one case.</p>
<p>But it&#8217;s too time consuming to rename each file individually, so here are a few ways to rename. These are adapted from the <a href="http://www.commandlinefu.com/commands/view/864/recursively-change-file-name-from-uppercase-to-lowercase-or-viceversa">commandlinefu</a> website. (But the commands there have some bugs, so keep reading here.)</p>
<h2>Renaming all the files in the current directory from uppercase to lowercase</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span> <span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>This uses the <tt>rename</tt> script which is included with Perl, which in turn uses Perl&#8217;s <tt>rename</tt> function.</p>
<p>Most Linuxes and Unixes include Perl these days, including most web hosts. It&#8217;s easier and more succint than the alternatives.</p>
<h2>Renaming all files from uppercase to lowercase in the current and subdirectories recursively</h2>
<p>The way to do this is to feed <tt>rename</tt> a list of all files in the current directory and its subdirectories:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span></pre></div></div>

<p>Here&#8217;s what it means:</p>
<p><tt>find</tt> prints a list of all files in the current and all subdirectories, recursively. <tt>-type f</tt> means only print the names of files, and not directories.</p>
<p>The <tt>|</tt> takes the output of the first command and sends it as input to the second command.</p>
<p><tt>xargs</tt> takes the input (which is a list of files) and executes rename once for every filename, while appending the filename to the end of the rename command.</p>
<p>Normally, <tt>find</tt> puts a newline between each filename. But since a file&#8217;s name can also contain newlines, you make find delimit the filenames with a null character (ASCII 0). You do this by specifying the <tt>-print0</tt> option. But you also have to tell <tt>xargs</tt> not to view newlines or spaces as filename delimiters, but rather only the null character. You do that with the <tt>-0</tt> option.</p>
<h2>Renaming files to lowercase without using Perl</h2>
<p>Occasionally, you might not have access to Perl.</p>
<p>In such cases, you can use straight POSIX shell commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f<span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> f; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$f</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(echo $f|tr '[:upper:]' '[:lower:]')</span>&quot;</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>This is an alernative that&#8217;s faster:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-execdir</span> <span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">'mv &quot;'</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'&quot; &quot;$(echo '</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'|tr '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">' '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">')&quot;'</span> \;</pre></div></div>



<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Log in to a Webserver Without a Password Using SSH Public Keys on Ubuntu</title>
		<link>http://digitivity.org/417/how-to-login-server-without-passwordless-using-ssh-public-key-ubuntu</link>
		<comments>http://digitivity.org/417/how-to-login-server-without-passwordless-using-ssh-public-key-ubuntu#comments</comments>
		<pubDate>Fri, 25 Dec 2009 17:13:08 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Power User]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[passwordless]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key encryption]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=417</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>You can avoid the annoyance of typing in your password every time you want to log in to your webserver (or other computer) by using public keys with SSH. What Is SSH? SSH is the Secure Shell protocol, which is a way for two computers to talk to one another without anybody being able to [...]


Related posts:<ol><li><a href='http://digitivity.org/781/dreamhost-server-problems-status-rss' rel='bookmark' title='Permanent Link: Dreamhost Problems Status RSS'>Dreamhost Problems Status RSS</a></li>
<li><a href='http://digitivity.org/964/how-to-manually-add-etc-host-ip-address-in-windows-linux-and-osx' rel='bookmark' title='Permanent Link: How to Manually Add Hosts in Windows, Linux, and OS/X'>How to Manually Add Hosts in Windows, Linux, and OS/X</a></li>
<li><a href='http://digitivity.org/318/ubuntu-karmic-koala-910-is-out' rel='bookmark' title='Permanent Link: Ubuntu Karmic Koala 9.10 Is Out'>Ubuntu Karmic Koala 9.10 Is Out</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You can avoid the annoyance of typing in your password every time you want to log in to your webserver (or other computer) by using public keys with SSH.</p>
<h2>What Is SSH?</h2>
<p>SSH is the Secure Shell protocol, which is a way for two computers to talk to one another without anybody being able to decode what is being said even if the interloper were able to access the raw network communications between the two computers. This is similar to the way web browsers use SSL (Secure Sockets Layer) to talk with e-commerce and other secure websites.</p>
<p>SSH is mostly used for shell access (typing commands for a remote server to execute) and for authenticating SFTP (Secure FTP), which allows downloading and uploading files to and from remote computers.</p>
<h2>Password Annoyances</h2>
<p>Usually, you&#8217;ll type in a username and password to authenticate yourself to the remote computer. But that gets boring real quick. Often you&#8217;ll be tempted to set an easy password, just to make it easier to type in again and again. Yet that&#8217;ll obviously decrease your security.</p>
<p>Add in the fact that many SSH clients tend to get stuck or boot you out if you don&#8217;t continuously use the connection, and that means plenty of password-retyping.</p>
<h2>Solution: SSH Public Keys</h2>
<p>The answer is SSH public-key based encryption. Public-key based encryption relies on two pieces of information: One, a secret and private key which you keep in a secure location (i.e., your home directory), and the other, a public key which you place anywhere you want to log in to.</p>
<p>The key is actually a long number, but it&#8217;s usually expressed as a series of number and letters when written to your hard drive.</p>
<p>I won&#8217;t go into the details of public/private key encryption here, but let it suffice to say that the remote server, encrypts a some data with your public key. The only way to decrypt that data would be if you had the private key, which your local computer does. After it does the decryption, the remote computer is able to trust that you are really you.</p>
<h2>Passwordless Login</h2>
<p>OK, since the only thing you need to log in to a remote computer is a private key, you don&#8217;t need to enter the password associated with your remote username. Hence, you&#8217;ve achieved passwordless login.</p>
<p>Now, since the private key can be used to log in to any one of your remote accounts, you might want to protect it. You can specify what is called a &#8220;passphrase&#8221; for it at the time your create your private key. That might seem slightly paradoxical, since having to enter a passphrase for your private key instead of a password for your remote server doesn&#8217;t seem like an improvement.</p>
<p>There are ways to have a passphrase, and also not have to enter it in again and again, but that&#8217;ll be the subject of another post. For now, anyway, if your personal computer is secure, and you want things to be easy, just don&#8217;t specify a passphrase.</p>
<h2>Creating a Private Key</h2>
<p>To start using SSH public key encryption, you need to create a private key.</p>
<p>Note: be sure SSH is installed for your operating system. It will usually be installed by default on Ubuntu (and just about any other Linux/Unix based system).</p>
<p>To create a private key, use the ssh-keygen program. Type <tt>ssh-keygen</tt> in a terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">js<span style="color: #000000; font-weight: bold;">@</span>buntu910wd:~$ <span style="color: #c20cb9; font-weight: bold;">ssh-keygen</span>
Generating public<span style="color: #000000; font-weight: bold;">/</span>private rsa key pair.
Enter <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #c20cb9; font-weight: bold;">which</span> to save the key <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>js<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa<span style="color: #7a0874; font-weight: bold;">&#41;</span>:</pre></div></div>

<p>When prompted for which file you want to save the key in, just press Enter for the default.</p>
<p>If you want to have passwordless logins, don&#8217;t enter a passphrase when prompted. Just press Enter twice:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Enter passphrase <span style="color: #7a0874; font-weight: bold;">&#40;</span>empty <span style="color: #000000; font-weight: bold;">for</span> no passphrase<span style="color: #7a0874; font-weight: bold;">&#41;</span>:
Enter same passphrase again:</pre></div></div>

<p><tt>ssh-keygen</tt> creates the key and then tells you where it saved it:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Your identification has been saved <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>js<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.
Your public key has been saved <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>js<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.pub.</pre></div></div>

<p>Your public and private keys are saved in a hidden folder called <tt>.ssh</tt> in your home directory. The ssh-keygen program sets permissions to allow only yourself to read the private key, but if you want to be sure, just do an <tt>ls -l</tt>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">js<span style="color: #000000; font-weight: bold;">@</span>buntu910wd:~<span style="color: #000000; font-weight: bold;">/</span>.ssh$ <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span>
total <span style="color: #000000;">12</span>
<span style="color: #660033;">-rw-------</span> <span style="color: #000000;">1</span> js js <span style="color: #000000;">1675</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">12</span>-<span style="color: #000000;">25</span> <span style="color: #000000;">16</span>:<span style="color: #000000;">29</span> id_rsa
<span style="color: #660033;">-rw-r--r--</span> <span style="color: #000000;">1</span> js js  <span style="color: #000000;">395</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">12</span>-<span style="color: #000000;">25</span> <span style="color: #000000;">16</span>:<span style="color: #000000;">29</span> id_rsa.pub
<span style="color: #660033;">-rw-r--r--</span> <span style="color: #000000;">1</span> js js <span style="color: #000000;">2210</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">27</span> <span style="color: #000000;">19</span>:07 known_hosts</pre></div></div>

<p>Note: <tt>id_rsa</tt> is the private key. Guard it well. If someone is able to copy that key, he will be able to log in to any of your remote accounts.</p>
<p><tt>id_rsa.pub</tt> is the public key. No one can log in to your remote accounts just by having your public key, but there&#8217;s no reason to spread it around, either.</p>
<h2>Installing the Public Key</h2>
<p>To use your public and private keys, you have to install the public key on each remote server you want to access without a password.</p>
<p>The way that SSH works by default, it looks for public keys in a file called <tt>authorized_keys</tt> in the .ssh directory. The public keys are are just long sequences of text in a single line.</p>
<p>You can have more than one key in an authorized_keys file (for yourself, or to allow others to log on).</p>
<p>If you&#8217;re setting up SSH keys for the first time, you probably won&#8217;t have an authorized_keys file on your remote server. So you can just copy the file that contains the public key to a new file calle authorized_keys:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> .ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.pub ~<span style="color: #000000; font-weight: bold;">/</span>authorized_keys</pre></div></div>

<p>Then upload the authorized_keys file to the remote computer&#8217;s .ssh directory. If you don&#8217;t have a .ssh directory on the remote computer, create one:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh</pre></div></div>

<p><strong>Important</strong>: Be sure you upload your public key, and <em>not</em> the private key. The public key has a &#8220;.pub&#8221; file extension.</p>
<p>Then, set the permissions on the authorized_keys file to allow only your account access to the file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">600</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>authorized_keys</pre></div></div>

<h2>Log in Without a Password</h2>
<p>Now go to a terminal and log in to your account:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> johnsmith<span style="color: #000000; font-weight: bold;">@</span>example.com</pre></div></div>

<p>If all goes well, ssh shouldn&#8217;t ask you for your password, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">js<span style="color: #000000; font-weight: bold;">@</span>buntu910wd:~$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> johnsmith<span style="color: #000000; font-weight: bold;">@</span>example.com
johnsmith<span style="color: #000000; font-weight: bold;">@</span>example.com<span style="color: #ff0000;">'s password:</span></pre></div></div>

<p>Since sftp uses the same authentication mechanism as ssh, you can use the sftp program without passwords, as well.</p>
<h2>Summary</h2>
<ol>
<li>Create a private/public key pair with ssh-keygen.</li>
<li>Copy the id_rsa.pub file to authorized_keys.</li>
<li>Upload the authorized_keys file to the .ssh directory in your home folder on the remote server.</li>
<li>Set permissions to only allow your user to access the key files.</li>
</ol>


<p>Related posts:<ol><li><a href='http://digitivity.org/781/dreamhost-server-problems-status-rss' rel='bookmark' title='Permanent Link: Dreamhost Problems Status RSS'>Dreamhost Problems Status RSS</a></li>
<li><a href='http://digitivity.org/964/how-to-manually-add-etc-host-ip-address-in-windows-linux-and-osx' rel='bookmark' title='Permanent Link: How to Manually Add Hosts in Windows, Linux, and OS/X'>How to Manually Add Hosts in Windows, Linux, and OS/X</a></li>
<li><a href='http://digitivity.org/318/ubuntu-karmic-koala-910-is-out' rel='bookmark' title='Permanent Link: Ubuntu Karmic Koala 9.10 Is Out'>Ubuntu Karmic Koala 9.10 Is Out</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/417/how-to-login-server-without-passwordless-using-ssh-public-key-ubuntu/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>RedHat Relents on Fedora Software Installation Policy</title>
		<link>http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy</link>
		<comments>http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy#comments</comments>
		<pubDate>Sat, 21 Nov 2009 17:48:17 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PolicyKit]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=315</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/linuxunix" title="Linux/Unix">Linux/Unix</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>I talked yesterday on how RedHat made a change to Fedora 12 to allow normal users to install any piece of (signed) software from the Fedora repositories without a root password. Slashdot reports that RedHat reversed the policy after an onslaught of community criticism. Owen Taylor (longtime employee of RedHat) made what seems to me [...]


Related posts:<ol><li><a href='http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit' rel='bookmark' title='Permanent Link: RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit'>RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/951/install-free-open-source-software-on-mac-osx-with-darwin-ports' rel='bookmark' title='Permanent Link: Install Free Software on Mac OS/X with Darwin Ports'>Install Free Software on Mac OS/X with Darwin Ports</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I talked yesterday on how RedHat made a change to Fedora 12 to allow normal users to install any piece of (signed) software from the Fedora repositories without a root password. <a href="http://linux.slashdot.org/story/09/11/20/1241231/Fedora-12-Package-Installation-Policy-Tightened">Slashdot</a> reports that RedHat reversed the policy after an onslaught of community criticism. Owen Taylor (longtime employee of RedHat) made what seems to me to be  quite a balanced <a href="https://www.redhat.com/archives/fedora-devel-list/2009-November/msg01445.html">statement</a> of the situation.</p>
<p>Basically, he said that, instead of asking for the root password every time the user wants to do something out of the ordinary, it&#8217;s better to define what users can do what, and let them do it. Teaching users to enter their root password all the time just sets them up to give the root password to a possibly malicious program.</p>
<p>This had been <a href="https://www.redhat.com/archives/fedora-desktop-list/2009-August/msg00103.html">discussed</a> as part of an overall framework for <a href="http://www.freedesktop.org/wiki/Software/PolicyKit">PolicyKit</a> (a granular permissions system for Linux), along with a GUI for setting what users and groups can do what. What happened in Fedore 12 was the the maintainer (Richard Hughes) went ahead and made the policy change allowing for user software installation without the GUI being ready.</p>
<p>So now RedHat has decided to make the user enter the root password when installing software in this release. In future releases, the other PolicyKit elements will be present, thereby allowing some changes in the software installation policy.</p>
<p>This is actually a balanced approach, and I think this&#8217;ll actually be better for both security and user experience in future Fedora (and other Linux) distributions.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit' rel='bookmark' title='Permanent Link: RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit'>RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/951/install-free-open-source-software-on-mac-osx-with-darwin-ports' rel='bookmark' title='Permanent Link: Install Free Software on Mac OS/X with Darwin Ports'>Install Free Software on Mac OS/X with Darwin Ports</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit</title>
		<link>http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit</link>
		<comments>http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit#comments</comments>
		<pubDate>Thu, 19 Nov 2009 17:44:53 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[PolicyKit]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=310</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/linuxunix" title="Linux/Unix">Linux/Unix</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a><a href="http://digitivity.org/category/rants" title="Rants">Rants</a></p>The latest version of RedHat&#8217;s Fedora Linux distribution features the ability for users to install software packages without having root privileges. On the one hand, RedHat employees are saying this is only due changes upstream from PolicyKit, but on the other hand, those same employees defended the decision saying that turning off this ability requires [...]


Related posts:<ol><li><a href='http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy' rel='bookmark' title='Permanent Link: RedHat Relents on Fedora Software Installation Policy'>RedHat Relents on Fedora Software Installation Policy</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The latest version of RedHat&#8217;s Fedora Linux distribution features the ability for users to install software packages without having root privileges. On the one hand, RedHat employees are saying this is only due changes upstream from <a href="http://en.wikipedia.org/wiki/PolicyKit">PolicyKit</a>, but on the other hand, those same employees <a href="https://bugzilla.redhat.com/show_bug.cgi?id=534047">defended the decision</a> saying that turning off this ability requires only a trivial change by administrators.</p>
<p>This sparked a <a href="http://linux.slashdot.org/story/09/11/18/2039229/Fedora-12-Lets-Users-Install-Signed-Packages-Sans-Root-Privileges">melee</a> on Slashdot, which reported on the situation, with most posters arguing vigorously for not allowing the PolicyKit changes. Basically, allowing users to install any and all packages (even if they are signed) opens up the possibility of many attacks and problems, not all of which can be foreseen, but that&#8217;s the point: The Unix philosophy has always been to give the least amount of privilege necessary to do the job. But RedHat&#8217;s Richard Hughes disagrees:</p>
<p style="padding-left: 30px;">I don&#8217;t particularly care how UNIX has always worked. Looking at the use-case and the things people are trying to do this seemed the best default. Admins can trivially change the default on machines if they wish.</p>
<p>User dedded expressed the outrage from users:</p>
<p style="padding-left: 30px;">This is not only a huge change from previous Fedora behavior, it&#8217;s contrary to every other version of Linux or Unix with which I&#8217;m familiar (and VMS, and<a href="https://bugzilla.redhat.com/show_bug.cgi?id=534047#c72"> comment #72</a> makes the claim for OSX).  And it wasn&#8217;t announced.</p>
<p style="padding-left: 30px;">Some of the early comments in this bug are disturbing in a breaks-the-trust kind of way.  <a href="https://bugzilla.redhat.com/show_bug.cgi?id=534047#c8">Comment #8</a> is just rude.  Comments #14 and #15 try to shut the bug down without discussion.  <a href="https://bugzilla.redhat.com/show_bug.cgi?id=534047#c9">Comment #9</a> claims that admins can &#8220;trivially change the default&#8221;.  But this &#8220;trivial&#8221; change apparently involves a new command (there&#8217;s no pklalockdown on my F11 system) with an obscure switch, or six lines of obscure configuration in an equally obscure location (five subdirectories deep!).  (Why is system configuration under /var and not /etc?)  And a subsequent comment claims the pklalockdown option goes away in the next polkit release.</p>
<p>The fact that the change wasn&#8217;t announced seems to add to the feeling of many in the community that Fedora is nothing more than a testing ground for RedHat, and RedHat doesn&#8217;t really care for a good user experience in each release of the distribution.</p>
<p class="bz_comment_text">Read more <a href="http://linux.slashdot.org/story/09/11/18/2039229/Fedora-12-Lets-Users-Install-Signed-Packages-Sans-Root-Privileges">here</a>.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/315/redhat-relents-on-fedora-software-installation-policy' rel='bookmark' title='Permanent Link: RedHat Relents on Fedora Software Installation Policy'>RedHat Relents on Fedora Software Installation Policy</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Dreamvue: A Desktop App to Manage Your Dreamhost Account</title>
		<link>http://digitivity.org/266/dreamvue-a-desktop-app-to-manage-your-dreamhost-account</link>
		<comments>http://digitivity.org/266/dreamvue-a-desktop-app-to-manage-your-dreamhost-account#comments</comments>
		<pubDate>Mon, 01 Jun 2009 03:42:11 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[Software and Downloads]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Dreahost]]></category>
		<category><![CDATA[Dreamhost API]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=266</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/blogging" title="Blogging">Blogging</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a><a href="http://digitivity.org/category/software-and-downloads" title="Software and Downloads">Software and Downloads</a></p>Dreamhost recently (within the last few months) released a remote API to manipulate accounts and get account information. They&#8217;re holding a contest for the best apps using the API. Digitivity.org presents Dreamvue, the Desktop Dreamhost Management App. Click the picture for more info. Related posts:How to Add an E-mail to a Gravatar Account Keep Notes [...]


Related posts:<ol><li><a href='http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one' rel='bookmark' title='Permanent Link: How to Add an E-mail to a Gravatar Account'>How to Add an E-mail to a Gravatar Account</a></li>
<li><a href='http://digitivity.org/961/keep-notes-and-stay-organized-with-zim-desktop-wiki' rel='bookmark' title='Permanent Link: Keep Notes and Stay Organized with Zim Desktop Wiki'>Keep Notes and Stay Organized with Zim Desktop Wiki</a></li>
<li><a href='http://digitivity.org/25/how-to-change-the-background-image-of-the-windows-desktop' rel='bookmark' title='Permanent Link: How to Change the Background Image of the Windows Desktop'>How to Change the Background Image of the Windows Desktop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Dreamhost recently (within the last few months) released a <a href="http://wiki.dreamhost.com/API">remote API</a> to manipulate accounts and get account information. They&#8217;re holding a <a href="http://blog.dreamhost.com/2009/04/09/big-boy-time/">contest</a> for the best apps using the API.</p>
<p>Digitivity.org presents <a href="http://www.digitivity.org/apps/dreamvue">Dreamvue</a>, the Desktop Dreamhost Management App.</p>
<p>Click the picture for more info.</p>
<div id="attachment_278" class="wp-caption alignnone" style="width: 522px"><a href="http://www.digitivity.org/apps/dreamvue"><img class="size-medium wp-image-278" title="Dreamvue Dreamhost Desktop Management Application" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/dreamvue-06-dreamhost-main-512x369.png" alt="Dreamvue Dreamhost Desktop Management Application" width="512" height="369" /></a><p class="wp-caption-text">Dreamvue Dreamhost Desktop Management Application</p></div>


<p>Related posts:<ol><li><a href='http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one' rel='bookmark' title='Permanent Link: How to Add an E-mail to a Gravatar Account'>How to Add an E-mail to a Gravatar Account</a></li>
<li><a href='http://digitivity.org/961/keep-notes-and-stay-organized-with-zim-desktop-wiki' rel='bookmark' title='Permanent Link: Keep Notes and Stay Organized with Zim Desktop Wiki'>Keep Notes and Stay Organized with Zim Desktop Wiki</a></li>
<li><a href='http://digitivity.org/25/how-to-change-the-background-image-of-the-windows-desktop' rel='bookmark' title='Permanent Link: How to Change the Background Image of the Windows Desktop'>How to Change the Background Image of the Windows Desktop</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/266/dreamvue-a-desktop-app-to-manage-your-dreamhost-account/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to synchronize audio and video in VLC</title>
		<link>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc</link>
		<comments>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc#comments</comments>
		<pubDate>Mon, 08 Sep 2008 17:15:46 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=12</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Sometimes, a video&#8217;s audio isn&#8217;t synchronized with video for some reason or another. To sync audio and video on the fly in VLC: In VLC 0.9.4: press Ctrl+k to increase delay, and Ctrl+l to decrease delay. In VLC 0.8.6: press k to increase delay, and j to decrease delay. That&#8217;s without holding Ctrl. If you [...]


Related posts:<ol><li><a href='http://digitivity.org/388/vlc-puts-on-a-santa-hat-icon-for-christmas-easter-egg' rel='bookmark' title='Permanent Link: VLC Puts on a Santa Hat for Christmas'>VLC Puts on a Santa Hat for Christmas</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sometimes, a video&#8217;s audio isn&#8217;t synchronized with video for some reason or another.  To sync audio and video on the fly in VLC:</p>
<ul>
<li>In VLC 0.9.4: press Ctrl+k to increase delay, and Ctrl+l to decrease delay.</li>
<li>In VLC 0.8.6: press k to increase delay, and j to decrease delay. That&#8217;s without holding Ctrl.</li>
</ul>
<p>If you decrease delay below 0, you will then be, in effect, delaying the video.</p>
<p>Each press of the key combinations changes delay by 50 ms.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/388/vlc-puts-on-a-santa-hat-icon-for-christmas-easter-egg' rel='bookmark' title='Permanent Link: VLC Puts on a Santa Hat for Christmas'>VLC Puts on a Santa Hat for Christmas</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</title>
		<link>http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory</link>
		<comments>http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory#comments</comments>
		<pubDate>Thu, 10 Jul 2008 13:56:18 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[subdirectory]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/blog/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory-uncategorized</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/blogging" title="Blogging">Blogging</a><a href="http://digitivity.org/category/audience/developer" title="Developer">Developer</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>If your blog is the main point of focus for your website, you probably want to it serve your pages when a user hits the root of your website, such as: http://example.com/ But, for the sake of keeping your root directory organized on your webserver, you might not want to install WordPress in that directory. [...]


Related posts:<ol><li><a href='http://digitivity.org/739/techcrunch-blog-gets-hacked-again-wordpress-security' rel='bookmark' title='Permanent Link: TechCrunch Blog Gets Hacked Again &#038; WordPress Security'>TechCrunch Blog Gets Hacked Again &#038; WordPress Security</a></li>
<li><a href='http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit' rel='bookmark' title='Permanent Link: RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit'>RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit</a></li>
<li><a href='http://digitivity.org/1171/inside-the-pantheon_migrate-module-backup-and-migrate-archive' rel='bookmark' title='Permanent Link: Inside the Pantheon Backup and Migrate Archive'>Inside the Pantheon Backup and Migrate Archive</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If your blog is the main point of focus for your website, you probably want to it serve your pages when a user hits the root of your website, such as:</p>
<p>http://example.com/</p>
<p>But, for the sake of keeping your root directory organized on your webserver, you might not want to install WordPress in that directory.  Rather, you might want to install WordPress in subdirectory, such as &#8220;blog&#8221;.</p>
<h3>Edit the .htaccess file</h3>
<p>Open the file named &#8220;.htaccess&#8221; in the root directory. Or create one if it doesn&#8217;t exist. Add the following to it:<br />
<code><br />
# BEGIN WordPress<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
# END WordPress<br />
</code></p>
<h3>Create an index.php file</h3>
<p>Create a file in the root directory called &#8220;index.php&#8221;. Assuming your WordPress is installed at the /blog subdirectory, add the following to the file:<br />
<code><br />
&lt;?<br />
define('WP_USE_THEMES', true);<br />
require('./blog/wp-blog-header.php');<br />
?&gt;<br />
</code></p>
<h3>Change the blog URL in WordPress options</h3>
<p>Log in as Admin to WordPress. Change the blog URL from &#8220;http://example.com/blog/&#8221; to &#8220;http://example.com/&#8221;</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/739/techcrunch-blog-gets-hacked-again-wordpress-security' rel='bookmark' title='Permanent Link: TechCrunch Blog Gets Hacked Again &#038; WordPress Security'>TechCrunch Blog Gets Hacked Again &#038; WordPress Security</a></li>
<li><a href='http://digitivity.org/310/redhats-fedora-12-lets-users-install-software-without-root-with-policykit' rel='bookmark' title='Permanent Link: RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit'>RedHat&#8217;s Fedora 12 Lets Users Install Software Without Root with PolicyKit</a></li>
<li><a href='http://digitivity.org/1171/inside-the-pantheon_migrate-module-backup-and-migrate-archive' rel='bookmark' title='Permanent Link: Inside the Pantheon Backup and Migrate Archive'>Inside the Pantheon Backup and Migrate Archive</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</title>
		<link>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser</link>
		<comments>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser#comments</comments>
		<pubDate>Mon, 07 Jul 2008 16:08:25 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Quicktime]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/blog/?p=8</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Even though Flash FLV movies have become something of an Internet standard, some sites persist in presenting movies in Quicktime format. Here&#8217;s how to view them if you have trouble playing them in your browser. Reasons Quicktime movies might not play in your browser might include: You don&#8217;t have the latest Quicktime plugin installed. You [...]


Related posts:<ol><li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/1046/diginotar-ssl-certificate-hack-threatens-browser-security' rel='bookmark' title='Permanent Link: DigiNotar SSL Hack Threatens Browser Security'>DigiNotar SSL Hack Threatens Browser Security</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Even though Flash FLV movies have become something of an Internet standard, some sites persist in presenting movies in Quicktime format. Here&#8217;s how to view them if you have trouble playing them in your browser.</p>
<p>Reasons Quicktime movies might not play in your browser might include:</p>
<ul>
<li>You don&#8217;t have the latest Quicktime plugin installed.</li>
<li>You don&#8217;t care to launch the Quicktime plugin.</li>
</ul>
<p>I usually skip embedded Quicktime movies just because the plugin is so heavy. It takes a while to start up, and it takes up additional memory after it&#8217;s done.  This is unlike the Flash plugin, which is always loaded since it&#8217;s needed for so many websites.</p>
<p>So what I do is just do a &#8220;View Source&#8221; on the page (View: Page Source in Firefox).  Then I search for the Quicktime movie URL.  You can do this by searching for the text string &#8220;.mov&#8221;.  An example would be:</p>
<pre>
&lt;param name="src" value="http://www.colorguides.net/movies/pantone_solid_colors_movie.mov"&gt; &lt;/param&gt;&lt;br /&gt;</pre>
<p>Just get the URL:</p>
<pre>http://www.colorguides.net/movies/pantone_solid_colors_movie.mov</pre>
<p>Take it and paste it into VLC at the File: Open dialog.<br />
Of course, this means that you need to have VLC installed, but you should already have it installed.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/1046/diginotar-ssl-certificate-hack-threatens-browser-security' rel='bookmark' title='Permanent Link: DigiNotar SSL Hack Threatens Browser Security'>DigiNotar SSL Hack Threatens Browser Security</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="http://www.colorguides.net/movies/pantone_solid_colors_movie.mov" length="3257510" type="video/quicktime" />
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: digitivity.org @ 2012-02-08 21:20:09 -->
