<?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>Samet Kilictas&#039;s Blog &#187; Linux</title>
	<atom:link href="http://samet.kilictas.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://samet.kilictas.com</link>
	<description>J2E, PHP, Linux, PL/SQL and other random rants</description>
	<lastBuildDate>Sun, 06 Nov 2011 04:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Manage your virtual hosts on apache server easily</title>
		<link>http://samet.kilictas.com/manage-your-virtual-hosts-on-apache-server-easily/</link>
		<comments>http://samet.kilictas.com/manage-your-virtual-hosts-on-apache-server-easily/#comments</comments>
		<pubDate>Sat, 28 May 2011 16:07:10 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[virtual host]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=445</guid>
		<description><![CDATA[Building up and making all modifications on your server is pretty boring. There is no need to find the sun again and again. I’ve had to go through the process of reconfiguring my virtual hosts for Apache2 several times and i found a pre modified shell script and modified the script according to my needs. [...]]]></description>
			<content:encoded><![CDATA[<p>Building up and making all modifications on your server is pretty boring. There is no need to find the sun again and again. I’ve had to go through the process of reconfiguring my virtual hosts for Apache2 several times and i found a pre modified shell script and modified the script according to my needs. This script enables you to create, destroy your virtual host in a second.</p>
<p>you can download the script from here : <a href="http://samet.kilictas.com/wp-content/uploads/2011/05/vhost.txt">vhost.txt</a> or;</p>
<pre class="brush: sh">mkdir ~/bin
cd ~/bin
wget http://samet.kilictas.com/wp-content/uploads/2011/05/vhost.txt
mv vhost.txt vhost
chmod 755 vhost</pre>
<p>Now, to invoke the script, type the following:</p>
<pre class="brush: sh">. ~/bin/vhost</pre>
<p>By using this script you can create, destroy a virtual host. In order to create a new host on your server user following command by replacing appreciate values:</p>
<pre class="brush: sql">vhost create &lt;domain&gt; &lt;admin-email&gt; &lt;host-ip&gt;</pre>
<p>The script creates required directories,files as shown below;</p>
<p><strong>Web directories</strong><br />
<em>/www/htdocs/$domain</em><br />
<strong> </strong></p>
<p><strong>Web cgi-bin</strong><br />
<em>/www/cgi-bin/$domain</em></p>
<p><strong>Web logs</strong><br />
<em>/www/logs/$domain/apache2</em><br />
<em> /www/logs/$domain/apache2/access.log</em><br />
<em> /www/logs/$domain/apache2/error.log</em></p>
<p>then builds virtual host config file and enables it right away (enabling is optional), which is placed in following directory</p>
<p><em>/etc/apache2/sites-available/$domain</em></p>
<p>After getting done with all these process it simply creates a little info file</p>
<p><em>/www/$domain/logs/site_info</em></p>
<p>Great you have created and enabled your virtual host, you may need to destroy a virtual host, here is how;</p>
<pre class="brush: sql">vhost destroy &lt;domain&gt;</pre>
<p><span id="more-445"></span></p>
<p>get some help with;</p>
<pre class="brush: sql">vhost help</pre>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D445&count=vertical&related=&text=Manage%20your%20virtual%20hosts%20on%20apache%20server%20easily' class='twitter-share-button' data-text='Manage your virtual hosts on apache server easily' data-url='http://samet.kilictas.com/?p=445' data-counturl='http://samet.kilictas.com/manage-your-virtual-hosts-on-apache-server-easily/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/manage-your-virtual-hosts-on-apache-server-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash Shell Scripting Tutorial</title>
		<link>http://samet.kilictas.com/bash-shell-scripting-tutorial/</link>
		<comments>http://samet.kilictas.com/bash-shell-scripting-tutorial/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 07:19:24 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=420</guid>
		<description><![CDATA[Basics This tutorial assumes that you already know how to log in to your UNIX machine, bring up the bash shell, and run basic commands such as ls and cat. Getting to this point is fairly easy, but unfortunately this is the level that most users stay at indefinitely. This tutorial is intended to help [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Basics</strong><br />
This tutorial assumes that you already know how to log in to your UNIX machine, bring up the bash shell, and run basic commands such as ls and cat. Getting to this point is fairly easy, but unfortunately this is the level that most users stay at indefinitely. This tutorial is intended to help you start to learn the more advanced features of using a shell, and specifically bash, one of the most powerful shells available.</p>
<p>Please note that most of the command themselves are not explained; you can examine their functionality yourself by either reading their man page, or just experimenting with them to see what they do.</p>
<p><strong>Redirection</strong><br />
Normally programs take input from our keyboard, and display the output to our screens. However, these are just the defaults &#8211; UNIX has the ability to redirect the input (commonly referred to as stdin, short for standard input) and output (commonly referred to as stdout, short for standard output).<br />
<span id="more-420"></span><br />
Here is a simple example: the cat command displays the contents of a file to the screen. But we can redirect those contents to a file using the redirection operator &#8216;&gt;&#8217;, like so:</p>
<pre class="brush: bash">
$ cat myfile.txt
This is the contents of the file myfile.txt
$ cat myfile.txt &gt; newfile.txt
$ cat newfile.txt
This is the contents of the file myfile.txt
$
</pre>
<p>In effect, we&#8217;ve made cat do the same thing as cp, by redirecting the output from the screen to a file. This isn&#8217;t terribly useful, but consider another, similar, scenario: cat can take multiple arguments, and it will display the files one after the other. This can be used to append one file onto another and create a new, combined file.</p>
<pre class="brush: bash">
$ cat file1.txt
The quick brown fox...
$ cat file2.txt
...jumped over the lazy dog.
$ cat file1.txt file2.txt &gt; combined.txt
$ cat combined.txt
The quick brown fox...
...jumped over the lazy dog.
</pre>
<p>Neat, eh?</p>
<p>We can also redirect the input, so that a program takes the contents of a file as if it were typed at your keyboard. cat doesn&#8217;t take any input, so let&#8217;s use bc, a command line calculator. Normally, you run the program, and it lets you type in calculations such as &#8220;2+2&#8243;, and then displays the result. But if you have a file which already contains the calculations, you can send it straight to bc &#8211; faster and more powerful than cutting-and-pasting the text in with your mouse.</p>
<pre class="brush: bash">
$ cat calc.txt
2+2
$ bc &lt; calc.txt 4 $ </pre>
<p> A final note: you can use two output redirect symbols together &#8211; &gt;&gt; &#8211; to indicate that you want to append the file, not overwrite it. Hence:</p>
<pre class="brush: bash">
$ cat file1.txt
Contents of file1.
$ cat file2.txt
Contents of file2.txt.
$ cat file2.txt &gt;&gt; file1.txt
$ cat file1.txt
Contents of file1.
Contents of file2.txt.
$
</pre>
<p><strong>Pipes</strong><br />
Pipes are similar to redirection, but they are even more powerful, because they allow you to send input and output back and forth between programs. For example, let&#8217;s say that you want to send the calculation &#8220;2+2&#8243; to bc in a single command, without creating a file for redirection, or firing up bc and then entering the calculation. You can use the command echo, which normally sends output to the screen:</p>
<pre class="brush: bash">
$ echo 2+2
2+2
$
</pre>
<p>But instead we can send it through a pipe using the pipe character &#8216;|&#8217;, which you create by typing shift-backslash on your keyboard.</p>
<pre class="brush: bash">
$ echo 2+2 | bc
4
$
</pre>
<p>One thing that may throw you off about this example is that it seems intuitively out of order; bc is the &#8220;important&#8221; program being run, and normally we would expect that to come first. But it doesn&#8217;t, and for good reason: the pipeline works by sending the output of each successive program to the one immediately to its right. In this case, echo has to run first, because it generates the text &#8220;2+2&#8243; and stuffs it into the pipe. bc then receives the &#8220;2+2&#8243; text, and does its thing, which is process the calculation.</p>
<p>Possibly one of the most immediately useful features of the UNIX command line is the ability to fire off an email instantaneously using the mail command.</p>
<pre class="brush: bash">
$ echo &quot;Hey, I sent this mail from the bash command line!&quot; | mail -s &quot;bash rocks&quot; user@host.com
</pre>
<p><strong>Combinations</strong><br />
The true power of UNIX shells, and especially bash, is reflected in your ability to mix and match redirection, pipes, and other operators almost limitlessly. Here&#8217;s a combination example: we send 2+2 through the pipe, which bc calculates, and then sends the output to a file.</p>
<pre class="brush: bash">
$ echo 2+2 | bc &gt; result.txt
$ cat result.txt
4
$
</pre>
<p><strong>Variables</strong><br />
Variables are values that you give a name. They are significant because you can call them by that name throughout your bash &#8220;code&#8221;, but it can contain different values at different times. A simpler way to think about them is that they are simply storage containers, for keeping data around that you will later use within bash.</p>
<p>Here is an example of assigning a value, and then displaying its contents:</p>
<pre class="brush: bash">
$ MYVAR=3
$ echo $MYVAR
3
$
</pre>
<p>When the variable is first assigned (and created), the $ symbol is not used. From that point forward, however, it must be prefixed with the $ symbol or it will not be properly recognized by bash.</p>
<p>Variables can contain text, numbers, lists &#8211; just about anything that you can think of. There is no &#8220;type casting&#8221; as in structured programming languages, so you need not keep track of what sort of data is stored where.</p>
<p>It&#8217;s possible to do basic math with variables, like so:</p>
<pre class="brush: bash">
$ A=2
$ B=3
$ C=$((A+B))
$ echo $C
5
</pre>
<p>A simple use for variables is to save some data temporarily that you&#8217;re going to use in a later command, possibly several commands. In this example, we&#8217;ll get a list of files, print each one, append them to a master file, and then delete them.</p>
<pre class="brush: bash">
$ FILES=*.txt
$ lpr $FILES
$ cat $FILES &gt;&gt; master.txt
$ rm $FILES
</pre>
<p>So far variables might not seem terribly useful. In fact, their power doesn&#8217;t become obvious until we start using constructs such as loops.</p>
<p><strong>Loops</strong><br />
Computers are excellent at repetitious tasks. Yet all too often, because of limited user interfaces (especially the GUI interfaces that are the most popular), computer users find themselves doing mindless tasks, such as renaming a long list of files. This is a task that is ideal for an iterative loop. It is &#8220;iterative&#8221; because we step through each item in a list, doing a similar operation on each one. The two main types of loops are for loops and while loops, but let&#8217;s focus on for loops as they are generally more useful at the command line.</p>
<p>The format of the for loop command is as follows:</p>
<p>for counter in list; do command; done</p>
<p>Everything in italics are items you need to replace with your own values. Counter is the name of the variable you want to use to count with; it can be any single word. List is a list of items, one after the other, that you wish to step through, one by one. And command is what you actually want to do to each one. Since an example is worth a thousand words, take a look:</p>
<pre class="brush: bash">
$ for i in 1 2 3; do echo Loop iteration: $i; done
Loop iteration: 1
Loop iteration: 2
Loop iteration: 3
$
</pre>
<p>The counter variable is called &#8220;i&#8221;, and you may note that when referring to it in places other than right after the for we place a $ character in front of its name, so it becomes $i.</p>
<p>The list is 1, 2, and 3. List items should be separated by spaces.</p>
<p>The command is &#8220;echo Loop iteration: $i&#8221;. This command gets run for each member of the list; and the counter variable ($i) gets replaced with the current list member we are executing on each time we step through it. Thus, the first time it prints &#8220;Loop iteration: 1&#8243; because the value of $i is 1.</p>
<p>One neat trick we can use is to use wildcard characters (* and ?) in order to loop through files in the current directory. As a simple example, we could simply print each filename, duplicating the effect of the command ls:</p>
<pre class="brush: bash">
$ ls
file1.txt file2.txt
$ for i in *; do echo $i; done
file1.txt
file2.txt
$
</pre>
<p>That&#8217;s not so useful, but let&#8217;s say that we want to rename each file to start with the word &#8220;my&#8221;.</p>
<pre class="brush: bash">
$ ls
file1.txt file2.txt
$ for i in *; do mv $i my-$i; done
$ ls
myfile1.txt myfile2.txt
$
</pre>
<p><strong>Backticks</strong><br />
The magical backticks (the character `) are one of the best kept secrets of shell scripting, but at the same time one of the most useful. They allow you to run a secondary command inside of a new shell, and the output from that command will be placed onto the command line on the spot! As usual, and example shows best.</p>
<pre class="brush: bash">
$ cat masterfile.txt
file1.txt
file2.txt
file3.txt
$ cat `grep -l 2 masterfile.txt`
This is the contents of file 2.
$
</pre>
<p>In this example, the result of the command &#8220;grep -l 2 masterfile.txt&#8221; is going to be &#8220;file2.txt&#8221;. Normally that would just be displayed to the screen, and at that point you could manually type &#8220;cat file2.txt&#8221; to see its contents. But you can do it in a single command with backticks; the output of the grep command (&#8220;file2.txt&#8221;) is substituted on the command line, producing the command &#8220;cat file2.txt&#8221; for you!</p>
<p><strong>Bringing It All Together</strong><br />
At this point, you need to explore these tools yourself in order to get a better understanding of their great flexibility. Provided below are a number of examples to aid in your exploration of these topics.</p>
<p>Converting a list of filenames into lower case</p>
<pre class="brush: bash">
$ for i in *; do mv $i `echo $i | tr A-Z a-z`; done
</pre>
<p>Printing out only files which contain the text &#8220;PrintMe&#8221;</p>
<pre class="brush: bash">
$ lpr `grep -l PrintMe *`
</pre>
<p>Determining the difference in length (number of lines) between two files</p>
<pre class="brush: bash">
$ echo `cat file1.txt | wc -l` - `cat file2.txt | wc -l` | bc
</pre>
<p>Sending mail to a list of email addresses in a file</p>
<pre class="brush: bash">
$ for addr in `cat email-addresses.txt`; do cat message.txt | mail -s &quot;Hi there!&quot; $addr; done
</pre>
<p>Archiving all logfiles to a file named after the current date</p>
<pre class="brush: bash">
$ tar czvf logs-`date +%m%d%y`.tar.gz *.log
</pre>
<p><strong><em>Queued from</em></strong> : <a title="Here" href="http://www.tlc-networks.polito.it/giaccone/corsi/laboratorio/Scripting/Bash/bash.html">Here</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D420&count=vertical&related=&text=Bash%20Shell%20Scripting%20Tutorial' class='twitter-share-button' data-text='Bash Shell Scripting Tutorial' data-url='http://samet.kilictas.com/?p=420' data-counturl='http://samet.kilictas.com/bash-shell-scripting-tutorial/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/bash-shell-scripting-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable TCP connections to XServer?</title>
		<link>http://samet.kilictas.com/how-to-enable-tcp-connections-to-xserver/</link>
		<comments>http://samet.kilictas.com/how-to-enable-tcp-connections-to-xserver/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 13:01:01 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Xserver]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=393</guid>
		<description><![CDATA[sudo gedit /etc/gdm/gdm.schemas find: &#60;schema&#62; &#60;key&#62;security/DisallowTCP&#60;/key&#62; &#60;signature&#62;b&#60;/signature&#62; &#60;default&#62;true&#60;/default&#62; &#60;/schema&#62; shift from true to false: &#60;schema&#62; &#60;key&#62;security/DisallowTCP&#60;/key&#62; &#60;signature&#62;b&#60;/signature&#62; &#60;default&#62;false&#60;/default&#62; &#60;/schema&#62; Tweet]]></description>
			<content:encoded><![CDATA[<hr style="color: #ffffff; background-color: #ffffff;" size="1" /><!-- / icon and title --> <!-- message --></p>
<div id="post_message_8227965"></div>
<div>sudo gedit /etc/gdm/gdm.schemas</div>
<div id="post_message_8227965">
<p>find:</p>
<p>&lt;schema&gt;<br />
&lt;key&gt;security/DisallowTCP&lt;/key&gt;<br />
&lt;signature&gt;b&lt;/signature&gt;<br />
&lt;default&gt;true&lt;/default&gt;<br />
&lt;/schema&gt;</p>
<p>shift from true to false:</p>
<p>&lt;schema&gt;<br />
&lt;key&gt;security/DisallowTCP&lt;/key&gt;<br />
&lt;signature&gt;b&lt;/signature&gt;<br />
&lt;default&gt;false&lt;/default&gt;<br />
&lt;/schema&gt;</p></div>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D393&count=vertical&related=&text=How%20to%20enable%20TCP%20connections%20to%20XServer%3F' class='twitter-share-button' data-text='How to enable TCP connections to XServer?' data-url='http://samet.kilictas.com/?p=393' data-counturl='http://samet.kilictas.com/how-to-enable-tcp-connections-to-xserver/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/how-to-enable-tcp-connections-to-xserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gedit Modifications for PHP</title>
		<link>http://samet.kilictas.com/gedit-modifications-for-php/</link>
		<comments>http://samet.kilictas.com/gedit-modifications-for-php/#comments</comments>
		<pubDate>Sun, 17 May 2009 11:37:06 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[gedit]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=314</guid>
		<description><![CDATA[Since i am coding with codeigniter framework on gedit, i was looking for snippets for codeigniter on gedit download gedit snippet for codeigniter By the way if you want to make your gedit more useful for programming surely you may add some third party plugins as many as you want or simply just active default [...]]]></description>
			<content:encoded><![CDATA[<p>Since i am coding with codeigniter framework on gedit, i was looking for snippets for codeigniter on gedit</p>
<p><a href="http://samet.kilictas.com/wp-content/uploads/2009/05/php.xml">download gedit snippet for codeigniter</a></p>
<p>By the way if you want to make your gedit more useful for programming surely you may add some third party plugins as many as you want or simply just active default plugins.  Idea is that firstly download a plugin then extract its content to ‘~/.gnome2/gedit/plugins/’  directory. Once you have installed the plugin you want, you need to enable it via Edit&gt;Preferences and then the Plugins Tab. Such as;</p>
<blockquote><p>- Snippets<br />
- Class Browser<br />
- Bracket Completation<br />
- Character Map<br />
- Embedded Terminal<br />
etc..</p></blockquote>
<p>You can basicly find out third-party plugins by clicking on <a href="http://live.gnome.org/Gedit/Plugins#third_party">this link</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D314&count=vertical&related=&text=Gedit%20Modifications%20for%20PHP' class='twitter-share-button' data-text='Gedit Modifications for PHP' data-url='http://samet.kilictas.com/?p=314' data-counturl='http://samet.kilictas.com/gedit-modifications-for-php/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/gedit-modifications-for-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Save Penguins!</title>
		<link>http://samet.kilictas.com/save-penguins/</link>
		<comments>http://samet.kilictas.com/save-penguins/#comments</comments>
		<pubDate>Thu, 07 May 2009 19:19:32 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=297</guid>
		<description><![CDATA[Tweet]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2009/05/4143_96515232501_550627501_2538644_6549685_n.jpg"><img class="size-full wp-image-298 aligncenter" title="4143_96515232501_550627501_2538644_6549685_n" src="http://samet.kilictas.com/wp-content/uploads/2009/05/4143_96515232501_550627501_2538644_6549685_n.jpg" alt="" width="500" height="312" /></a></p>
<p style="text-align: center;">
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D297&count=vertical&related=&text=Save%20Penguins%21' class='twitter-share-button' data-text='Save Penguins!' data-url='http://samet.kilictas.com/?p=297' data-counturl='http://samet.kilictas.com/save-penguins/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/save-penguins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install Nvidia Driver 180.29 on your ubuntu</title>
		<link>http://samet.kilictas.com/how-to-install-nvidia-driver-18029-on-your-ubuntu/</link>
		<comments>http://samet.kilictas.com/how-to-install-nvidia-driver-18029-on-your-ubuntu/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 17:13:38 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[180.29]]></category>
		<category><![CDATA[8.10]]></category>
		<category><![CDATA[Nvidia]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=265</guid>
		<description><![CDATA[If you are using older drivers then 180.29 version you should* install new drivers so you will have better performence with 180.29 version. Don&#8217;t worry it is piece of cake to install it on your ubuntu. Firstly, go on ( System-&#62;Administration-&#62;Software Sources ) then click on &#8220;Third-Party software&#8221; tab. Now you should see a button [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://samet.kilictas.com/wp-content/uploads/2009/03/nvidia-settings.png"><img class="alignnone size-medium wp-image-264" title="nvidia-settings" src="http://samet.kilictas.com/wp-content/uploads/2009/03/nvidia-settings.png" alt="" width="48" height="48" /></a> If you are using older drivers then 180.29 version you should* install new drivers so you will have better performence with 180.29 version. Don&#8217;t worry it is piece of cake to install it on your ubuntu.</p>
<p>Firstly, go on ( System-&gt;Administration-&gt;Software Sources ) then click on &#8220;Third-Party software&#8221; tab. Now you should see a button &#8220;+Add&#8221; shows on it.</p>
<blockquote><p><code>deb <a title="http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu" href="http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu">http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu</a> intrepid main<br />
deb-src <a title="http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu" href="http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu">http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu</a> intrepid main</code></p></blockquote>
<p>As you see above there is two lines of address. You should add them one-by-one by clicking this &#8220;+Add&#8221; button. when you are done with that it is time to get PPA keys for this repository.</p>
<p>Now use there commands</p>
<blockquote><p>cd ~/Desktop<br />
gedit temp.key</p></blockquote>
<p><span id="more-265"></span></p>
<p>A Gedit window should be appear now. Then paste this key code inside of that window.</p>
<blockquote>
<pre>-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.0.10

mI0ESXak3QEEAKTdBfrFtEvBel4kluGh2d99v56PzgPB4gJKz5wET4sItbxZDU9hA61kt1hl
o/84l1696hWQvnVCXrXOI2g7ZW3RD/xs/HTG6gBcVjPAW7StXYQ6sLWNEu3mgZ4FA9RdEox2
38F0kqqozx187Tvq/OQBHVzPekcdQkaWPf8QkbJ3ABEBAAG0IExhdW5jaHBhZCBQUEEgZm9y
IEFuZGVycyBLYXNlb3JniEYEExECAAYFAkl3qLwACgkQG9iXoSX6XFaRLgCeLdHCeGYski0Q
YDIfiytgNzH5uFcAoIjEEHAXY9Z4N/nBDurP/Dzx/8M0iLYEEwECACAFAkl2pN0CGwMGCwkI
BwMCBBUCCAMEFgIDAQIeAQIXgAAKCRBimK00QTV2y8i7A/0XzwwjyTWdbcShItGhK4E3l/n0
Lq2JtCtJsjKphOOoE6pW3AjnrGayKZ5FNJoRVZYXNzIaeHhv6qlxdVTNiftUxIXJGOKRmCFJ
jYiltLTmJH+IGOCZAfMlT72AVKOLygEudLHF3KgdCX5/aW7sjCGtuvLJopL6zkcJpiJfoe2e
JA==
=ZaVk
-----END PGP PUBLIC KEY BLOCK-----</pre>
</blockquote>
<p>Then just save it. If this key above doesn&#8217;t works then try <a href="http://keyserver.ubuntu.com:11371/pks/lookup?search=0x026491A5DD081BDC6CDFC0DE6298AD34413576CB&amp;op=index">http://keyserver.ubuntu.com:11371/pks/lookup?search=0x026491A5DD081BDC6CDFC0DE6298AD34413576CB&amp;op=index</a> this link so you can find current key there. Now we are really close to make nvidia 180.29 working on our ubuntu. Now go on ( System-&gt;Administration-&gt;Software Sources ) then click on Authentication tab then you will see &#8220;+ Import Key File&#8221; button there. Click on it and find your &#8220;temp.key&#8221; file on your Desktop. Then click ok there you go now you are ready to make it work.</p>
<p>By the way you must be sure your old driver is working on 3D mode. Now open terminal again and write this commands</p>
<blockquote><p><code>sudo apt-get update<br />
sudo apt-get install nvidia-glx-180</code></p></blockquote>
<p>When it prompts on screen press &#8220;Y&#8221; button on your keyboard then Enter button. Now all you have to do it give it some time. After a quick restart you will have your drivers running you computer</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D265&count=vertical&related=&text=How%20to%20install%20Nvidia%20Driver%20180.29%20on%20your%20ubuntu' class='twitter-share-button' data-text='How to install Nvidia Driver 180.29 on your ubuntu' data-url='http://samet.kilictas.com/?p=265' data-counturl='http://samet.kilictas.com/how-to-install-nvidia-driver-18029-on-your-ubuntu/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/how-to-install-nvidia-driver-18029-on-your-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Subversion (SVN) Server Nasıl Kurulur (Turkish)</title>
		<link>http://samet.kilictas.com/subversion-svn-server-nasil-kurulur/</link>
		<comments>http://samet.kilictas.com/subversion-svn-server-nasil-kurulur/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 01:18:35 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[SourceSafe]]></category>
		<category><![CDATA[SubVersion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Team Foundation Server]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=160</guid>
		<description><![CDATA[Merhaba arkadaşlar subversion hakkında türkçe yazılmış çok fazla kaynak olmamasından dolayı bu yazımı türkçe yazdığımı belirtmek istiyorum. Halen ingilizce dilinin artık global bir dil olduğunun bazı kişiler tarafından kabul edilmeyişide ayrı bir tartışma konusu bence. Neyse hemen anlatmaya başlıyorum. Aslında kişisel olarak bir projeyi tek başıma yapıyorsam bunda daha başarılı olabildiğimi düşünüyordum ancak bazı nedenlerden [...]]]></description>
			<content:encoded><![CDATA[<p>Merhaba arkadaşlar subversion hakkında türkçe yazılmış çok fazla kaynak olmamasından dolayı bu yazımı türkçe yazdığımı belirtmek istiyorum. Halen ingilizce dilinin artık global bir dil olduğunun bazı kişiler tarafından kabul edilmeyişide ayrı bir tartışma konusu bence.</p>
<p>Neyse hemen anlatmaya başlıyorum. Aslında kişisel olarak bir projeyi tek başıma yapıyorsam bunda daha başarılı olabildiğimi düşünüyordum ancak bazı nedenlerden dolayı anladım ki atasözümüz olan &#8220;Bir elin nesi var iki elin sesi&#8221; var sözü gerçekten yerinde ve mantıklı söylenmiş bir söz. <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Geçenlerde üniversitede grup çalışması yaptıgım samimi arkadaşlar ile bir projeye başlama kararı aldık ve ortak bir çalışma ortamı oluşturmam gerekiyordu. Ortak çalışma ortamı çok şekilde yaratılabilir aslında;</p>
<ul>
<li>Subversion</li>
<li>CVS</li>
<li>SourceSafe</li>
<li>Team Foundation Server</li>
<li>Birkaç duyulmamış sistem daha</li>
</ul>
<p>Bu sistemler arasında en mantıklı ve uygulanabilirliği açısından rahat olan sistemin subversion olduğunu düşünüyorum. Linux altında çalışmışlığınız var ise bir Subversion (SVN) server kurmak yanlızca 30 saniyenizi alacaktır. Subversion sistemini windows işletim sistemilerinde de kurabiliyoruz ancak tabiki biz linuxumuza kurup rahat ve hızlı çalışmanın tadına varacağız <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-160"></span></p>
<p>Ben extra bir server bulamadığımdan dolayı kendi bilgisayarıma Vmware kurup onun üzerindeki sanal makine yardımıyla subversion yayımı yapmaya başladım. Sizinde benim gibi bu aralar imkanlarınız biraz kısıtlı ise vmware tek çözüm gibi görünüyor. Kuruluma geçmeden önce ubuntu distromuzu bilgisayarımıza kuralım bu kısım tamamiyle size ait. (Vmware kullanacaksanız ubuntu server edition tavsiyemdir.)</p>
<p>Şimdi sisteminize yeni bir ubuntu kurulumu var ve üzerinde apache2 sunucusu sorunsuz olarak çalışıyor kabul edelim.  Bu aşamadan sonra yapmamız gereken sadece apache2 server a gerekli eklentileri yapıp subversion serveri kullanılabilir hale getirmek.</p>
<p>Subversion server için subversion ve libapache2-svn paketlerini kurmamız gerekli, bunu için</p>
<pre class="brush: php">sudo apt-get install subversion libapache2-svn</pre>
<p>komutunu kullanarak bu paketleri serverımıza kuruyoruz. Artık SVN modüllerini apache2 serverımızda port 80 ile kullanılabilir hale getirdik. Paketleri yüklediğimizde modüller otomatik olarak aktif hale gelmiş olması ancak biz yinede bi kontrol edelim. Bunun için</p>
<pre class="brush: php">sudo a2enmod dav_svn</pre>
<p>komutunu kullanıyoruz ve kullanım sonrasında bize &#8220;already enabled&#8221; gibi bir uyarı gelmesi gerekiyor şu an tam olarak hatırlamıyorum. Şimdide apache2 de bir kaç ayarlama yapmamız gerekiyor.</p>
<pre class="brush: php">sudo nano /etc/apache2/mods-enabled/dav_svn.conf</pre>
<p>açılan dosyarı konsolda şu şekilde değiştirmemiz gerekiyor. (Genelde satır önlerindeki # işaretini kaldırarak kolaylıkla yapabilirsiniz)</p>
<pre class="brush: php">
&amp;lt; Location /svn &amp;gt;
DAV svn
SVNPath /home/svn

AuthType Basic
AuthName &quot;Subversion Repository - veya repository adı&quot;
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
&amp;lt; / Location &amp;gt;
</pre>
<p>buradaki /home/svn dizinini kendi repository dizininize göre değiştirebilirsiniz. Aynı kalmasında bir sakınca yok aslında. dizinimizin /home/svn olduğunu varsayarak devam ediyorum.</p>
<pre class="brush: php">sudo mkdir /home/svn
sudo svnadmin create /home/svn</pre>
<p>şimdide apache2 yi bu repository için owner yapmamız gerekiyor.</p>
<pre class="brush: php">sudo chown -R www-data /home/svn</pre>
<p>repository&#8217; e erişimimizi biraz güvenli hale getirebilmek için bir şifre belirleyelim.</p>
<pre class="brush: php">sudo htpasswd -cm /etc/apache2/dav_svn.passwd kullanı_adınız</pre>
<p>daha sonra sistem sizden şifrenizi belirlemenizi isteyecektir. Bu aşamadan sonra yapmamız gereken tek şey apache serverimizi yeniden başlatmak.</p>
<pre class="brush: php">sudo /etc/init.d/apache2 restart</pre>
<p>bu aşamaya kadar kazasız belasız geldiyseniz artık sizin <span style="text-decoration: underline;"><strong>http://sun.ucu.nuz/svn</strong></span> altında bir subversion serverınız var. Tebrikler <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>İyi Çalışmalar&#8230;</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D160&count=vertical&related=&text=Subversion%20%28SVN%29%20Server%20Nas%C4%B1l%20Kurulur%20%28Turkish%29' class='twitter-share-button' data-text='Subversion (SVN) Server Nasıl Kurulur (Turkish)' data-url='http://samet.kilictas.com/?p=160' data-counturl='http://samet.kilictas.com/subversion-svn-server-nasil-kurulur/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/subversion-svn-server-nasil-kurulur/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>.htaccess problem at Apache2 (Ubuntu)</title>
		<link>http://samet.kilictas.com/htaccess-problem-at-apache2-ubuntu/</link>
		<comments>http://samet.kilictas.com/htaccess-problem-at-apache2-ubuntu/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 00:07:02 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apache2]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=63</guid>
		<description><![CDATA[Hi, Everyone, Today i have faced with a problem which made me sick of apache2. Since i&#8217;ve done with this stupid problem it will be my pleasure to writing solution to my blog page   Ok!, If you are running apache2 first you should know about that you got the configuration file at ; sudo nano [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, Everyone,</p>
<p>Today i have faced with a problem which made me sick of apache2. Since i&#8217;ve done with this stupid problem it will be my pleasure to writing solution to my blog page   <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ok!, If you are running apache2 first you should know about that you got the configuration file at ;</p>
<blockquote><p>sudo nano /etc/apache2/apache2.conf -&gt; just check out this file to see what it contains exaclty</p></blockquote>
<p>and you can see error log&#8217;s at ;</p>
<blockquote><p>sudo nano /var/log/apache2/error.log  -&gt; which helps a lot</p></blockquote>
<p>So, to enable .htaccess files on your server first you have to edit ;</p>
<blockquote><p>sudo nano /etc/apache2/sites-available/default</p></blockquote>
<p>when you open this file you have to see some lines like;</p>
<blockquote><p>DocumentRoot <span style="color: #ff9900;">/var/www/</span><br />
&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride All<br />
&lt;/Directory&gt;<br />
&lt;Directory /var/www/&gt;<br />
Options Indexes FollowSymLinks MultiViews<br />
<span style="color: #ff9900;">AllowOverride None</span><br />
Order allow,deny<br />
allow from all<br />
&lt;/Directory&gt;</p></blockquote>
<p>you have to be sure the Document root is correct. Then you need to change the &#8220;<span style="color: #ff9900;">AllowOverride None</span>&#8221; to &#8220;<span style="color: #ff9900;">AllowOverride All</span>&#8221; then we are done with this part.</p>
<p><span id="more-63"></span></p>
<p>And now as step2 to enable .htaccess file your apache2 you should enable rewrite.load mod. If you take a look at /etc/apache2 directory you are going to see that there are some folders like &#8220;mods-available&#8221; and &#8220;mods-enabled&#8221;. mods-available folder contains some mods for apache2 which you may use. mods-enable folder only contains the mods which are enable <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
This is the tricky point, if you don&#8217;t copy the rewrite.load file from mods-available to mods-enable, your apache2 isn&#8217;t going to load rewrite mod.  Even you are done with /etc/apache2/sites-available/default file since the mod is didnt load so you will get &#8220;<span style="color: #ff0000;">500 Internal Server Error</span>&#8220;.</p>
<p>Samet</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D63&count=vertical&related=&text=.htaccess%20problem%20at%20Apache2%20%28Ubuntu%29' class='twitter-share-button' data-text='.htaccess problem at Apache2 (Ubuntu)' data-url='http://samet.kilictas.com/?p=63' data-counturl='http://samet.kilictas.com/htaccess-problem-at-apache2-ubuntu/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/htaccess-problem-at-apache2-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDFSB 3D File Browser</title>
		<link>http://samet.kilictas.com/tdfsb-3d-file-browser/</link>
		<comments>http://samet.kilictas.com/tdfsb-3d-file-browser/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 16:30:36 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[MPEG]]></category>
		<category><![CDATA[Samet]]></category>
		<category><![CDATA[TDFSB]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=28</guid>
		<description><![CDATA[Here is a new nice project i&#8217;ve just heard about TDFSB&#8230;. Which reads directory information and displays it as a 3D world. cd’ing into another directory is possible by simply walking into the assigned sphere. It also reads images and text files and displays their contents. It plays MP3 files and MPEG-1 videos as 3D [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a new nice project i&#8217;ve just heard about TDFSB&#8230;. Which reads directory information and displays it as a 3D world. cd’ing into another directory is possible by simply walking into the assigned sphere. It also reads images and text files and displays their contents. It plays MP3 files and MPEG-1 videos as 3D objects.</p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot1.png"><img class="alignnone size-medium wp-image-29" title="screenshot1" src="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot1-300x223.png" alt="" width="300" height="223" /></a></p>
<p>Shortly, it is a 3D world inside your pc. This is really nice and interesting tool for your boring pc. Just imagine.. you can fly between your files.. your documents.. even your pictures..</p>
<p>This project came to me with really nice ideas. I am glad to talk about TDFSB because it has been coded 6 years ago. A developer [Leander Seige - i hope this is true] coded this tools with simple code in first time. But now just take a look at it. He and some other developers are came with new ideas.</p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot2.png"><img class="alignnone size-medium wp-image-30" title="screenshot2" src="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot2-300x216.png" alt="" width="300" height="216" /></a></p>
<p>I have run this tool with my system which is Ubuntu Hardy 8.04 and of course to run TDFSB nicely, you gonna need a hardware accelerated 3d graphic card. While walking arround your documents you can also listen mp3s or you can watch some of your video files.</p>
<p><span id="more-28"></span></p>
<p>As i mentioned in the beginning part of my post  this tools gave me a couple of nice ideas. Since companies are producing more efficient graphic cards and CPU&#8217;s .. i am just asking that why there is no 3D browser for real..</p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot3.png"><img class="alignnone size-medium wp-image-33" title="screenshot3" src="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot3-300x223.png" alt="" width="300" height="223" /></a></p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot4.png"><img class="alignnone size-medium wp-image-34" title="screenshot4" src="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot4-300x220.png" alt="" width="300" height="220" /></a></p>
<p>Of course TDFSB comes with some bad sides such as;</p>
<ol>
<li>Not very practical</li>
<li>Bad graphics</li>
<li>Few video file type support</li>
<li>Big work load on CPU</li>
<li>Over 1000 files, really long warping time</li>
<li>Bad accesibility</li>
<li>some more&#8230;..</li>
</ol>
<p>There are many good sides as well. <img src='http://samet.kilictas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot5.png"><img class="alignnone size-medium wp-image-35" title="screenshot5" src="http://samet.kilictas.com/wp-content/uploads/2008/06/screenshot5-300x219.png" alt="" width="300" height="219" /></a></p>
<p><span style="text-decoration: underline;"><strong>How to install</strong></span></p>
<p>It is really simple.</p>
<blockquote><p><strong><span style="color: #888888;">sudo apt-get install tdfsb</span></strong></p></blockquote>
<p>Just run this command on terminal.</p>
<p>There you go&#8230;</p>
<p>Now you are able to run this tool by using the termianal. Type tdfsb in terminal and enjoy..</p>
<p>Here is a print out of the default keyboard settings.<br />
You may change these by editing ~/.tdfsb</p>
<p>=======================================</p>
<p><span style="color: #888888;">Esc           quit                  F1/F2    speed +/-<br />
Mouse move    look          F3/F4      rot +/-<br />
UP         forward               F5/F6  ball detail<br />
DOWN      backward          HOME     start pos<br />
L/R     step aside             LMB  select object<br />
END    ground zero          +RMB|CTRL appr.obj<br />
F7/F8  max fps  +/-          +ENTER ply mpg/mp3<br />
&#8220;t&#8221;      filenames               &#8220;g&#8221;   ground cross<br />
&#8220;c&#8221;      crosshair                 &#8220;d&#8221;        display<br />
&#8220;.&#8221;      dot files                    &#8220;p&#8221;      print FPS<br />
&#8220;r&#8221; rel./get mouse              &#8220;f&#8221;     fullscreen<br />
&#8220;l&#8221;     reload dir                  &#8220;b&#8221;   image bricks<br />
&#8220;u&#8221;           cd..                   &#8220;a&#8221;      alphasort<br />
&#8220;m&#8221;        shading               &#8221; &#8220;         flying<br />
&#8220;h&#8221;      show help               &#8220;i&#8221;  print GL info<br />
&#8220;0&#8243;      jump home            &#8220;o&#8221;    classic nav<br />
&#8220;s&#8221;    save config               &#8220;#&#8221;   fps throttle</span></p>
<p><span style="color: #888888;">&#8220;1|3|q|e&#8221;            Up|Down|Left|Right<br />
&#8220;2|w&#8221;                  Forward|Backward<br />
PgUp/Down or MMB+Mouse move up/downward</span><br />
=======================================</p>
<p>it is possible to execute a custom command from within tdfsb. configure<br />
your command in the config file! the command can be called by pressing<br />
the tabulator key. put a &#8220;%s&#8221; in the command line, this will be replaced<br />
by the current directory or selected file.<br />
for instance if you set the command to<br />
xmms &#8220;%s&#8221; &amp;<br />
and press tab from a directory, xmms will be started with the directory<br />
given as argument.<br />
if you select an audio file and press the tab key xmms will play the file.<br />
the default command is<br />
cd &#8220;%s&#8221;; xterm&amp;<br />
it will open a xterm in the current directory.<br />
this command is always present by pressing shift+tab!<br />
so you have two commands:<br />
- one by configuring your custom command for the tab key<br />
- one by pressing shift+tab, it will execute the built in xterm call<br />
but dont forget the quotation marks!<br />
you are free to not add &#8220;%s&#8221; to your custom command if you just<br />
want to launch any program. but if you do so, you can customize<br />
tdfsb for your needs, choose a certain kind of files and than launch<br />
emacs for editing text files, mplayer for playing avis or whatever&#8230;</p>
<p>Have Fun&#8230;</p>
<p><a href="http://www.determinate.net/webdata/seg/tdfsb.html">Project Web Site</a></p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D28&count=vertical&related=&text=TDFSB%203D%20File%20Browser' class='twitter-share-button' data-text='TDFSB 3D File Browser' data-url='http://samet.kilictas.com/?p=28' data-counturl='http://samet.kilictas.com/tdfsb-3d-file-browser/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/tdfsb-3d-file-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Convert NRG files to ISO format?</title>
		<link>http://samet.kilictas.com/how-to-convert-nrg-files-to-iso-format/</link>
		<comments>http://samet.kilictas.com/how-to-convert-nrg-files-to-iso-format/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 07:04:46 +0000</pubDate>
		<dc:creator>Samet Kilictas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cdburn]]></category>
		<category><![CDATA[convertnrg]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[nero]]></category>
		<category><![CDATA[nrg]]></category>
		<category><![CDATA[nrg2iso]]></category>
		<category><![CDATA[nrginubuntu]]></category>

		<guid isPermaLink="false">http://samet.kilictas.com/?p=25</guid>
		<description><![CDATA[Assume that  you have some &#8221; .nrg &#8221; files with you which is already burned in windows OS and you want to burn this file in linux OS. Here the OS which i tested is Ubuntu. You need to install a little application. sudo apt-get install nrg2iso then to convert files cin@nexus:~$ nrg2iso here_nrg_name.nrg here_new_iso_name.iso [...]]]></description>
			<content:encoded><![CDATA[<p>Assume that  you have some &#8221; .nrg &#8221; files with you which is already burned in windows OS and you want to burn this file in linux OS. Here the OS which i tested is Ubuntu.</p>
<p>You need to install a little application.</p>
<blockquote><p>sudo apt-get install nrg2iso</p></blockquote>
<p>then to convert files</p>
<blockquote><p><strong>cin@nexus:~$</strong> <em>nrg2iso</em> <span style="color: #cc99ff;">here_nrg_name.nrg</span> <span style="color: #999999;">here_new_iso_name.iso</span></p></blockquote>
<p>that&#8217;s all you need to do..</p>
<p>now you can burn iso file with any CD/DVD/Blu-RAy Writer..</p>
<p>How a good one..</p>
<a href='http://twitter.com/share?url=http%3A%2F%2Fsamet.kilictas.com%2F%3Fp%3D25&count=vertical&related=&text=How%20to%20Convert%20NRG%20files%20to%20ISO%20format%3F' class='twitter-share-button' data-text='How to Convert NRG files to ISO format?' data-url='http://samet.kilictas.com/?p=25' data-counturl='http://samet.kilictas.com/how-to-convert-nrg-files-to-iso-format/' data-count='vertical' data-via='sametkilictas'>Tweet</a>]]></content:encoded>
			<wfw:commentRss>http://samet.kilictas.com/how-to-convert-nrg-files-to-iso-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

