<?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>Kriwelz e-Notes &#187; Ubuntu</title>
	<atom:link href="http://kriwelz.web.id/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://kriwelz.web.id/blog</link>
	<description>iwel&#039;s e-notes about his World</description>
	<lastBuildDate>Thu, 01 Jul 2010 10:20:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Change Remote Desktop password from terminal</title>
		<link>http://kriwelz.web.id/blog/change-remote-desktop-password-from-terminal/</link>
		<comments>http://kriwelz.web.id/blog/change-remote-desktop-password-from-terminal/#comments</comments>
		<pubDate>Sat, 30 May 2009 04:29:21 +0000</pubDate>
		<dc:creator>kriwelz</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[remote desktop]]></category>

		<guid isPermaLink="false">http://kriwelz.web.id/blog/?p=139</guid>
		<description><![CDATA[Having installed Remote Desktop on my Ubuntu Intrepid box makes me easy to control my desktop from anywhere to work,  but today when i tried to connect to my desktop,i forgot the password for it then i try to find some answers to change remote desktop password from terminal by googling, so i found this]]></description>
			<content:encoded><![CDATA[<p>Having installed Remote Desktop on my Ubuntu Intrepid box makes me easy to control my desktop from anywhere to work,  but today when i tried to connect to my desktop,i forgot the password for it</p>
<div class="wp-caption alignnone" style="width: 28px"><a href="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif"><img title="frustated" src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif" alt="frustated" width="18" height="18" /></a><p class="wp-caption-text">frustated</p></div>
<p>then i try to find some answers to change remote desktop password from terminal by googling, so i found this solution for 8.04 :</p>
<blockquote><p>- gconftool-2 -s -t bool /desktop/gnome/remote_access/enabled false<br />
- gconf-editor<br />
- paste encode password from: http://www.javazoom.net/services/base64/base64.jsp<br />
- or use:<br />
- gconftool-2 -s -t string /desktop/gnome/remote_access/vnc_password &lt;encode_pwd&gt;<br />
- or use:<br />
- System-&gt; preferences-&gt; Remote Desktop<br />
- set pwd as desired&#8230;<br />
- manual text edit of %gconf.xml does not seem to work!<br />
- gconftool-2 -s -t bool /desktop/gnome/remote_access/enabled true<br />
- verify .gconf/desktop/gnome/remote_access/%gconf.xml</p></blockquote>
<p><span id="more-139"></span>but unfortunately the path for Intrepid seems to change, and i&#8217;m having this problem when i try to edit the file :</p>
<blockquote><p>Failure listing entries in `/home/user1/.gconf/desktop/gnome/remote_access&#8217;: Bad key or directory name: &#8220;/home/user1/.gconf/desktop/gnome/remote_access&#8221;: Can&#8217;t have a period &#8216;.&#8217; right after a slash &#8216;/&#8217;</p></blockquote>
<p>soooo.. lets try to improvise :</p>
<blockquote><p>locate remote_access<br />
-&gt; /home/user1/.gconf/desktop/gnome/remote_access<br />
vim /home/user1/.gconf/desktop/gnome/remote_access/%gconf.xml</p></blockquote>
<p>after looking at the %gconf.xml file, i found this line :</p>
<blockquote><p>&lt;entry name=&#8221;vnc_password&#8221; mtime=&#8221;1242031453&#8243; type=&#8221;string&#8221;&gt;<br />
&lt;stringvalue&gt;ZW5jb2Rl&lt;/stringvalue&gt;<br />
&lt;/entry&gt;</p></blockquote>
<p>interesting&#8230;. so i go to <a href="http://www.javazoom.net/services/base64/base64.jsp">HERE</a> to decode the password (or you can find encode/decode function in php or any other programming language, then,Voilaaaa&#8230;i have change the remote desktop password then connect again using <a href="http://www.realvnc.com/products/free/4.1/download.html">VNC</a>.</p>
<p>The main issue in my mind now is, if the password is that easy to decode, then if u do have a remote desktop on your ubuntu desktop/server its VERY recomended to increase your level of security, like having firewall installed, change the default port for services installed (SSH,etc2),have a GOOD PASSWORD, and any other securities you can apply to your box.</p>
]]></content:encoded>
			<wfw:commentRss>http://kriwelz.web.id/blog/change-remote-desktop-password-from-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permanent Aliases in bash shell</title>
		<link>http://kriwelz.web.id/blog/permanent-aliases-in-bash-shell/</link>
		<comments>http://kriwelz.web.id/blog/permanent-aliases-in-bash-shell/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 07:58:04 +0000</pubDate>
		<dc:creator>kriwelz</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permanent]]></category>

		<guid isPermaLink="false">http://kriwelz.web.id/blog/?p=119</guid>
		<description><![CDATA[Aliases are a convenient feature of shells in Unix-like operating systems that make it possible to launch any command or group of commands (inclusive of any options, arguments and redirection) by merely entering a brief, pre-set string (i.e., sequence of characters). Although aliases can easily be set up using the alias command, this command has]]></description>
			<content:encoded><![CDATA[<table border="0" width="100%">
<tbody>
<tr>
<td width="10%"></td>
<td width="80%"><em>Aliases</em> are a convenient feature of <a href="shell.html">shells</a> in <a href="unix-like.html">Unix-like</a> <a href="operating_systems_list.html">operating systems</a> that make it possible to launch any <a href="command.html">command</a> or group of commands (inclusive of any options, <a href="argument.html">arguments</a> and <a href="redirection.html">redirection</a>) by merely entering a brief, pre-set <a href="string.html"><em>string</em></a> (i.e., sequence of <a href="character.html">characters</a>).</p>
<p>Although aliases can easily be set up using the <a href="alias.html"><em>alias</em></a> command, this command has the disadvantage that any alias created with it remains in effect only during the current <a href="login_def.html">login</a> session (i.e., until the user logs out or the computer is shut down). This might not be much of a problem for systems that are rebooted (i.e., restarted) only infrequently (such as corporate database servers), but it can be a nuisance for systems that are frequently rebooted (e.g., home computers).</p>
<p>Fortunately, however, any alias can be made more enduring (i.e., until it is explicitly removed) by writing it to the appropriate configuration file with a text editor. The name and location of such file can vary according to the system and the shell. In the case of the <em>bash</em> shell (which is the default shell on <a href="linuxdef.html"></a></p>
<p><a href="linuxdef.html">Linux</a>) on Red Hat Linux, an alias for any user can be added to the <em>.bashrc</em> file in that user&#8217;s <a href="home_directory.html">home directory</a>.</p>
<p>Each alias is written in this file exactly the same as it would be written on the <a href="command_line.html">command line</a> using the alias command (see <a href="alias.html">The alias Command</a> for examples). Because this configuration file is read at login, any changes to it will not take effect until the user has logged in again or opened a new <a href="terminal_window.html">terminal window</a> (i.e., an all-text window in a <a href="gui.html">GUI</a>).</p>
<p>.bashrc is a <a href="hidden_file.html"><em>hidden file</em></a>, that is, a file whose name begins with a period and thus is not normally visible in a GUI (graphical user interface). However, it is easy to locate and open from the command line.</p>
<p>Because .bashrc is a <a href="plain_text.html"><em>plain_text</em></a> file, it can easily be edited using any text editor, such as <a href="vi/index.html"><em>vi</em></a> or <em>gedit</em>. For example, assuming that the user is currently in its home directory, the following could be used to open .bashrc with vi:</p>
<blockquote><p><code>vi .bashrc</code></p></blockquote>
<p>Likewise, the following could be used to open the same file with gedit:</p>
<blockquote><p><code>gedit .bashrc</code></p></blockquote>
<p>The alias should be typed in below the line that says <em># User specific aliases and functions</em>. The pound sign at the start of this line indicates that the line is a <em>comment</em>, i.e., documentation for the convenience of humans rather than something on which the system acts.</p>
<p>Aliases for the <a href="root.html"><em>root user</em></a> (i.e., administrative account) can be made permanent by entering them in the .bashrc file in the root user&#8217;s home directory (which is <em>/root</em>), i.e., in <em>/root/.bashrc</em>. System-wide aliases can be put in the <em>/etc/bashrc</em> file. (Note that, at least on some systems, /etc/bashrc is not a hidden file.) The system needs to be restarted before system-wide aliases can take effect.</p>
<p>If the <a href="unalias.html"><em>unalias</em></a> command, which is used to remove or suppress aliases, is used on an alias which has been recorded in a .bashrc file, that alias is turned off for the duration of the current login session. However, the alias is not removed from the .bashrc file, and when the user logs in again, that alias is again in effect.</p>
<p class="copy">Created August 6, 2005.</p>
<p>Copyright © 2005 The Linux Information Project. All Rights Reserved.
</td>
<td width="10%"></td>
</tr>
<tr>
<td></td>
<td>http://www.linfo.org/make_alias_permanent.html</td>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://kriwelz.web.id/blog/permanent-aliases-in-bash-shell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Amarok with mp3 support</title>
		<link>http://kriwelz.web.id/blog/amarok-with-mp3-support/</link>
		<comments>http://kriwelz.web.id/blog/amarok-with-mp3-support/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:27:49 +0000</pubDate>
		<dc:creator>kriwelz</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[amarok mp3]]></category>

		<guid isPermaLink="false">http://kriwelz.web.id/blog/?p=110</guid>
		<description><![CDATA[After reinstalling my ubuntu to jaunty (yes, one day earlier i install ubuntu 8.10 then after googling i find out that ubuntu just released 9.04,arrghhh..) i want to burn in my newly bought LG earphone. Then when try to play mp3, amarok doesnt support mp3 for default! After  searching information for amarok mp3 support (install-mp3)]]></description>
			<content:encoded><![CDATA[<p>After reinstalling my ubuntu to jaunty (yes, one day earlier i install ubuntu 8.10 then after googling i find out that ubuntu just released 9.04,arrghhh..) i want to burn in my newly bought LG earphone. Then when try to play mp3, amarok doesnt support mp3 for default!</p>
<p>After  searching information for amarok mp3 support (install-mp3) etc etc.. i found out that the easiest way to make amarok support mp3 is install the codec, simply after install amarok</p>
<blockquote><p>sudo apt-get install amarok</p></blockquote>
<p>(or u can go to Add / Remove &#8211; Sound and Video, tick on the Amarok)</p>
<p>then install the codec :</p>
<blockquote><p>sudo apt-get install libxine1-ffmpeg</p></blockquote>
<p>Thats it.. re-run ur amarok, then it should support mp3 now <img src='http://kriwelz.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If only amarok have the equalizer feature, i think it would be more cool <img class=" alignnone" style="border: 0px none #000000;" title="day dreaming" src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/105.gif" alt="Wondering" width="23" height="18" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kriwelz.web.id/blog/amarok-with-mp3-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
