<?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>Ubuntu Guide</title>
	<atom:link href="http://ubuntuguide.net/feed" rel="self" type="application/rss+xml" />
	<link>http://ubuntuguide.net</link>
	<description>Ubuntu Tips &#124; Ubuntu Howtos &#124; Ubuntu Servers</description>
	<lastBuildDate>Wed, 10 Mar 2010 03:52:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ssh to remote host without password</title>
		<link>http://ubuntuguide.net/ssh-to-remote-host-without-password</link>
		<comments>http://ubuntuguide.net/ssh-to-remote-host-without-password#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:52:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2783</guid>
		<description><![CDATA[By default we need type remote user&#8217;s password to access to remote host with ssh command.This tutorial shows how to configure to access remote host without password.
First,assume:
local host:192.168.1.100
remote host:192.168.1.101,username:username
we want to access to username@192.168.1.101 from 192.168.1.100 without password using ssh
1.Open terminal in 192.168.1.100 machine and type:

ssh-keygen

just press Enter to finish this command and it will [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/ssh-to-remote-server-without-password-in-ubuntu' rel='bookmark' title='Permanent Link: Ssh to remote server without password in Ubuntu'>Ssh to remote server without password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/enable-remote-desktop-in-virtual-machinevirtualbox-guest' rel='bookmark' title='Permanent Link: Enable remote desktop in Virtual machine(Virtualbox guest)'>Enable remote desktop in Virtual machine(Virtualbox guest)</a></li>
<li><a href='http://ubuntuguide.net/an-easy-way-to-mount-remote-filesystem-on-ubuntu' rel='bookmark' title='Permanent Link: An Easy way to mount remote filesystem on ubuntu'>An Easy way to mount remote filesystem on ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>By default we need type remote user&#8217;s password to access to remote host with ssh command.This tutorial shows how to configure to access remote host without password.</p>
<p>First,assume:</p>
<blockquote><p>local host:192.168.1.100<br />
remote host:192.168.1.101,username:username<br />
we want to access to username@192.168.1.101 from 192.168.1.100 without password using ssh</p></blockquote>
<p><strong>1.</strong>Open terminal in 192.168.1.100 machine and type:</p>

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

<p>just press <strong>Enter</strong> to finish this command and it will create plublic/private rsa key pair:<strong>id_rsa,id_rsa.pub</strong></p>
<p><strong>2.</strong>Create <em>.ssh</em> directory in remote host which we want to access to.For security,change the permission to 700.<br />
use ssh to access to remote host:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> 192.168.1.101 <span style="color: #660033;">-l</span> username</pre></div></div>

<p>create .ssh directory and change it&#8217;s permission:</p>

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

<p><strong>3.</strong>copy and paste <strong>id_rsa.pub</strong> file from localhost to remote host&#8217;s <strong>.ssh</strong> folder and rename to <strong>authorized_keys</strong></p>

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

<p>Now,use ssh command to access to username@192.168.1.101 from 192.168.1.100 and it won&#8217;t ask for password again.<br />
In addition,if it outputs:<em>Agent admitted failure to sign using the key</em>.Try <code>ps -Af|agent</code> to make sure <strong>ssh-agent</strong> has started.If not,start it and add <strong>id_rsa </strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh-agent</span>
<span style="color: #c20cb9; font-weight: bold;">ssh-add</span> id_rsa</pre></div></div>

<p><a href="http://ubuntuguide.net/?ibsa=share&id=2783" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/ssh-to-remote-server-without-password-in-ubuntu' rel='bookmark' title='Permanent Link: Ssh to remote server without password in Ubuntu'>Ssh to remote server without password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/enable-remote-desktop-in-virtual-machinevirtualbox-guest' rel='bookmark' title='Permanent Link: Enable remote desktop in Virtual machine(Virtualbox guest)'>Enable remote desktop in Virtual machine(Virtualbox guest)</a></li>
<li><a href='http://ubuntuguide.net/an-easy-way-to-mount-remote-filesystem-on-ubuntu' rel='bookmark' title='Permanent Link: An Easy way to mount remote filesystem on ubuntu'>An Easy way to mount remote filesystem on ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/ssh-to-remote-host-without-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPRename-A complete batch renamer for files and directories(GUI)</title>
		<link>http://ubuntuguide.net/gprename-a-complete-batch-renamer-for-files-and-directoriesgui</link>
		<comments>http://ubuntuguide.net/gprename-a-complete-batch-renamer-for-files-and-directoriesgui#comments</comments>
		<pubDate>Mon, 08 Mar 2010 03:46:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2779</guid>
		<description><![CDATA[GPRename is a GUI tool based on gtk2-perl in Linux.It can easily rename multiple files or folders,it supports change filename in lowercase/uppercase,insert remove or replace letters in filename include the extension,change filename to number.
Install GPRename in Ubuntu
Just search gprename in System-&#62;Administration-&#62;Synaptic Package Manager
Or open terminal from Applications-&#62;Accessories menu,and type this command to install GPRename:

sudo apt-get [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/clean-useless-files-to-free-disk-space-and-guard-your-privacy-with-bleachbit' rel='bookmark' title='Permanent Link: Clean useless files to free disk space and guard your privacy with BleachBit'>Clean useless files to free disk space and guard your privacy with BleachBit</a></li>
<li><a href='http://ubuntuguide.net/install-gloobusmac-like-quicklook-in-ubuntu-9-10' rel='bookmark' title='Permanent Link: Install Gloobus,Mac-like quicklook in Ubuntu 9.10'>Install Gloobus,Mac-like quicklook in Ubuntu 9.10</a></li>
<li><a href='http://ubuntuguide.net/view-hidden-files-and-folders-in-ubuntu-file-browser' rel='bookmark' title='Permanent Link: View Hidden Files and Folders in ubuntu File Browser'>View Hidden Files and Folders in ubuntu File Browser</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>GPRename is a GUI tool based on gtk2-perl in Linux.It can easily rename multiple files or folders,it supports change filename in lowercase/uppercase,insert remove or replace letters in filename include the extension,change filename to number.</p>
<p><strong>Install GPRename in Ubuntu</strong></p>
<p>Just search gprename in <em>System-&gt;Administration-&gt;Synaptic Package Manager</em><br />
Or open terminal from <em>Applications-&gt;Accessories</em> menu,and type this command to install GPRename:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gprename</pre></div></div>

<p>Now,you can launch GPRename from <em>Applications-&gt;Accessories</em> menu or by type <code>gprename</code> command.</p>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2010/03/GPrename.png"><img class="alignnone size-medium wp-image-2780" title="GPrename" src="http://ubuntuguide.net/wp-content/uploads/2010/03/GPrename-455x360.png" alt="GPrename" width="455" height="360" /></a></p>
<p>In the left,choose a directory and in bottom do what you want to change with these files/folders in this directory.Click <strong>Preview</strong> and preview the changes in <em>right box-&gt;New Name</em>.Finally click <strong>Rename</strong> button to do the change.</p>
<p>GPRename source page:<a href="http://gprename.sourceforge.net/" target="_blank">http://gprename.sourceforge.net/</a></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2779" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/clean-useless-files-to-free-disk-space-and-guard-your-privacy-with-bleachbit' rel='bookmark' title='Permanent Link: Clean useless files to free disk space and guard your privacy with BleachBit'>Clean useless files to free disk space and guard your privacy with BleachBit</a></li>
<li><a href='http://ubuntuguide.net/install-gloobusmac-like-quicklook-in-ubuntu-9-10' rel='bookmark' title='Permanent Link: Install Gloobus,Mac-like quicklook in Ubuntu 9.10'>Install Gloobus,Mac-like quicklook in Ubuntu 9.10</a></li>
<li><a href='http://ubuntuguide.net/view-hidden-files-and-folders-in-ubuntu-file-browser' rel='bookmark' title='Permanent Link: View Hidden Files and Folders in ubuntu File Browser'>View Hidden Files and Folders in ubuntu File Browser</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/gprename-a-complete-batch-renamer-for-files-and-directoriesgui/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Couple of amusing linux commands</title>
		<link>http://ubuntuguide.net/couple-of-amusing-linux-commands</link>
		<comments>http://ubuntuguide.net/couple-of-amusing-linux-commands#comments</comments>
		<pubDate>Sat, 06 Mar 2010 14:38:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2775</guid>
		<description><![CDATA[Today I found this in ubuntu forums,although it could be a long time ago I had to share it with you!
Easter Egg
Open terminal from Applications-&#62;Accessories-&#62;Terminal.Type these command in turns:
apt-get moo
aptitude  moo
aptitude -v moo
aptitude -vv moo
aptitude -vvv moo
aptitude -vvvv moo
aptitude -vvvvv moo
aptitude -vvvvvv moo
Enjoy the output!If you have install apt-build(use sudo apt-get install apt-build),you could [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/list-of-commands-determine-system-inforesourcespartitionsprocess-in-ubuntu-linux' rel='bookmark' title='Permanent Link: List of commands determine system info/resources/partitions/process in Ubuntu Linux'>List of commands determine system info/resources/partitions/process in Ubuntu Linux</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-dvd-playback-in-ubuntu' rel='bookmark' title='Permanent Link: How to Enable DVD Playback in Ubuntu'>How to Enable DVD Playback in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-an-rpm-package-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to install an RPM Package on ubuntu linux'>How to install an RPM Package on ubuntu linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I found this in ubuntu forums,although it could be a long time ago I had to share it with you!</p>
<p><strong>Easter Egg</strong><br />
Open terminal from <em>Applications-&gt;Accessories-&gt;Terminal</em>.Type these command in turns:</p>
<blockquote><p>apt-get moo<br />
aptitude  moo<br />
aptitude -v moo<br />
aptitude -vv moo<br />
aptitude -vvv moo<br />
aptitude -vvvv moo<br />
aptitude -vvvvv moo<br />
aptitude -vvvvvv moo</p></blockquote>
<p>Enjoy the output!If you have install apt-build(use <code>sudo apt-get install apt-build</code>),you could also type:</p>
<blockquote><p>apt-build moo</p></blockquote>
<p><strong>cal 9 1752</strong><br />
We know,<code>cal month year</code> prints the calendar.But</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cal</span> <span style="color: #000000;">9</span> <span style="color: #000000;">1752</span></pre></div></div>

<p>Outputs:</p>
<blockquote><p>September 1752<br />
Su Mo Tu We Th Fr Sa<br />
1  2 14 15 16<br />
17 18 19 20 21 22 23<br />
24 25 26 27 28 29 30</p></blockquote>
<p>Here is the reason:</p>
<blockquote><p>Britain and the British Empire (including the eastern part of what is now the United States) adopted the Gregorian calendar in 1752 (see the Calendar (New Style) Act 1750) by which time it was necessary to correct by 11 days. Wednesday, 2 September 1752 was followed by Thursday, 14 September 1752 to account for 29 February 1700 (Julian). After 1753, the British tax year in Britain continued to operate on the Julian calendar and began on 5 April, which was the &#8220;Old Style&#8221; new tax year of 25 March. A 12th skipped Julian leap day in 1800 changed its start to 6 April. It was not changed when a 13th Julian leap day was skipped in 1900, so the tax year in the United Kingdom still begins on 6 April.(from:<a href="http://en.wikipedia.org/wiki/Gregorian_calendar" target="_blank">http://en.wikipedia.org/wiki/Gregorian_calendar</a>)</p></blockquote>
<p>Next command is :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">fortune</pre></div></div>

<p>it may prints famous quotation,or something humourous and it prints different in each <code>fortune</code> command.<br />
If you installed fortune-zh(<code>sudo apt-get install fortune-zh</code>),it can even prints <em>Tang poem Song jambic verse </em>.Of course,you&#8217;d first make your system support printing Chinese language.</p>
<p>Try other amusing commands:</p>
<blockquote><p>yes<br />
ddate<br />
xeyes<br />
cowsay         (sudo apt-get install cowsay)<br />
cowthink</p></blockquote>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2775" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/list-of-commands-determine-system-inforesourcespartitionsprocess-in-ubuntu-linux' rel='bookmark' title='Permanent Link: List of commands determine system info/resources/partitions/process in Ubuntu Linux'>List of commands determine system info/resources/partitions/process in Ubuntu Linux</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-dvd-playback-in-ubuntu' rel='bookmark' title='Permanent Link: How to Enable DVD Playback in Ubuntu'>How to Enable DVD Playback in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/how-to-install-an-rpm-package-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to install an RPM Package on ubuntu linux'>How to install an RPM Package on ubuntu linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/couple-of-amusing-linux-commands/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remmina-free and open-source Remote Desktop Client written in GTK+</title>
		<link>http://ubuntuguide.net/remmina-free-and-open-source-remote-desktop-client-written-in-gtk</link>
		<comments>http://ubuntuguide.net/remmina-free-and-open-source-remote-desktop-client-written-in-gtk#comments</comments>
		<pubDate>Thu, 04 Mar 2010 03:47:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2762</guid>
		<description><![CDATA[Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks.Remmina supports multiple network protocols in an integrated and  consistant user interface. Currently RDP, VNC, XDMCP and SSH are [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/enable-remote-desktop-in-virtual-machinevirtualbox-guest' rel='bookmark' title='Permanent Link: Enable remote desktop in Virtual machine(Virtualbox guest)'>Enable remote desktop in Virtual machine(Virtualbox guest)</a></li>
<li><a href='http://ubuntuguide.net/mldonkey-multi-platformmulti-networkpeer-to-peer-client-for-linuxunixwindows' rel='bookmark' title='Permanent Link: MLDonkey-multi-platform,multi-network,peer-to-peer client for Linux/Unix/Windows'>MLDonkey-multi-platform,multi-network,peer-to-peer client for Linux/Unix/Windows</a></li>
<li><a href='http://ubuntuguide.net/malformed-line-62-in-source-list-etcaptsourceslist-dist-parse' rel='bookmark' title='Permanent Link: Malformed line 62 in source list /etc/apt/sources.list (dist parse)'>Malformed line 62 in source list /etc/apt/sources.list (dist parse)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks.Remmina supports multiple network protocols in an integrated and  consistant user interface. Currently RDP, VNC, XDMCP and SSH are supported.<br />
Remmina is free and open-source software, released under GNU GPL license.Currently,the latest version Remmina 0.7.4 released on February 18, 2010.<br />
<strong>Install in Ubuntu</strong></p>
<p>Add Remmina PPA by editing /etc/apt/sources.list with this command (or open <em>system-&gt;Administration-&gt;Software Sources </em>and add Remmina PPA source.)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list</pre></div></div>

<p>append this line into the end of the file:<br />
<em>for 9.10:</em></p>
<blockquote><p>deb http://ppa.launchpad.net/llyzs/ppa/ubuntu karmic main</p></blockquote>
<p><em>for 9.04:</em></p>
<blockquote><p>deb http://ppa.launchpad.net/llyzs/ppa/ubuntu jaunty main</p></blockquote>
<p>Add the key and update:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com <span style="color: #660033;">--recv-keys</span> 5A0FA8F1
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>Now,there should be three packages in ubuntu repository:<br />
*  &#8220;remmina&#8221;, the main GTK+ application<br />
* &#8220;remmina-gnome&#8221;, the GNOME desktop applet<br />
* &#8220;remmina-xfce&#8221;, the Xfce panel plugin<br />
Install them from synaptic package manager,or use the <code>sudo apt-get install packagename</code> command to install them.</p>
<p>Remmina mainpage:<a href="http://remmina.sourceforge.net/index.shtml" target="_blank">http://remmina.sourceforge.net/index.shtml</a></p>
<p><strong>Screenshots</strong> (from Remmina mainpage)<br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client.png"><img class="alignnone size-medium wp-image-2764" title="remote-desktop-client" src="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client-499x350.png" alt="remote-desktop-client" width="499" height="350" /></a><br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client1.png"><img class="alignnone size-medium wp-image-2765" title="remote-desktop-client1" src="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client1-500x311.png" alt="remote-desktop-client1" width="500" height="311" /></a><br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client2.png"><img class="alignnone size-medium wp-image-2766" title="remote-desktop-client2" src="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client2-500x349.png" alt="remote-desktop-client2" width="500" height="349" /></a><br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client3.png"><img class="alignnone size-medium wp-image-2767" title="remote-desktop-client3" src="http://ubuntuguide.net/wp-content/uploads/2010/03/remote-desktop-client3-469x360.png" alt="remote-desktop-client3" width="469" height="360" /></a></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2762" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/enable-remote-desktop-in-virtual-machinevirtualbox-guest' rel='bookmark' title='Permanent Link: Enable remote desktop in Virtual machine(Virtualbox guest)'>Enable remote desktop in Virtual machine(Virtualbox guest)</a></li>
<li><a href='http://ubuntuguide.net/mldonkey-multi-platformmulti-networkpeer-to-peer-client-for-linuxunixwindows' rel='bookmark' title='Permanent Link: MLDonkey-multi-platform,multi-network,peer-to-peer client for Linux/Unix/Windows'>MLDonkey-multi-platform,multi-network,peer-to-peer client for Linux/Unix/Windows</a></li>
<li><a href='http://ubuntuguide.net/malformed-line-62-in-source-list-etcaptsourceslist-dist-parse' rel='bookmark' title='Permanent Link: Malformed line 62 in source list /etc/apt/sources.list (dist parse)'>Malformed line 62 in source list /etc/apt/sources.list (dist parse)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/remmina-free-and-open-source-remote-desktop-client-written-in-gtk/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu Tweak 0.5.2 Release and upgrade/download link included</title>
		<link>http://ubuntuguide.net/ubuntu-tweak-0-5-2-release-and-upgradedownload-link-included</link>
		<comments>http://ubuntuguide.net/ubuntu-tweak-0-5-2-release-and-upgradedownload-link-included#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:20:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2755</guid>
		<description><![CDATA[Ubuntu  Tweak has released a new version 0.5.2.This release has a few bug fixed and friendly improvment.
Since version 0.5 brought &#8220;Application Center&#8221; and &#8220;Source Center&#8221; with synchronizing function,user can easily get more fresh softwares.Despite user always didn&#8217;t know what has updated after every sync.
So Ubuntu Tweak 0.5.2 add new item highlight in App and Source [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/installupgrade-latest-ubuntu-tweak-in-ubuntu9-109-048-108-04' rel='bookmark' title='Permanent Link: Install/Upgrade latest Ubuntu-Tweak in Ubuntu9.10/9.04/8.10/8.04'>Install/Upgrade latest Ubuntu-Tweak in Ubuntu9.10/9.04/8.10/8.04</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-newubuntu-tweak-0-5-0-released' rel='bookmark' title='Permanent Link: Ubuntu New:Ubuntu Tweak 0.5.0 released'>Ubuntu New:Ubuntu Tweak 0.5.0 released</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-software-center-waiting-for-another-software-in-process-to-quit' rel='bookmark' title='Permanent Link: Ubuntu Software Center-Waiting for another software in process to quit'>Ubuntu Software Center-Waiting for another software in process to quit</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu  Tweak has released a new version 0.5.2.This release has a few bug fixed and friendly improvment.<br />
Since version 0.5 brought &#8220;Application Center&#8221; and &#8220;Source Center&#8221; with synchronizing function,user can easily get more fresh softwares.Despite user always didn&#8217;t know what has updated after every sync.<br />
So Ubuntu Tweak 0.5.2 add new item highlight in App and Source Center.<br />
<em>Bug fixed:</em><br />
<em>Ubuntu Tweak &gt; System menu &gt; Nautilus options<br />
Python bug during startup<br />
Cancel button won&#8217;t work when choosing a new GNOME menu logo icon<br />
Crashes on choosing window manager configuration<br />
Metacity reports error with: &#8216;NoneType&#8217; object has no attribute &#8216;replace&#8217;<br />
typo in LockDown.py<br />
typo in nautilus.py</em><br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/03/ubuntu-tweak0.5.2.png"><img class="alignnone size-full wp-image-2756" title="ubuntu-tweak0.5.2" src="http://ubuntuguide.net/wp-content/uploads/2010/03/ubuntu-tweak0.5.2.png" alt="ubuntu-tweak0.5.2" width="382" height="357" /></a><br />
<strong>Download/Upgrade to this new version</strong></p>
<p>Download deb or source package from:<a href="https://launchpad.net/ubuntu-tweak/0.5.x/0.5.2" target="_blank">https://launchpad.net/ubuntu-tweak/0.5.x/0.5.2</a></p>
<p>If you have <a href="https://launchpad.net/~tualatrix/+archive/ppa" target="_blank">add the PPA source</a> and installed an old Ubuntu-Tweak version,you can check and upgrade from <em>Update-Manager</em> (System-&gt;Administration-&gt;Update Manager).Or,use this command to install all available updates:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> upgrade</pre></div></div>

<p><a href="http://ubuntuguide.net/?ibsa=share&id=2755" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/installupgrade-latest-ubuntu-tweak-in-ubuntu9-109-048-108-04' rel='bookmark' title='Permanent Link: Install/Upgrade latest Ubuntu-Tweak in Ubuntu9.10/9.04/8.10/8.04'>Install/Upgrade latest Ubuntu-Tweak in Ubuntu9.10/9.04/8.10/8.04</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-newubuntu-tweak-0-5-0-released' rel='bookmark' title='Permanent Link: Ubuntu New:Ubuntu Tweak 0.5.0 released'>Ubuntu New:Ubuntu Tweak 0.5.0 released</a></li>
<li><a href='http://ubuntuguide.net/ubuntu-software-center-waiting-for-another-software-in-process-to-quit' rel='bookmark' title='Permanent Link: Ubuntu Software Center-Waiting for another software in process to quit'>Ubuntu Software Center-Waiting for another software in process to quit</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/ubuntu-tweak-0-5-2-release-and-upgradedownload-link-included/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add medibuntu sources to install more useful softwares in Ubuntu</title>
		<link>http://ubuntuguide.net/add-medibuntu-sources-to-install-more-useful-softwares-in-ubuntu</link>
		<comments>http://ubuntuguide.net/add-medibuntu-sources-to-install-more-useful-softwares-in-ubuntu#comments</comments>
		<pubDate>Thu, 25 Feb 2010 03:37:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2745</guid>
		<description><![CDATA[This tutorial shows how to add medibuntu to ubuntu sources that makes your ubuntu can available more free softwares.
By now,medibuntu includes following binary packages:
# aacgain
# aacplusenc
# acroread-fonts
# alsa-firmware
# amrnb
# amrwb
# app-install-data-medibuntu
# apport-hooks-medibuntu
# gizmo5
# googleearth-data
# googleearth
# hot-babe
# ices
# libamrnb3
# libamrnb-dev
# libamrwb3
# libamrwb-dev
# libavcodec-extra-52
# libavcodec-unstripped-52
# libavdevice-extra-52
# libavdevice-unstripped-52
# libavfilter-extra-0
# libavfilter-unstripped-0
# libavformat-extra-52
# libavformat-unstripped-52
# libavutil-extra-49
# libavutil-unstripped-49
# libdvdcss2
# libdvdcss-dev
# libpostproc-extra-51
# libpostproc-unstripped-51
# [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/easy-way-to-install-skype-on-ubuntu' rel='bookmark' title='Permanent Link: Easy way to install Skype on Ubuntu'>Easy way to install Skype on Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/malformed-line-62-in-source-list-etcaptsourceslist-dist-parse' rel='bookmark' title='Permanent Link: Malformed line 62 in source list /etc/apt/sources.list (dist parse)'>Malformed line 62 in source list /etc/apt/sources.list (dist parse)</a></li>
<li><a href='http://ubuntuguide.net/install-mplayer-and-multimedia-codecs-in-ubuntu-904' rel='bookmark' title='Permanent Link: Install Mplayer and Multimedia codecs in ubuntu 9.04'>Install Mplayer and Multimedia codecs in ubuntu 9.04</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows how to add medibuntu to ubuntu sources that makes your ubuntu can available more free softwares.<br />
By now,medibuntu includes following binary packages:<br />
# aacgain<br />
# aacplusenc<br />
# acroread-fonts<br />
# alsa-firmware<br />
# amrnb<br />
# amrwb<br />
# app-install-data-medibuntu<br />
# apport-hooks-medibuntu<br />
# gizmo5<br />
# googleearth-data<br />
# googleearth<br />
# hot-babe<br />
# ices<br />
# libamrnb3<br />
# libamrnb-dev<br />
# libamrwb3<br />
# libamrwb-dev<br />
# libavcodec-extra-52<br />
# libavcodec-unstripped-52<br />
# libavdevice-extra-52<br />
# libavdevice-unstripped-52<br />
# libavfilter-extra-0<br />
# libavfilter-unstripped-0<br />
# libavformat-extra-52<br />
# libavformat-unstripped-52<br />
# libavutil-extra-49<br />
# libavutil-unstripped-49<br />
# libdvdcss2<br />
# libdvdcss-dev<br />
# libpostproc-extra-51<br />
# libpostproc-unstripped-51<br />
# libswscale-extra-0<br />
# libswscale-unstripped-0<br />
# medibuntu-keyring<br />
# non-free-codecs<br />
# realplayer<br />
# rmconverter<br />
# w32codecs<br />
# w64codecs</p>
<p><strong>Step1:</strong>Edit /etc/apt/sources.list file by this command (open terminal from Applications->Accessories->Terminal to type command):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksudo gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list</pre></div></div>

<p>append following code into the end of the file(for ubuntu9.10):</p>
<pre>deb http://packages.medibuntu.org/ karmic free non-free</pre>
<p>change <strong>karmic</strong>(ubuntu 9.10)in previous code to <strong>hardy</strong>/<strong>intrepid</strong>/<strong>jaunty</strong>/<strong>lucid</strong>(ubuntu 8.04/8.10/9.04/10.04).</p>
<p><strong>Step2:</strong>Use this command to add GPG key:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> medibuntu-keyring</pre></div></div>

<p>update your system:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>Done.Now,you can install the packages list in the top by <strong>apt-get install</strong> command or from <strong>synaptic package manager</strong></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2745" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/easy-way-to-install-skype-on-ubuntu' rel='bookmark' title='Permanent Link: Easy way to install Skype on Ubuntu'>Easy way to install Skype on Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/malformed-line-62-in-source-list-etcaptsourceslist-dist-parse' rel='bookmark' title='Permanent Link: Malformed line 62 in source list /etc/apt/sources.list (dist parse)'>Malformed line 62 in source list /etc/apt/sources.list (dist parse)</a></li>
<li><a href='http://ubuntuguide.net/install-mplayer-and-multimedia-codecs-in-ubuntu-904' rel='bookmark' title='Permanent Link: Install Mplayer and Multimedia codecs in ubuntu 9.04'>Install Mplayer and Multimedia codecs in ubuntu 9.04</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/add-medibuntu-sources-to-install-more-useful-softwares-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tomfox-firefox addon to Create Tomboy notes from Firefox</title>
		<link>http://ubuntuguide.net/tomfox-firefox-addon-to-create-tomboy-notes-from-firefox</link>
		<comments>http://ubuntuguide.net/tomfox-firefox-addon-to-create-tomboy-notes-from-firefox#comments</comments>
		<pubDate>Thu, 25 Feb 2010 02:59:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mozilla Firefox]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2741</guid>
		<description><![CDATA[You may want to note something useful with Tomboy when you&#8217;re browsing the web,it is inconvenient to copy and paste again and again.
Tomfox is a firefox addon that adds a &#8220;Create Tomboy Note&#8221; option to the right click menu. Users can send a selected piece of text to a Tomboy note directly from within Firefox.
Get [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/a-gadget-to-show-pagerank-in-firefox' rel='bookmark' title='Permanent Link: A gadget to show PageRank in firefox'>A gadget to show PageRank in firefox</a></li>
<li><a href='http://ubuntuguide.net/view-pdfs-and-save-web-pages-as-pdf-files-in-firefox' rel='bookmark' title='Permanent Link: View PDFs and save web pages as PDF files in Firefox'>View PDFs and save web pages as PDF files in Firefox</a></li>
<li><a href='http://ubuntuguide.net/downthemall-a-download-manager-extension-for-mozilla-firefox' rel='bookmark' title='Permanent Link: DownThemAll-A Download Manager extension for Mozilla Firefox'>DownThemAll-A Download Manager extension for Mozilla Firefox</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You may want to note something useful with Tomboy when you&#8217;re browsing the web,it is inconvenient to copy and paste again and again.<br />
Tomfox is a firefox addon that adds a &#8220;Create Tomboy Note&#8221; option to the right click menu. Users can send a selected piece of text to a Tomboy note directly from within Firefox.</p>
<p>Get Tomfox:<a href="https://addons.mozilla.org/en-US/firefox/addon/8276" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/8276</a></p>
<p>Tomfox also provides several useful options and you can get them from preferences windows:<br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/02/tomboy.png"><img src="http://ubuntuguide.net/wp-content/uploads/2010/02/tomboy.png" alt="tomboy" title="tomboy" width="395" height="254" class="alignnone size-full wp-image-2742" /></a></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2741" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/a-gadget-to-show-pagerank-in-firefox' rel='bookmark' title='Permanent Link: A gadget to show PageRank in firefox'>A gadget to show PageRank in firefox</a></li>
<li><a href='http://ubuntuguide.net/view-pdfs-and-save-web-pages-as-pdf-files-in-firefox' rel='bookmark' title='Permanent Link: View PDFs and save web pages as PDF files in Firefox'>View PDFs and save web pages as PDF files in Firefox</a></li>
<li><a href='http://ubuntuguide.net/downthemall-a-download-manager-extension-for-mozilla-firefox' rel='bookmark' title='Permanent Link: DownThemAll-A Download Manager extension for Mozilla Firefox'>DownThemAll-A Download Manager extension for Mozilla Firefox</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/tomfox-firefox-addon-to-create-tomboy-notes-from-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tile windows vertically/horizontally in Ubuntu easily with X-Tile</title>
		<link>http://ubuntuguide.net/tile-windows-verticallyhorizontally-in-ubuntu-easily-with-x-tile</link>
		<comments>http://ubuntuguide.net/tile-windows-verticallyhorizontally-in-ubuntu-easily-with-x-tile#comments</comments>
		<pubDate>Tue, 23 Feb 2010 04:58:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2729</guid>
		<description><![CDATA[When you are operating on several windows and want to do some compared things,it is convenient to quat tile windows,or tile windows vertically/horizontally with keyboard shortcuts.
X-tile is a gnome applet for your panel (or optionally a standalone application)that allows you to select a number of windows and tile them in different ways.
This is especially useful [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/quickly-close-windows-and-applications-using-xkill-in-ubuntu' rel='bookmark' title='Permanent Link: Quickly Close windows and applications using xkill in Ubuntu'>Quickly Close windows and applications using xkill in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/frequently-used-keyboard-shortcuts-in-ubuntu-linux' rel='bookmark' title='Permanent Link: Frequently-used Keyboard shortcuts in Ubuntu Linux'>Frequently-used Keyboard shortcuts in Ubuntu Linux</a></li>
<li><a href='http://ubuntuguide.net/use-the-windows-key-for-start-menu-on-ubuntu' rel='bookmark' title='Permanent Link: Use the Windows Key for Start menu on Ubuntu'>Use the Windows Key for Start menu on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you are operating on several windows and want to do some compared things,it is convenient to quat tile windows,or tile windows vertically/horizontally with keyboard shortcuts.<br />
X-tile is a gnome applet for your panel (or optionally a standalone application)that allows you to select a number of windows and tile them in different ways.<br />
This is especially useful for comparing products in separate web pages,or for programmers refering to documentation as they are programming.</p>
<p><strong>Install X-tile</strong></p>
<p>Download the deb package and double click to install.<br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/02/x-tile_1.3.1-1_all.deb">x-tile_1.3.1-1_all.deb</a><br />
You&#8217;d better to use this command to install X-tile(open terminal from Applications-&gt;Accessories menu to type command),because it may prompts you to install some dependences.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> x-tile_1.3.1-<span style="color: #000000;">1</span>_all.deb</pre></div></div>

<p>When I first install x-tile,I need to install <em>python-psutil</em> by following command and then run previous command to install again.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> python-psutil</pre></div></div>

<p><strong>Create keyboard shortcuts to quick tile windows in different ways</strong></p>
<p>After installation,you can do this tile things with GUI by open X-tile from <em>Applications-&gt;Accessories</em> menu.<br />
<a href="http://ubuntuguide.net/wp-content/uploads/2010/02/tile_windows.png"><img class="alignnone size-medium wp-image-2730" title="tile_windows" src="http://ubuntuguide.net/wp-content/uploads/2010/02/tile_windows-500x356.png" alt="tile_windows" width="500" height="356" /></a></p>
<p>However,it&#8217;d better to create shortcuts rather than click icons.<br />
Go to <em>System-&gt;Preferences-&gt;Keyboard shortcuts</em> to open following screen.Click <strong>Add</strong>,type a name as you like and type following commands:</p>
<blockquote><p><strong>x-tile &#8211;tile-all-vertically </strong>(skip main window, directly tile all opened windows vertically)<br />
<strong>x-tile &#8211;tile-all-horizontally </strong> (skip main window, directly tile all opened windows horizontally)<br />
<strong>x-tile &#8211;tile-all-quad</strong> (skip main window, directly quad tile all opened windows)<br />
<strong>x-tile &#8211;maximize-all</strong> (skip main window, directly maximize all opened windows)</p></blockquote>
<p><a href="http://ubuntuguide.net/wp-content/uploads/2010/02/tile_windows1.png"><img class="alignnone size-medium wp-image-2731" title="tile_windows1" src="http://ubuntuguide.net/wp-content/uploads/2010/02/tile_windows1-500x318.png" alt="tile_windows1" width="500" height="318" /></a></p>
<p>In the screen,I create 4 shortcuts.Single click on right of the highlight line and set its key combination.</p>
<p>More:<a href="http://open.vitaminap.it/en/x_tile.htm" target="_blank">http://open.vitaminap.it/en/x_tile.htm</a></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2729" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/quickly-close-windows-and-applications-using-xkill-in-ubuntu' rel='bookmark' title='Permanent Link: Quickly Close windows and applications using xkill in Ubuntu'>Quickly Close windows and applications using xkill in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/frequently-used-keyboard-shortcuts-in-ubuntu-linux' rel='bookmark' title='Permanent Link: Frequently-used Keyboard shortcuts in Ubuntu Linux'>Frequently-used Keyboard shortcuts in Ubuntu Linux</a></li>
<li><a href='http://ubuntuguide.net/use-the-windows-key-for-start-menu-on-ubuntu' rel='bookmark' title='Permanent Link: Use the Windows Key for Start menu on Ubuntu'>Use the Windows Key for Start menu on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/tile-windows-verticallyhorizontally-in-ubuntu-easily-with-x-tile/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to reset forgotten user/boot password in Ubuntu</title>
		<link>http://ubuntuguide.net/how-to-reset-forgotten-userboot-password-in-ubuntu</link>
		<comments>http://ubuntuguide.net/how-to-reset-forgotten-userboot-password-in-ubuntu#comments</comments>
		<pubDate>Mon, 22 Feb 2010 02:33:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2725</guid>
		<description><![CDATA[If you forgot your ubuntu user password,or you have enabled root user and forgot the password,you can try following to reset the forgotten password.
First,start your machine and when it boots into grub menu,select &#8220;Ubuntu GNU Linux &#8230;. (recovery mode)&#8221; (just use up/down arrow key to highlight it,not press enter).
Press E to get into edit screen,there  [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/reset-the-forgotten-password-in-ubuntu' rel='bookmark' title='Permanent Link: Reset the forgotten password in Ubuntu'>Reset the forgotten password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/prevent-resetting-ubuntu-password-from-recovery-mode' rel='bookmark' title='Permanent Link: Ask for a password to access recovery mode root console'>Ask for a password to access recovery mode root console</a></li>
<li><a href='http://ubuntuguide.net/fix-mysql50-error-1045forget-database-password-in-ubuntu-linux' rel='bookmark' title='Permanent Link: Fix Mysql5.0 ERROR 1045(forget database password) in Ubuntu Linux'>Fix Mysql5.0 ERROR 1045(forget database password) in Ubuntu Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you forgot your ubuntu user password,or you have enabled root user and forgot the password,you can try following to reset the forgotten password.</p>
<p>First,start your machine and when it boots into grub menu,select &#8220;Ubuntu GNU Linux &#8230;. (recovery mode)&#8221; (just use up/down arrow key to highlight it,not press enter).</p>
<p>Press<strong> E</strong> to get into edit screen,there  find <strong>ro single </strong>and change it into <strong>rw single init=/bin/bash</strong>,then press <strong>Ctrl+x</strong> or <strong>b</strong> to boot into a command line.</p>
<p>type following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-a</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">passwd</span> your-user-name</pre></div></div>

<p>it will prompts to input new password.If you want to reset the root password,change the second command to <strong>passwd root</strong>.<br />
Now,restart and login with the new password.</p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2725" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/reset-the-forgotten-password-in-ubuntu' rel='bookmark' title='Permanent Link: Reset the forgotten password in Ubuntu'>Reset the forgotten password in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/prevent-resetting-ubuntu-password-from-recovery-mode' rel='bookmark' title='Permanent Link: Ask for a password to access recovery mode root console'>Ask for a password to access recovery mode root console</a></li>
<li><a href='http://ubuntuguide.net/fix-mysql50-error-1045forget-database-password-in-ubuntu-linux' rel='bookmark' title='Permanent Link: Fix Mysql5.0 ERROR 1045(forget database password) in Ubuntu Linux'>Fix Mysql5.0 ERROR 1045(forget database password) in Ubuntu Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/how-to-reset-forgotten-userboot-password-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to view PDF files online in Firefox on Ubuntu 9.10(Karmic)</title>
		<link>http://ubuntuguide.net/how-to-view-pdf-files-online-in-firefox-on-ubuntu-9-10karmic</link>
		<comments>http://ubuntuguide.net/how-to-view-pdf-files-online-in-firefox-on-ubuntu-9-10karmic#comments</comments>
		<pubDate>Mon, 22 Feb 2010 01:45:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://ubuntuguide.net/?p=2721</guid>
		<description><![CDATA[In Ubuntu PDF files by default are opened in a separate PDF viewer.However,it would be better to view the online PDF files in web browser.Following shows how to get online PDF embedded within the Firefox window.
First,open terminal from Application-&#62;Accessories-&#62;Terminal to type this command to install Mozplugger and Evince:

sudo apt-get install evince mozplugger

Edit the Mozplugger config [...]


Related posts:<ol><li><a href='http://ubuntuguide.net/how-to-view-chm-files-in-ubuntu' rel='bookmark' title='Permanent Link: How to view CHM files in Ubuntu'>How to view CHM files in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/view-pdfs-and-save-web-pages-as-pdf-files-in-firefox' rel='bookmark' title='Permanent Link: View PDFs and save web pages as PDF files in Firefox'>View PDFs and save web pages as PDF files in Firefox</a></li>
<li><a href='http://ubuntuguide.net/view-hidden-files-and-folders-in-ubuntu-file-browser' rel='bookmark' title='Permanent Link: View Hidden Files and Folders in ubuntu File Browser'>View Hidden Files and Folders in ubuntu File Browser</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In Ubuntu PDF files by default are opened in a separate PDF viewer.However,it would be better to view the online PDF files in web browser.Following shows how to get online PDF embedded within the Firefox window.</p>
<p>First,open terminal from <em>Application-&gt;Accessories-&gt;Terminal</em> to type this command to install Mozplugger and Evince:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> evince mozplugger</pre></div></div>

<p>Edit the Mozplugger config file by:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksudo gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>mozpluggerrc</pre></div></div>

<p>find out following section:</p>
<blockquote><p>application/pdf:pdf:PDF file<br />
application/x-pdf:pdf:PDF file<br />
text/pdf:pdf:PDF file<br />
text/x-pdf:pdf:PDF file<br />
ACROREAD()<br />
repeat noisy swallow(kpdf) fill: kpdf &#8220;$file&#8221;<br />
repeat noisy swallow(Xpdf) fill: xpdf -g +9000+9000 &#8220;$file&#8221;<br />
repeat noisy swallow(okular) fill: okular &#8220;$file&#8221;<br />
GV()<br />
repeat noisy fill exits: evince &#8220;$file&#8221;</p></blockquote>
<p>replace above with following code if you want to use xpdf PDF viewer within the Firefox:</p>
<blockquote><p>application/pdf:pdf:PDF file<br />
application/x-pdf:pdf:PDF file<br />
text/pdf:pdf:PDF file<br />
text/x-pdf:pdf:PDF file<br />
repeat noisy swallow(Xpdf) fill: xpdf &#8220;$file&#8221;<br />
ACROREAD()<br />
repeat noisy swallow(kpdf) fill: kpdf &#8220;$file&#8221;<br />
repeat noisy swallow(okular) fill: okular &#8220;$file&#8221;<br />
GV()<br />
repeat noisy fill exits: xpdf &#8220;$file&#8221;</p></blockquote>
<p>Or if you would like the Evince PDF viewer replace with this:</p>
<blockquote><p>application/pdf:pdf:PDF file<br />
application/x-pdf:pdf:PDF file<br />
text/pdf:pdf:PDF file<br />
text/x-pdf:pdf:PDF file<br />
repeat noisy swallow(evince) fill: evince &#8220;$file&#8221;<br />
ACROREAD()<br />
repeat noisy swallow(kpdf) fill: kpdf &#8220;$file&#8221;<br />
repeat noisy swallow(Xpdf) fill: xpdf -g +9000+9000 &#8220;$file&#8221;<br />
repeat noisy swallow(okular) fill: okular &#8220;$file&#8221;<br />
GV()<br />
repeat noisy fill exits: evince &#8220;$file&#8221;</p></blockquote>
<p>Close and save changes.Logout and back in,then open Firefox and try to view a PDF file.<br />
Original text:<a href="http://sprayfly.com/2010/01/15/view-pdf-files-inline-in-firefox-on-ubuntu-karmic-9-10/" target="_blank">http://sprayfly.com/2010/01/15/view-pdf-files-inline-in-firefox-on-ubuntu-karmic-9-10/</a></p>
<p><a href="http://ubuntuguide.net/?ibsa=share&id=2721" id="share-link-">Share</a></p>

<p>Related posts:<ol><li><a href='http://ubuntuguide.net/how-to-view-chm-files-in-ubuntu' rel='bookmark' title='Permanent Link: How to view CHM files in Ubuntu'>How to view CHM files in Ubuntu</a></li>
<li><a href='http://ubuntuguide.net/view-pdfs-and-save-web-pages-as-pdf-files-in-firefox' rel='bookmark' title='Permanent Link: View PDFs and save web pages as PDF files in Firefox'>View PDFs and save web pages as PDF files in Firefox</a></li>
<li><a href='http://ubuntuguide.net/view-hidden-files-and-folders-in-ubuntu-file-browser' rel='bookmark' title='Permanent Link: View Hidden Files and Folders in ubuntu File Browser'>View Hidden Files and Folders in ubuntu File Browser</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://ubuntuguide.net/how-to-view-pdf-files-online-in-firefox-on-ubuntu-9-10karmic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>