<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; multi-media</title> <atom:link href="http://www.ghacks.net/tag/multi-media/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 17:32:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Tweak Nautilus to better suit your needs</title><link>http://www.ghacks.net/2010/07/21/tweak-nautilus-to-better-suit-your-needs/</link> <comments>http://www.ghacks.net/2010/07/21/tweak-nautilus-to-better-suit-your-needs/#comments</comments> <pubDate>Wed, 21 Jul 2010 11:16:07 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Desktop Manager]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[file manager]]></category> <category><![CDATA[GNOME]]></category> <category><![CDATA[multi-media]]></category> <category><![CDATA[nautilus]]></category> <category><![CDATA[root user]]></category> <category><![CDATA[ubuntu]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=28472</guid> <description><![CDATA[If there&#8217;s one thing that Linux has it&#8217;s flexibility. And this is true from the top down; from the desktop environment all the way down to the kernel. One area that offers a lot of tweaks, one that most new users aren&#8217;t used to being able to tweak, is the file manager. This is true [...]]]></description> <content:encoded><![CDATA[<p>If there&#8217;s one thing that Linux has it&#8217;s flexibility. And this is true from the top down; from the desktop environment all the way down to the kernel. One area that offers a lot of tweaks, one that most new users aren&#8217;t used to being able to tweak, is the file manager. This is true for both the GNOME file manager and the KDE file manager. The GNOME file manager is Nautilus. I&#8217;ve written about it before here on Ghacks (see <a
title="Nautilus content on Ghacks" href="http://www.ghacks.net/index.php?s=Nautilus" target="_blank">Nautilus-related content on Ghacks</a>) and I thought I should show you some further explorations of one of the strongest file managers for the Linux desktop.</p><p>In this article I will show you how to deal with such issues as handling media, handling the deletion of files, browsing Nautilus as the root user, and maybe more. Read on Macduff!</p><p><span
id="more-28472"></span><strong>Handling media</strong></p><div
id="attachment_28473" class="wp-caption alignright" style="width: 255px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/07/nautilus_media.png"><img
class="size-medium wp-image-28473 " src="http://www.ghacks.net/wp-content/uploads/2010/07/nautilus_media-409x500.png" alt="" width="245" height="300" /></a><p
class="wp-caption-text">Figure 1</p></div><p>If you open up Nautilus to any of your folders that contain media and double click on any of those files, most likely Nautilus will ask you what to do with that file (unless you&#8217;ve already set a default application for that file type). Did you know, however, that you can instruct Nautilus what to do with just about any media type you can think of? Sure! Here&#8217;s what you need to do:</p><ol><li>Open up Nautilus.</li><li>Click on the Media tab (see Figure 1).</li><li>From the media type you are wanting to change select the action you want from the drop down.</li><li>From the Other Media section you can set up less common media formats, and how you want Nautilus to handle them.</li></ol><p>That&#8217;s it. You will notice, from the drop downs, there are already applications pre-configured to handle certain media types. If you don&#8217;t see the application you want to use just select <em>Open with other application</em> and then (in the new window) navigate to the executable for the application you want to use (usually in <strong>/usr/bin</strong>).</p><p>Now when you double click on of those media types the action you have configured will occur.</p><p><strong>Deleting files</strong></p><p>Have you noticed, if you right-click a file within Nautilus, your only option for deleting a file is to send it to the Trashcan? What if you KNOW you want that file gone (and not saved for later un-deletion)? Well, that is not a problem. You can easily add a Delete option to your right-click action menu. To do this click <strong>Edit &gt; Preferences</strong> and then, from the Behavior tab, check the box for <em>Include a Delete command that bypasses Trash</em>. After you have done that, click Close on the Preferences window and now, when you right-click a file, you will see a Delete entry.</p><p><strong>Open a root user Nautilus window</strong></p><p>There are times you just need the power of root &#8211; even in your file manager. By default the only way to do this is to open up a terminal window and issue the <em>nautilus </em> command with either <em>sudo </em>or after you have <em>su&#8217;ing </em>to the root user. That is not the case. Here&#8217;s what you do:</p><p>1. Open up a terminal window.</p><p>2. Issue the command <em>sudo nano /usr/share/applications/Nautilus-root.desktop</em></p><p>3. Add the following to that file:<br
/> <code> [Desktop Entry]<br
/> Name=File Browser (Root)<br
/> Comment=Browse the filesystem with the file manager<br
/> Exec=gksudo "nautilus --browser %U"<br
/> Icon=file-manager<br
/> Terminal=false<br
/> Type=Application<br
/> Categories=Application;System;</code></p><p>Save that file and then click <strong>Applications &gt; System Tools &gt; File Browser (Root)</strong> and (after entering the root user password) you will have a Nautilus browser open as the root user! Handy.</p><p><strong>Final thoughts</strong></p><p>The configurations you can undertake with the Nautilus file manager seem limitless. In this article you have seen three such configurations, but you know there are plenty more where that came from. I hope these three tips have made your Linux file browsing much easier.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/07/21/tweak-nautilus-to-better-suit-your-needs/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Hulu desktop for Linux</title><link>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/</link> <comments>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/#comments</comments> <pubDate>Tue, 20 Oct 2009 02:14:58 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[Desktop Manager]]></category> <category><![CDATA[Entertainment]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[hulu]]></category> <category><![CDATA[movies]]></category> <category><![CDATA[multi-media]]></category> <category><![CDATA[television]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=17474</guid> <description><![CDATA[I&#8217;m sure by now everyone here knows about Hulu. If not, Hulu is a rather huge collection of television programs that can be viewed on line, for free, with few commercial interruptions. It&#8217;s brilliant. You can watch old reruns of What&#8217;s Happenin? or Mork and Mindy or Alf! Yes, Alf! But many of you may [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;m sure by now everyone here knows about <a
title="Hulu" href="http://www.hulu.com" target="_blank">Hulu</a>. If not, Hulu is a rather huge collection of television programs that can be viewed on line, for free, with few commercial interruptions. It&#8217;s brilliant. You can watch old reruns of What&#8217;s Happenin? or Mork and Mindy or Alf! Yes, Alf! But many of you may not know that there is a Hulu client available. This client makes the viewing experience very simple, and much more convenient than the standard browser viewing because, well, it doesn&#8217;t require a browser. Instead it&#8217;s like watching on a simple (but very impressive) desktop widget.</p><p>This desktop widget is now available for Windows, Mac, and (are you ready for it?) Linux! Yes, it&#8217;s available for Linux, so all of us Penguinistas can enjoy our Hulu as it was meant to be enjoyed. And best of all, it&#8217;s easy to install. Let&#8217;s see just how easy the Hulu desktop client is to install and use.</p><p><span
id="more-17474"></span><strong>Distributions and installations</strong></p><p>As of now the only distributions Hulu is available for are Ubuntu 9.04 and Fedora 11. So if you&#8217;re not running either of them you&#8217;re out of luck. Hulu does hope to, over time, support other distributions. But both Ubuntu and Fedora make sense. Now, I will tell you that I did successfully install the Hulu client on Elive Compiz which is a Debian-based installation. So &#8211; if you can install a .deb package on your machine, and you meet the requirements, you might be golden.</p><p>Let&#8217;s take a look at the installation process. The Hulu client depends upon:</p><ul><li><span
style="font-size: 12px;background-color: #ffffff">GTK+ 2.12 or higher</span></li><li><span
style="font-size: 12px;background-color: #ffffff">GLib 2.16 or higher</span></li><li><span
style="font-size: 12px;background-color: #ffffff">LIRC 0.8.2 or higher (required for remote control functionality)</span></li><li><span
style="font-size: 12px;background-color: #ffffff">Adobe Flash Player 9.0.124</span></li></ul><p>Most likely, if you are running either Ubuntu 9.04 or Fedora 11, you already have everything you need installed (minus Flash). Installing Flash is as simple (at least in Ubuntu) as visiting a site that requires Flash, and then walk through the steps for installation when prompted. To install Hulu you will need to download the file from the <a
title="Download" href="http://www.hulu.com/labs/hulu-desktop-linux" target="_blank">Hulu Linux page</a>. When you have downloaded that file you will need to issue one of the following commands (from within the directory the file was downloaded).</p><p>For Ubuntu:</p><p><em>dpkg -i huludesktop*</em></p><p>For Fedora:</p><p><em>rpm -ivh huludesktop*</em></p><p>Once the command finishes up, you are ready to run the client.</p><p><strong>Using Hulu desktop</strong></p><p>To start up the desktop client, issue the following command:</p><p><em>huludesktop</em></p><div
id="attachment_17475" class="wp-caption alignleft" style="width: 190px"><a
rel="attachment wp-att-17475" href="http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/hulu-2/"><img
class="size-thumbnail wp-image-17475 " src="http://www.ghacks.net/wp-content/uploads/2009/10/hulu-300x300.png" alt="Figure 1" width="180" height="180" /></a><p
class="wp-caption-text">Figure 1</p></div><p>You will most likely find Hulu desktop in your Audio/Video menu. If not, you can always add it. When the client opens (see Figure 1) you can immediately begin searching and watching your favorite television episodes.</p><p>The menu and overall interface are amazingly simple and sleek. More than likely you will be surprised just how well done this Linux client is (considering it is still in beta).</p><div
id="attachment_17476" class="wp-caption alignright" style="width: 190px"><a
rel="attachment wp-att-17476" href="http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/hulu_action/"><img
class="size-thumbnail wp-image-17476 " src="http://www.ghacks.net/wp-content/uploads/2009/10/hulu_action-300x300.png" alt="Figure 2" width="180" height="180" /></a><p
class="wp-caption-text">Figure 2</p></div><p>As you can see (in Figure 2) the player runs seamlessly on the Linux desktop. What you can not see is that the client requires very little in desktop resources. In fact, it&#8217;s no more noticeable than running a browser.</p><p><strong>Final thoughts</strong></p><p>The Hulu Linux desktop client makes watching TV (and movies) a breeze. I am thrilled that Hulu has brought out a Linux client without making the Linux community wait as the Windows and Mac community enjoy it&#8217;s services.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> </channel> </rss>
