<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-795672894627467859</id><updated>2024-08-31T05:07:21.174-07:00</updated><title type='text'>Open-Source4every1</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default?start-index=26&amp;max-results=25'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>30</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-4878455521452078260</id><published>2014-12-23T08:10:00.001-08:00</published><updated>2014-12-23T08:10:15.152-08:00</updated><title type='text'>Shell Script: Shell script that will allow live monitoring of Ap...</title><content type='html'>&lt;a href=&quot;http://borahshell.blogspot.com/2014/12/shell-script-that-will-allow-live.html?spref=bl&quot;&gt;Shell Script: Shell script that will allow live monitoring of Ap...&lt;/a&gt;: This the script that will enable live monitoring of Apache Server Ex. Who is currently logged on to it.   It will be look like the followin...</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/4878455521452078260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/12/shell-script-shell-script-that-will.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/4878455521452078260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/4878455521452078260'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/12/shell-script-shell-script-that-will.html' title='Shell Script: Shell script that will allow live monitoring of Ap...'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-2449150809909645280</id><published>2014-07-12T09:14:00.002-07:00</published><updated>2014-07-12T09:14:53.967-07:00</updated><title type='text'>script to take input from user and to do backup as they wish</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Here is the script to take input from user and to do backup as they wish.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#!/bin/bash&lt;br /&gt;dialog --inputbox &quot; Please Enter the location where back will be stored&quot; 9 50 2&amp;gt;/tmp/i1&lt;br /&gt;a0=`cat /tmp/i1`&lt;br /&gt;test ! -d $a0 &amp;amp;&amp;amp; dialog --msgbox &quot; $a0 dont exit .. we will make for u &quot; 9 50 &amp;amp;&amp;amp; mkdir $a0&amp;nbsp;&amp;nbsp; &amp;amp;&amp;amp; dialog --msgbox&amp;nbsp; &quot;ok $a0 made &quot; 9 50 || dialog --msgbox &quot; Destination $a0&amp;nbsp; exist/or its cant be made&amp;nbsp; ... we will go forward &quot; 9 50 &lt;br /&gt;dialog --inputbox &quot; Please Enter the location to back-up&quot; 9 50 2&amp;gt;/tmp/i2&lt;br /&gt;a1=`cat /tmp/i2` &amp;amp;&amp;amp; dialog --msgbox &quot;Searching for&amp;nbsp; backed-up location $b &quot; &lt;br /&gt;test ! -d $b1&amp;nbsp; &amp;amp;&amp;amp; dialog --msgbox &quot;$a1 does not exist ...back-up will not be done &quot; 9 50 || dialog --msgbox &quot; OK $a1 found ..&amp;nbsp; we will go for back up &quot; 9 50&lt;br /&gt;tar cvzf $a0/backup.tar.gz $a1 &amp;amp;&amp;amp; dialog --msgbox &quot; congrats we have done back-up for u &quot; 9 50 || dialog --msgbox &quot;Sorry error occured&quot; 9 50&lt;br /&gt;rm -f /tmp/i1&lt;br /&gt;rm -r /tmp/i2&lt;br /&gt;
&lt;br /&gt;
just copy the above file to your Desktop to a file named &quot;a&quot;&lt;br /&gt;
&lt;br /&gt;
and do the following steps&lt;br /&gt;
&lt;br /&gt;
1. open your terminal and go for Desktop and type &quot;sudo chmod +x a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. then type ./a&lt;br /&gt;
&lt;br /&gt;
will be seen as follow&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3fuyZO7DIuYx-gEsLbiPAG6txeSvC4Y4N4Uzrikv_30UI2cMcstjnmrAeqBFYJKL1D1e8e7-Omt9mpE9soWAo_EknTsiwkHBZSTpbWjneI4mq7hlFYpUT2uYL0aQaFcUOQxBqlsJAZNA/s1600/Screenshot+from+2014-07-12+21:30:23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3fuyZO7DIuYx-gEsLbiPAG6txeSvC4Y4N4Uzrikv_30UI2cMcstjnmrAeqBFYJKL1D1e8e7-Omt9mpE9soWAo_EknTsiwkHBZSTpbWjneI4mq7hlFYpUT2uYL0aQaFcUOQxBqlsJAZNA/s1600/Screenshot+from+2014-07-12+21:30:23.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-0xEzNOsMI8CYpz0bJemi8pbdIuDrAE0zIjuRRDfKOZzqXsuuCP3nwiaMDve-doqG_YRPLumbt1e826UFMSk8FKfyebNXmWzGT5qwy3cIjqjoqqFWIKUYItATqgsXBx6S8DOb-_s23Ds/s1600/Screenshot+from+2014-07-12+21:31:37.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-0xEzNOsMI8CYpz0bJemi8pbdIuDrAE0zIjuRRDfKOZzqXsuuCP3nwiaMDve-doqG_YRPLumbt1e826UFMSk8FKfyebNXmWzGT5qwy3cIjqjoqqFWIKUYItATqgsXBx6S8DOb-_s23Ds/s1600/Screenshot+from+2014-07-12+21:31:37.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdZDAKL-bqAO4ueVp-4uRbCmGvL0i2k_26iITystq-PhbkIEyjQ_5IlAow-LR98r3jxDckt6qaPnS4_inF17zdJWlP5v0-bJsHcs72FYzaJ6uzZ5um_vq751TP9EdUpj8bLH1Vk3nv9r8/s1600/Screenshot+from+2014-07-09+22:11:56.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdZDAKL-bqAO4ueVp-4uRbCmGvL0i2k_26iITystq-PhbkIEyjQ_5IlAow-LR98r3jxDckt6qaPnS4_inF17zdJWlP5v0-bJsHcs72FYzaJ6uzZ5um_vq751TP9EdUpj8bLH1Vk3nv9r8/s1600/Screenshot+from+2014-07-09+22:11:56.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/2449150809909645280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/07/script-to-take-input-from-user-and-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2449150809909645280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2449150809909645280'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/07/script-to-take-input-from-user-and-to.html' title='script to take input from user and to do backup as they wish'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3fuyZO7DIuYx-gEsLbiPAG6txeSvC4Y4N4Uzrikv_30UI2cMcstjnmrAeqBFYJKL1D1e8e7-Omt9mpE9soWAo_EknTsiwkHBZSTpbWjneI4mq7hlFYpUT2uYL0aQaFcUOQxBqlsJAZNA/s72-c/Screenshot+from+2014-07-12+21:30:23.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-1855319283440496667</id><published>2014-06-15T07:18:00.000-07:00</published><updated>2014-06-15T07:18:04.320-07:00</updated><title type='text'>script to encrypt any file with password </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Some times we need to encrypt&amp;nbsp; any file before sending to others , through mail or by any mean.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script to encrypt any file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
echo &quot;Enter the file location and file name to encrypt &quot;&lt;br /&gt;
&lt;br /&gt;
read a&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;gpg -c $a&lt;br /&gt;
&lt;br /&gt;
echo &quot;OK its done , now the original file will be deleted &quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
rm -rf $a &lt;br /&gt;
&lt;br /&gt;
and when the receiver will receive the file he will decrypt the same file the following way&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
gpg -d 2.gpg &amp;gt; 3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
before encrypting the file name 2&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJZlvl2nUIy0n3xsPpsuscvxfJDLCvFCvtdFw_NHsym6sDyylTusblMFZfXVM_RwfWYCb1vVXNlUHoFjHHNGOZlM_B5zG88W7YCkYnvDRC5T6tY3iS0F36fjyF6k0QjqujdI9em7THWO4/s1600/Screenshot+from+2014-06-15+19:40:24.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJZlvl2nUIy0n3xsPpsuscvxfJDLCvFCvtdFw_NHsym6sDyylTusblMFZfXVM_RwfWYCb1vVXNlUHoFjHHNGOZlM_B5zG88W7YCkYnvDRC5T6tY3iS0F36fjyF6k0QjqujdI9em7THWO4/s1600/Screenshot+from+2014-06-15+19:40:24.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
after encrypting the file name 2&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd3MzlGKETyuXUHRzEReGvHzl5CRGWQ4Edoq8i5syjX5wC9Lm0HTuf2anq8ActKaZWkBSAbuUgTjj8FuzTopxHlJred3eVpA_8BaDrxi7iLV7rFEH0bQT7tNziw7cr-9YQtbxhbO6AuGk/s1600/Screenshot+from+2014-06-15+19:40:52.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd3MzlGKETyuXUHRzEReGvHzl5CRGWQ4Edoq8i5syjX5wC9Lm0HTuf2anq8ActKaZWkBSAbuUgTjj8FuzTopxHlJred3eVpA_8BaDrxi7iLV7rFEH0bQT7tNziw7cr-9YQtbxhbO6AuGk/s1600/Screenshot+from+2014-06-15+19:40:52.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
after recovering the file and named it as 3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnrtHJWaK3S1Kpf5rGGH9gR-2O287cfk8YAsdckaHuqkyH72z9LmkVMTaI3wYoaGSAY0qeAPiLsk8-G6bVt1Nvb__sBAsEIFsNLl1ZEQeJ6r3hXblHqdn9-2-dpmILgeTnYXcIlKmPOuY/s1600/Screenshot+from+2014-06-15+19:43:13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnrtHJWaK3S1Kpf5rGGH9gR-2O287cfk8YAsdckaHuqkyH72z9LmkVMTaI3wYoaGSAY0qeAPiLsk8-G6bVt1Nvb__sBAsEIFsNLl1ZEQeJ6r3hXblHqdn9-2-dpmILgeTnYXcIlKmPOuY/s1600/Screenshot+from+2014-06-15+19:43:13.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/1855319283440496667/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/06/script-to-encrypt-any-file-with-password.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1855319283440496667'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1855319283440496667'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/06/script-to-encrypt-any-file-with-password.html' title='script to encrypt any file with password '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJZlvl2nUIy0n3xsPpsuscvxfJDLCvFCvtdFw_NHsym6sDyylTusblMFZfXVM_RwfWYCb1vVXNlUHoFjHHNGOZlM_B5zG88W7YCkYnvDRC5T6tY3iS0F36fjyF6k0QjqujdI9em7THWO4/s72-c/Screenshot+from+2014-06-15+19:40:24.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-7525505282580560919</id><published>2014-05-23T12:18:00.001-07:00</published><updated>2014-05-23T12:18:51.927-07:00</updated><title type='text'>Script to convert any file format to mp3 in Linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Here is my script that will convert any file format to mp3&lt;br /&gt;
&lt;br /&gt;
like&lt;br /&gt;
&lt;br /&gt;
mp4 to mp3&lt;br /&gt;
&lt;br /&gt;
avi to mp3&lt;br /&gt;
&lt;br /&gt;
3gp to mp3&lt;br /&gt;
&lt;br /&gt;
webm to mp3&lt;br /&gt;
&lt;br /&gt;
any thing to mp3&lt;br /&gt;
&lt;br /&gt;
open your terminal type :&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;now type : gedit convert&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;and past the following script &amp;nbsp;&lt;/i&gt; :&lt;br /&gt;
&lt;br /&gt;
#!/bin/bash&lt;br /&gt;# This script will convert files to mp3 format&lt;br /&gt;#Writer Anuj Borah (anujborah3@gmail.com)&lt;br /&gt;echo &quot;please enter the directory of the targeted file &quot;&lt;br /&gt;read d&lt;br /&gt;cd $d&lt;br /&gt;echo &quot;now enter the name of file you want to convert to mp3 &quot;&lt;br /&gt;read d1&lt;br /&gt;ffmpeg -i $d1 anuj.mp3&lt;br /&gt;echo &quot;OK we are done!&amp;nbsp; your file is converted to $d/anuj.mp3 &quot;&lt;br /&gt;exit 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
type : sudo chmod +x convert&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
then type: &amp;nbsp; ./convert &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
see simple output :&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7WZTqBzTBHfEqUHhuAy8gJCMh-fN2vpVWmCRODUAylrxKio8amZBolEnUWEco-C14Jzkv2uf4TrLnS5g7PB6pzXBk6UNkghcwMxch6b0_MYVaqNRfBtMwH93YLP1qNSUObpJ-6847LJo/s1600/Screenshot+from+2014-05-24+00:39:19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7WZTqBzTBHfEqUHhuAy8gJCMh-fN2vpVWmCRODUAylrxKio8amZBolEnUWEco-C14Jzkv2uf4TrLnS5g7PB6pzXBk6UNkghcwMxch6b0_MYVaqNRfBtMwH93YLP1qNSUObpJ-6847LJo/s1600/Screenshot+from+2014-05-24+00:39:19.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/7525505282580560919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-convert-any-file-format-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7525505282580560919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7525505282580560919'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-convert-any-file-format-to.html' title='Script to convert any file format to mp3 in Linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7WZTqBzTBHfEqUHhuAy8gJCMh-fN2vpVWmCRODUAylrxKio8amZBolEnUWEco-C14Jzkv2uf4TrLnS5g7PB6pzXBk6UNkghcwMxch6b0_MYVaqNRfBtMwH93YLP1qNSUObpJ-6847LJo/s72-c/Screenshot+from+2014-05-24+00:39:19.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-7969887946358008374</id><published>2014-05-22T04:45:00.000-07:00</published><updated>2014-05-22T04:45:01.075-07:00</updated><title type='text'>How to find out linux system IP Add with a single script </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
This script will find your system&#39;s IP add with the interface you are using currently .&lt;br /&gt;
&lt;br /&gt;
just copy and past the following to&amp;nbsp; Desktop&amp;nbsp; .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;#!/bin/sh&lt;br /&gt;ifconfig&amp;gt;/home/u-man/Desktop/1 &lt;br /&gt;grep &quot;inet addr:&quot; /home/u-man/Desktop/1&amp;gt;/home/u-man/Desktop/2&lt;br /&gt;sed -n &#39;2p&#39; /home/u-man/Desktop/2&lt;br /&gt;exit 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
save it as shell&lt;br /&gt;
&lt;br /&gt;
now open terminal type :&lt;br /&gt;
&lt;br /&gt;
cd /home/user/Desktop &lt;br /&gt;
&lt;br /&gt;
sudo chmod +x shell&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;now ./shell&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
see my output&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEcoYPEy81ckD6cTe45-3T7MXV76vARDeRRFvf8YD4Wv7Dk4uxL4cHe6X97-Nf7Eqxcrny-Sv4wmjys2qwgTxysut0aDhyphenhyphen-Tij2gcqz9XjUFI0QZFDPn6QSshqkoXEh5LmhCZ5UbU7z14/s1600/Screenshot+from+2014-05-22+17:11:14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEcoYPEy81ckD6cTe45-3T7MXV76vARDeRRFvf8YD4Wv7Dk4uxL4cHe6X97-Nf7Eqxcrny-Sv4wmjys2qwgTxysut0aDhyphenhyphen-Tij2gcqz9XjUFI0QZFDPn6QSshqkoXEh5LmhCZ5UbU7z14/s1600/Screenshot+from+2014-05-22+17:11:14.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/7969887946358008374/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-find-out-linux-system-ip-add.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7969887946358008374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7969887946358008374'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-find-out-linux-system-ip-add.html' title='How to find out linux system IP Add with a single script '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEcoYPEy81ckD6cTe45-3T7MXV76vARDeRRFvf8YD4Wv7Dk4uxL4cHe6X97-Nf7Eqxcrny-Sv4wmjys2qwgTxysut0aDhyphenhyphen-Tij2gcqz9XjUFI0QZFDPn6QSshqkoXEh5LmhCZ5UbU7z14/s72-c/Screenshot+from+2014-05-22+17:11:14.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-809004514404308958</id><published>2014-05-21T10:09:00.000-07:00</published><updated>2014-05-21T10:18:31.471-07:00</updated><title type='text'>How to take backup of linux system</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
We have a important directory say /home/user/Picture&amp;nbsp; in my case user=u-man&lt;br /&gt;
&lt;br /&gt;
, everyday new contents are added there , these data s are important we need to take a backup it every day , how ??&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
our target directory =&amp;nbsp; &amp;nbsp; &amp;nbsp; /home/user/Picture&lt;br /&gt;
&lt;br /&gt;
we will make a backup of above directory &lt;br /&gt;
&lt;br /&gt;
open terminal type :&lt;br /&gt;
&lt;br /&gt;
cd Desktop &lt;br /&gt;
&lt;br /&gt;
tar cvzf anuj.tar.gz /home/u-man/Pictures &lt;br /&gt;
&lt;br /&gt;
it will make a anuj.tar.gz file on desktop&lt;br /&gt;
&lt;br /&gt;
now copy and past following script&lt;br /&gt;
&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
gunzip /home/u-man/Desktop/anuj.tar.gz&lt;br /&gt;
tar uvf /home/u-man/Desktop/anuj.tar /home/user/Picture&lt;br /&gt;
gzip /home/u-man/Desktop/anuj.tar.gz&lt;br /&gt;
exit 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
save it ass shell&lt;br /&gt;
&lt;br /&gt;
now type: sudo chmod&amp;nbsp;+x shell&lt;br /&gt;
&lt;br /&gt;
now every day before shutting down your PC you need to do only&amp;nbsp; one thing that is&amp;nbsp; :&amp;nbsp; ./shell&lt;br /&gt;
&lt;br /&gt;
see the screen shoot&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGuRXVId1wKUOJ4CFNu0VHnxnojdnNr7_ULwrW9MP6VqfN9pfllO_ns023g0F2TUODJ3oO49nVe2EyZ6QBHNNHpRKnKjQAAnZTgj0kXI4Y9tOXn8wJZS8mU0kltv3cOFXjIiPBP7eDgI8/s1600/Screenshot+from+2014-05-21+22:13:00.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGuRXVId1wKUOJ4CFNu0VHnxnojdnNr7_ULwrW9MP6VqfN9pfllO_ns023g0F2TUODJ3oO49nVe2EyZ6QBHNNHpRKnKjQAAnZTgj0kXI4Y9tOXn8wJZS8mU0kltv3cOFXjIiPBP7eDgI8/s1600/Screenshot+from+2014-05-21+22:13:00.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-take-backup-of-linux-system.html&quot;&gt;script-to-take-backup-of-linux-system&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/809004514404308958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-take-backup-of-linux-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/809004514404308958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/809004514404308958'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-take-backup-of-linux-system.html' title='How to take backup of linux system'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGuRXVId1wKUOJ4CFNu0VHnxnojdnNr7_ULwrW9MP6VqfN9pfllO_ns023g0F2TUODJ3oO49nVe2EyZ6QBHNNHpRKnKjQAAnZTgj0kXI4Y9tOXn8wJZS8mU0kltv3cOFXjIiPBP7eDgI8/s72-c/Screenshot+from+2014-05-21+22:13:00.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-2135798361748364219</id><published>2014-05-19T01:35:00.001-07:00</published><updated>2014-05-19T01:35:24.026-07:00</updated><title type='text'>How to add two or more than two virtual host in apache web server</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
We have already installed apache web server. By default it will have only one host machine will have only one host.&lt;br /&gt;
&lt;br /&gt;
By
 default the directory for apache web server is /var/www directry you 
can change it by editing &quot;/etc/apache2/sites-available/default&quot; file &amp;nbsp; &amp;nbsp;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
We will see how to make name based and ip based virtual hosting in apache web server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
first you need to install apache web server , open terminal type&lt;br /&gt;
&lt;br /&gt;
&quot;sudo apt-get install apache2&quot;&lt;br /&gt;
&lt;br /&gt;
after installation, open firefox web browser type &quot;127.0.01&quot; or &quot;localhost&quot;&lt;br /&gt;
&lt;br /&gt;
you will see your index page of apache web server.&lt;br /&gt;
&lt;br /&gt;
Now we need another two host called &quot;uman.com&quot; and &quot;anuj.borah.com&quot;&lt;br /&gt;
&lt;br /&gt;
Lets see how i will do it .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The root of document for uman.com will be /home/user/Pictures/uman.com&lt;br /&gt;
&lt;br /&gt;
and root of document for anuj.borah.com will be /home/user/Pictures/anuj.borah.com&lt;br /&gt;
&lt;br /&gt;
here in my case user=u-man&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
open terminal type&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir -p /home/u-man/Pictures/uman.com/ &lt;br /&gt;
&lt;br /&gt;
gedit &amp;nbsp; /home/u-man/Pictures/uman.com/index.html&lt;br /&gt;
&lt;br /&gt;
and past the following&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;head&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Welcome to uman.com!&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Success!&amp;nbsp; The uman.com virtual host is working!&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
save it. &lt;br /&gt;
&lt;br /&gt;
again type&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
sudo mkdir -p /home/u-man/Pictures/anuj.borah.com/&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
sudo gedit&amp;nbsp; /home/u-man/Pictures/anuj.borah.com/index.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;head&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Welcome to anuj.borah.com!&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Success!&amp;nbsp; The anuj.borah.com virtual host is working!&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt; &lt;br /&gt;
&lt;br /&gt;
save it&lt;br /&gt;
&lt;br /&gt;
now &lt;br /&gt;
&lt;br /&gt;
type it&amp;nbsp; cd /etc/apache2/sites/avai*&lt;br /&gt;
&lt;br /&gt;
and then sudo gedit uman.com.conf&lt;br /&gt;
&lt;br /&gt;
just past past the following&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;VirtualHost uman.com&amp;gt;&lt;br /&gt;ServerAdmin webmaster@localhost&lt;br /&gt;ServerAlias www.uman.com&lt;br /&gt;DocumentRoot /home/u-man/Pictures/uman.com/ &lt;br /&gt;#if using awstats&lt;br /&gt;ScriptAlias /awstats/ /usr/lib/cgi-bin/&lt;br /&gt;#we want specific log file for this server&lt;br /&gt;CustomLog /var/log/apache2/example.com-access.log combined&lt;br /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
again type sudo gedit anuj.borah.com.conf&lt;br /&gt;
&lt;br /&gt;
and past the following&lt;br /&gt;
&lt;br /&gt;
&amp;lt;VirtualHost anuj.borah.com&amp;gt;&lt;br /&gt;ServerAdmin webmaster@localhost&lt;br /&gt;ServerAlias www.anuj.borah.com&lt;br /&gt;DocumentRoot /home/u-man/Pictures/anuj.borah.com/ &lt;br /&gt;#if using awstats&lt;br /&gt;ScriptAlias /awstats/ /usr/lib/cgi-bin/&lt;br /&gt;#we want specific log file for this server&lt;br /&gt;CustomLog /var/log/apache2/example.com-access.log combined&lt;br /&gt;&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now type&amp;nbsp; cd ..&lt;br /&gt;
&lt;br /&gt;
cd sites-ena*&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sudo ln /etc/apache2/sites-available/uman.com.conf uman.com.conf &lt;br /&gt;
&lt;br /&gt;
sudo ln /etc/apache2/sites-available/anuj.borah.com.conf anuj.borah.com.conf &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now type sudo gedit /etc/hosts&lt;br /&gt;
&lt;br /&gt;
copy and past the following &lt;br /&gt;
&lt;br /&gt;
127.0.0.1&amp;nbsp;&amp;nbsp;&amp;nbsp; localhost&lt;br /&gt;127.0.0.2&amp;nbsp;&amp;nbsp;&amp;nbsp; uman.com&lt;br /&gt;127.0.0.3&amp;nbsp;&amp;nbsp;&amp;nbsp; anuj.borah.com &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now type sudo service apache2 restart &lt;br /&gt;
&lt;br /&gt;
type uman.com&amp;nbsp; or anuj.borah.com&amp;nbsp; in your browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
bellow is the screen -shoot&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3L-Y-dkM8gE4KMWsVXNdoTSxtweXaO26CH7zro6JYEHVgBs1UlJ0FkPGVy_8WmgXBKqF2TW9QahM1g9J4D8yMmVPiNazp-09KzKHOeWuBet4ABS0_OIOQ9r-nGk8DxQMo7Lm_iBR5rUw/s1600/Screenshot+from+2014-05-19+13:59:34.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3L-Y-dkM8gE4KMWsVXNdoTSxtweXaO26CH7zro6JYEHVgBs1UlJ0FkPGVy_8WmgXBKqF2TW9QahM1g9J4D8yMmVPiNazp-09KzKHOeWuBet4ABS0_OIOQ9r-nGk8DxQMo7Lm_iBR5rUw/s1600/Screenshot+from+2014-05-19+13:59:34.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNVQCTl1x0m7MRvtH1NJE25l_JC8eDo70gwpYg7OwIU0iSWVHCxu0BRoegsFII8KTgdno3MgDWVld7UQ5vLPGUbVeChq5qEiixvqgusk4syvnxu5fUUA4ZUV6Wih4BWvHw5y9Y0SzFDFs/s1600/Screenshot+from+2014-05-19+14:04:24.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNVQCTl1x0m7MRvtH1NJE25l_JC8eDo70gwpYg7OwIU0iSWVHCxu0BRoegsFII8KTgdno3MgDWVld7UQ5vLPGUbVeChq5qEiixvqgusk4syvnxu5fUUA4ZUV6Wih4BWvHw5y9Y0SzFDFs/s1600/Screenshot+from+2014-05-19+14:04:24.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/2135798361748364219/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-add-two-or-more-than-two-virtual.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2135798361748364219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2135798361748364219'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-add-two-or-more-than-two-virtual.html' title='How to add two or more than two virtual host in apache web server'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3L-Y-dkM8gE4KMWsVXNdoTSxtweXaO26CH7zro6JYEHVgBs1UlJ0FkPGVy_8WmgXBKqF2TW9QahM1g9J4D8yMmVPiNazp-09KzKHOeWuBet4ABS0_OIOQ9r-nGk8DxQMo7Lm_iBR5rUw/s72-c/Screenshot+from+2014-05-19+13:59:34.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-3529257866256384729</id><published>2014-05-18T10:04:00.001-07:00</published><updated>2014-05-18T10:04:50.515-07:00</updated><title type='text'>How to save brightness setting in linux </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
In ubuntu series linux you will face a problem , that is every time&amp;nbsp; you reboot your system you will get 100% brightness level . (Level 7)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To avoid this problem you need to edit 2 files&lt;br /&gt;
&lt;br /&gt;
1. /etc/rc.local&lt;br /&gt;
&lt;br /&gt;
2./sys/class/backlight/acpi_video0/brightness&lt;br /&gt;
&lt;br /&gt;
just type the following command on your terminal&lt;br /&gt;
&lt;br /&gt;
cd /etc&lt;br /&gt;
&lt;br /&gt;
cat rc.local&lt;br /&gt;
&lt;br /&gt;
you will get a screen like this&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh -e&lt;br /&gt;#&lt;br /&gt;# rc.local&lt;br /&gt;#&lt;br /&gt;# This script is executed at the end of each multiuser runlevel.&lt;br /&gt;# Make sure that the script will &quot;exit 0&quot; on success or any other&lt;br /&gt;# value on error.&lt;br /&gt;#&lt;br /&gt;# In order to enable or disable this script just change the execution&lt;br /&gt;# bits.&lt;br /&gt;#&lt;br /&gt;# By default this script does nothing.&lt;br /&gt;exit 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now type&lt;br /&gt;
&lt;br /&gt;
sudo gedit rc.local&lt;br /&gt;
&lt;br /&gt;
and past this line above exit 0 command&lt;br /&gt;
&lt;br /&gt;
echo 0 &amp;gt; /sys/class/backlight/acpi_video0/brightness&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
echo 0 will make your brightness level 0 , if you need 2 or 3 you can change it by replacing 2 or 3&amp;nbsp; at like&amp;nbsp; echo 2 or echo 3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
your lastly modified rc.local file will be like this .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBUc_D5u4Gj3iQRmbjEF21reGkG2PSWR6M-4gsFeYch6G0qXcLQCEHBlWQgk1oKVv7RUsNE-oVlXkpLEUcgA8N2LD79pBnFeQHFV-UTQcumBa4dz4d85tx6EqmqsTk8_-lA-dfMMGmFX8/s1600/Screenshot+from+2014-05-18+22:31:27.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBUc_D5u4Gj3iQRmbjEF21reGkG2PSWR6M-4gsFeYch6G0qXcLQCEHBlWQgk1oKVv7RUsNE-oVlXkpLEUcgA8N2LD79pBnFeQHFV-UTQcumBa4dz4d85tx6EqmqsTk8_-lA-dfMMGmFX8/s1600/Screenshot+from+2014-05-18+22:31:27.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/3529257866256384729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-save-brightness-setting-in-linux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/3529257866256384729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/3529257866256384729'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-save-brightness-setting-in-linux.html' title='How to save brightness setting in linux '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBUc_D5u4Gj3iQRmbjEF21reGkG2PSWR6M-4gsFeYch6G0qXcLQCEHBlWQgk1oKVv7RUsNE-oVlXkpLEUcgA8N2LD79pBnFeQHFV-UTQcumBa4dz4d85tx6EqmqsTk8_-lA-dfMMGmFX8/s72-c/Screenshot+from+2014-05-18+22:31:27.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-1080500262162433932</id><published>2014-05-17T10:25:00.002-07:00</published><updated>2014-05-17T10:30:35.964-07:00</updated><title type='text'>How to stop  a program to start at start up in linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
This will work for all Ubuntu series &lt;br /&gt;
&lt;br /&gt;
press windows key type &quot;startup&quot;&amp;nbsp; click &quot;Startup Application&quot;&lt;br /&gt;
&lt;br /&gt;
you will get a picture like bellow , you cant add or remove any program&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZEMPpDq_mQDH0ADZatznL9TNbGTwcCCQkwMLQz2KM-1BLSsgaI2HBxfusr1LVTzqIcZ47zO7yyIDvKcZuqmNfX4usoJ33iFic24i2CppWprexyGPXA5JEcA8ibJW3L3fzAK81zqJ9DoQ/s1600/Screenshot+from+2014-05-17+22:40:21.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZEMPpDq_mQDH0ADZatznL9TNbGTwcCCQkwMLQz2KM-1BLSsgaI2HBxfusr1LVTzqIcZ47zO7yyIDvKcZuqmNfX4usoJ33iFic24i2CppWprexyGPXA5JEcA8ibJW3L3fzAK81zqJ9DoQ/s1600/Screenshot+from+2014-05-17+22:40:21.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
to get program at the screen above you need to do some edit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
open terminal&lt;br /&gt;
&lt;br /&gt;
type &quot; cd /etc/xdg/autostart&quot;&lt;br /&gt;
&lt;br /&gt;
&quot;ls -l&quot;&lt;br /&gt;
&lt;br /&gt;
to stop&amp;nbsp; device start at&amp;nbsp; start up edit all&amp;nbsp; &quot;.desktop&quot; files &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
for example:&lt;br /&gt;
&lt;br /&gt;
type &quot;sudo gedit bluetooth-applet.desktop&quot;&lt;br /&gt;
&lt;br /&gt;
press &quot;cont + F &quot; past &quot;NoDisplay=true&quot;&lt;br /&gt;
&lt;br /&gt;
uncomment this line by putting&amp;nbsp;&amp;nbsp; a # command before it&lt;br /&gt;
&lt;br /&gt;
now again &lt;br /&gt;
&lt;br /&gt;
press windows key type &quot;startup&quot;&amp;nbsp; click &quot;Startup Application&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
see the&amp;nbsp; deference&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
do for all the program you want to stop start at start up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
dats all. &lt;br /&gt;
&lt;br /&gt;
see bellow pic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIpuXthkDeFK1ZeX277gRq11q3SfjSjke8GCDh09-fhqUpPDWuz_S9GnpQArGEtrMa-m-j1dWmMWiSzMjZa5DCpD7XAW4bOVZsofK2_gmB72RVgl8ZomxOhqLwPTHpjjO7FunVEIo6bdc/s1600/Screenshot+from+2014-05-17+22:53:56.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIpuXthkDeFK1ZeX277gRq11q3SfjSjke8GCDh09-fhqUpPDWuz_S9GnpQArGEtrMa-m-j1dWmMWiSzMjZa5DCpD7XAW4bOVZsofK2_gmB72RVgl8ZomxOhqLwPTHpjjO7FunVEIo6bdc/s1600/Screenshot+from+2014-05-17+22:53:56.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-stop-program-to-start-at-start.html&quot;&gt;stop program start automatically in linux&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-stop-program-to-start-at-start.html&quot;&gt;remove programs from startup in ubuntu&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/1080500262162433932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-stop-program-to-start-at-start.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1080500262162433932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1080500262162433932'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-stop-program-to-start-at-start.html' title='How to stop  a program to start at start up in linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZEMPpDq_mQDH0ADZatznL9TNbGTwcCCQkwMLQz2KM-1BLSsgaI2HBxfusr1LVTzqIcZ47zO7yyIDvKcZuqmNfX4usoJ33iFic24i2CppWprexyGPXA5JEcA8ibJW3L3fzAK81zqJ9DoQ/s72-c/Screenshot+from+2014-05-17+22:40:21.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-687481489324260866</id><published>2014-05-16T20:29:00.000-07:00</published><updated>2014-05-16T20:33:37.065-07:00</updated><title type='text'>script to find and delete all the .exe files in linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
This script will search for all the .exe file in your system and ask whether you need to delete this or not .&lt;br /&gt;
&lt;br /&gt;
As we donot need any .exe file in linux so its better delete&amp;nbsp; all the .exe file .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
echo &quot;Please give the directory where the .exe file present&amp;nbsp; &quot;&lt;br /&gt;
read i&lt;br /&gt;
cd $i &lt;br /&gt;
ls -l *.exe &lt;br /&gt;
find $i&amp;nbsp; -name&amp;nbsp; &quot;*.exe&quot; -exec rm -rvi &#39;{}&#39; \ ;&lt;br /&gt;
echo &quot;All file .exe file in the $i directory is deleted now &quot;&lt;br /&gt;
exit 0&lt;br /&gt;
&lt;br /&gt;
just copy the above script .&lt;br /&gt;
&lt;br /&gt;
go for /home/user/Desktop&lt;br /&gt;
&lt;br /&gt;
gedit exe&lt;br /&gt;
&lt;br /&gt;
just past above script .save it.&lt;br /&gt;
&lt;br /&gt;
now type &quot;sudo chmod&amp;nbsp;+x  exe&quot;&lt;br /&gt;
&lt;br /&gt;
lastly&lt;br /&gt;
&lt;br /&gt;
./exe&lt;br /&gt;
&lt;br /&gt;
and provide the directory where the .exe file is located.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/687481489324260866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-find-and-delete-all-exe-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/687481489324260866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/687481489324260866'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-find-and-delete-all-exe-files.html' title='script to find and delete all the .exe files in linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-3458738536198497121</id><published>2014-05-14T12:31:00.002-07:00</published><updated>2014-05-14T12:47:45.380-07:00</updated><title type='text'>How to add swap partition after installtion of linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Say you have installed linux without a swap partition , now you need a swap partition , how can you do it .&lt;br /&gt;
&lt;br /&gt;
first confirm&amp;nbsp; that you have a swap partition or not&lt;br /&gt;
&lt;br /&gt;
open terminal type &quot; &lt;span style=&quot;background-color: #c27ba0;&quot;&gt;sudo swapon -s &lt;/span&gt;&quot; &lt;br /&gt;
&lt;br /&gt;
if you dont have swap partition it will seen like this&lt;br /&gt;
&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;pre&gt;Filename    Type  Size Used Priority&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
now type &quot;&lt;span style=&quot;background-color: #a64d79;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;sudo fallocate -l 2000m /mnt/swap_borah.swap&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
we are allocation 2gb of space for swaping&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
then type &quot;&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;sudo chmod 600 /mnt/swap_borah.swap&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
we are giving read and right permission to owner&lt;br /&gt;
&lt;br /&gt;
now type &quot;&lt;span style=&quot;background-color: #a64d79;&quot;&gt;sudo swapon /mnt/swap_borah.swap&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
now we need to record in&amp;nbsp; fstab&lt;br /&gt;
&lt;br /&gt;
type &quot;&lt;span style=&quot;background-color: #a64d79;&quot;&gt;sudo gedit /etc/fstab&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just make entry same as follow&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;/mnt/&lt;/span&gt;&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;&lt;span style=&quot;background-color: #a64d79;&quot;&gt;swap_borah.swap&lt;/span&gt; none swap sw 0 0&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
dats all restart yur pc type&lt;br /&gt;
&lt;br /&gt;
&quot;&lt;span style=&quot;background-color: #c27ba0;&quot;&gt;sudo shutdown -r now&lt;/span&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now check &quot;&lt;span style=&quot;background-color: #a64d79;&quot;&gt;sudo swapon -s&amp;nbsp;&lt;/span&gt; &quot;&lt;br /&gt;
&lt;br /&gt;
we will get a pic as bellow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHX5sD_1jyWfwhZzrpTDh0W_BOivLa5GQn8j1bSeE8Gaedj1bQgPSMHCfln6BQL0q6AoIWhyphenhyphenrbAJieX5A4Aw9DT2z2Gq7EXrAwlXh4f41ZAzkm6iWkqQzc07s0kXGampuqhjVHGihfoZI/s1600/Screenshot+from+2014-05-15+00:58:04.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHX5sD_1jyWfwhZzrpTDh0W_BOivLa5GQn8j1bSeE8Gaedj1bQgPSMHCfln6BQL0q6AoIWhyphenhyphenrbAJieX5A4Aw9DT2z2Gq7EXrAwlXh4f41ZAzkm6iWkqQzc07s0kXGampuqhjVHGihfoZI/s1600/Screenshot+from+2014-05-15+00:58:04.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-add-swap-partition-after.html&quot;&gt;swap patition in ubuntu&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-add-swap-partition-after.html&quot;&gt;swap partition in linux after installtion &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-add-swap-partition-after.html&quot;&gt;swap partition for linux&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/3458738536198497121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-add-swap-partition-after.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/3458738536198497121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/3458738536198497121'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-add-swap-partition-after.html' title='How to add swap partition after installtion of linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHX5sD_1jyWfwhZzrpTDh0W_BOivLa5GQn8j1bSeE8Gaedj1bQgPSMHCfln6BQL0q6AoIWhyphenhyphenrbAJieX5A4Aw9DT2z2Gq7EXrAwlXh4f41ZAzkm6iWkqQzc07s0kXGampuqhjVHGihfoZI/s72-c/Screenshot+from+2014-05-15+00:58:04.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-881230528215366370</id><published>2014-05-13T12:51:00.001-07:00</published><updated>2014-05-13T12:55:52.213-07:00</updated><title type='text'>How to format USB , external HD with terminal</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Say we have a usb device and now we need to formate it with terminal&lt;br /&gt;
&lt;br /&gt;
open terminal type &quot;sudo fdisk -l&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCjTVDEYDjSNsBnSkWOcXmPfdkx45p5lKf2x4cBqOZmE1_r_aO_5zsVtlGf-9yKCwvDPZv0v_GBTH01RljHNeAnMbW-fWfEUWmnTB_rP8_AIw7Q1VQS8GixBPSdV59vTqLKyqltHvgjWo/s1600/Screenshot+from+2014-05-14+01:11:34.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCjTVDEYDjSNsBnSkWOcXmPfdkx45p5lKf2x4cBqOZmE1_r_aO_5zsVtlGf-9yKCwvDPZv0v_GBTH01RljHNeAnMbW-fWfEUWmnTB_rP8_AIw7Q1VQS8GixBPSdV59vTqLKyqltHvgjWo/s1600/Screenshot+from+2014-05-14+01:11:34.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
this will show your usb device for me its /dev/sdd1&lt;br /&gt;
&lt;br /&gt;
see whether its mounted or not by &quot;df&quot; command&lt;br /&gt;
&lt;br /&gt;
if mounted unmount it with &quot;sudo umount&amp;nbsp; /dev/sdd1 &quot;&lt;br /&gt;
&lt;br /&gt;
now type &quot;sudo mkfs.vfat -n &#39;anuj1&#39;&amp;nbsp; -I /dev/sdd1&quot;&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
you can use mkfs.bfs,&amp;nbsp;mkfs.ext2, mkfs.ext3, mkfs.ext4, mkfs.minix, mkfs.msdos,&amp;nbsp;mkfs.vfat, mkfs.xfs, mkfs.xiafs etc also instead of mkfs.vfat&lt;br /&gt;
&lt;br /&gt;
anuj1 is name of usb device as i like to see.&lt;br /&gt;
&lt;br /&gt;
dats all&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-format-usb-external-hd-with.html&quot;&gt;how-to-format-usb device in linux&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-format-usb-external-hd-with.html&quot;&gt;how-to-format-usb-external-hd in ubuntu&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/881230528215366370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-format-usb-external-hd-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/881230528215366370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/881230528215366370'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-format-usb-external-hd-with.html' title='How to format USB , external HD with terminal'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCjTVDEYDjSNsBnSkWOcXmPfdkx45p5lKf2x4cBqOZmE1_r_aO_5zsVtlGf-9yKCwvDPZv0v_GBTH01RljHNeAnMbW-fWfEUWmnTB_rP8_AIw7Q1VQS8GixBPSdV59vTqLKyqltHvgjWo/s72-c/Screenshot+from+2014-05-14+01:11:34.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-74899163891233837</id><published>2014-05-13T03:47:00.002-07:00</published><updated>2014-05-13T04:24:19.965-07:00</updated><title type='text'>How to mount usb devices manually in linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
First make&amp;nbsp;&amp;nbsp; a directory in /media&lt;br /&gt;
&lt;br /&gt;
say its &quot;usb&quot;&amp;nbsp; , we will mount our external usb device on that directory.&lt;br /&gt;
&lt;br /&gt;
insert your external usb device&lt;br /&gt;
&lt;br /&gt;
open terminal&lt;br /&gt;
&lt;br /&gt;
type &quot;sudo fdisk -l &quot;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglSW37uYWEdfELQyynHnJunEGfWoWydphyphenhyphenuZ_Ik9oN-lFNE-lnksaW37QEx7ZGWewhkM92jluxP3J5NsZECJMXfR1gLX3cPNRzbSEP86uNLpUs7YfcMbpX9ifBj6dTwp43yARBD6J8IOU/s1600/Screenshot+from+2014-05-13+16:04:14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglSW37uYWEdfELQyynHnJunEGfWoWydphyphenhyphenuZ_Ik9oN-lFNE-lnksaW37QEx7ZGWewhkM92jluxP3J5NsZECJMXfR1gLX3cPNRzbSEP86uNLpUs7YfcMbpX9ifBj6dTwp43yARBD6J8IOU/s1600/Screenshot+from+2014-05-13+16:04:14.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
note down your usb device name in my case its&amp;nbsp; /dev/sdc1&lt;br /&gt;
&lt;br /&gt;
now type &quot;sudo mount /dev/sdc1 /media/usb &quot;&lt;br /&gt;
&lt;br /&gt;
now type &quot;df&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiECTuHFSkInDmQ2RpCzTxBGS5h5H1fPWxQyHTwjMGRNVhUMB4BF_UkT5P7ntvbRd59J-9_gPw5kiJnm5CWVY8HHxIdrmK8c9mRG5f5tpUMoMeB1bTIOfEw7ZD2sWM7zcR2M5hY2ox7zSc/s1600/Screenshot+from+2014-05-13+16:13:23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiECTuHFSkInDmQ2RpCzTxBGS5h5H1fPWxQyHTwjMGRNVhUMB4BF_UkT5P7ntvbRd59J-9_gPw5kiJnm5CWVY8HHxIdrmK8c9mRG5f5tpUMoMeB1bTIOfEw7ZD2sWM7zcR2M5hY2ox7zSc/s1600/Screenshot+from+2014-05-13+16:13:23.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&quot;df&quot; command will confirm your usb device is mounted or not&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
now go for it type &quot;cd /media/usb&quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
dats all .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-mount-usb-devices-manually-in.html&quot; target=&quot;_blank&quot;&gt;How to mount usb devices manually in ubuntu&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-mount-usb-devices-manually-in.html&quot; target=&quot;_blank&quot;&gt;How to mount usb devices menually&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://borahlinux.blogspot.in/2014/05/how-to-mount-usb-devices-manually-in.html&quot; target=&quot;_blank&quot;&gt;how to add  external hard-drive in linux&lt;/a&gt;&amp;nbsp;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/74899163891233837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-mount-usb-devices-manually-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/74899163891233837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/74899163891233837'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-mount-usb-devices-manually-in.html' title='How to mount usb devices manually in linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglSW37uYWEdfELQyynHnJunEGfWoWydphyphenhyphenuZ_Ik9oN-lFNE-lnksaW37QEx7ZGWewhkM92jluxP3J5NsZECJMXfR1gLX3cPNRzbSEP86uNLpUs7YfcMbpX9ifBj6dTwp43yARBD6J8IOU/s72-c/Screenshot+from+2014-05-13+16:04:14.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-8132192926431422950</id><published>2014-05-10T23:44:00.005-07:00</published><updated>2014-05-11T12:11:01.502-07:00</updated><title type='text'>Script To Play Same Music list Everyday</title><content type='html'>

&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFYmV2mEmvqUlfkPTk3p_n7QulmPM2sVqIgiC8IVG4A3-NPab5NWsW-3fxIaW0XHJGH4KPXXDLZ-J08sfW5PSS_G2l96RMbPT3OFJnJRg4UUbBUzSEmHuCAMNmd6JEmnL524vLN6tYLw4/s1600/Screenshot+from+2014-05-11+12:11:55.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFYmV2mEmvqUlfkPTk3p_n7QulmPM2sVqIgiC8IVG4A3-NPab5NWsW-3fxIaW0XHJGH4KPXXDLZ-J08sfW5PSS_G2l96RMbPT3OFJnJRg4UUbBUzSEmHuCAMNmd6JEmnL524vLN6tYLw4/s1600/Screenshot+from+2014-05-11+12:11:55.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lets say you would like to hear the same DJ every day . You have a music list and you would like to play the same music and its located at&lt;br /&gt;
&lt;br /&gt;
&quot;/media/New-Drive/Dj&quot;&lt;br /&gt;
&lt;br /&gt;
now i will write a script that will play same music for you everyday .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.Open Terminal (Cntl+Alt+T)&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
2.Make a folder called &quot;music&quot; at your Desktop , the location of your script will be&amp;nbsp;&amp;nbsp;&amp;nbsp; /home/user/Desktop/music&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for me user=&quot;anuj&quot; &lt;br /&gt;
&lt;br /&gt;
3. type on terminal &quot; cd&amp;nbsp; /home/user/Desktop/music &quot;&lt;br /&gt;
&lt;br /&gt;
4. type &quot;gedit dj&quot;&amp;nbsp; here our script name is &quot;dj&quot;&lt;br /&gt;
&lt;br /&gt;
5. copy and past the following on your dj file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
cd&amp;nbsp; /media/New-Drive/Dj&lt;br /&gt;
gnome-open *.mp3&lt;br /&gt;
exit 0&lt;br /&gt;
&lt;br /&gt;
save your script&lt;br /&gt;
&lt;br /&gt;
6.type chmod +x dj &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.lastly ./dj&lt;br /&gt;
&lt;br /&gt;
8.now type every time&amp;nbsp; you restart the PC just open terminal type&amp;nbsp; cd&amp;nbsp; /home/user/Desktop/music and ./dj dats all .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
enjoy&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://Script To Play Same Music list &quot; target=&quot;_blank&quot;&gt;Script To Play Same Music list &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://Linux shell scripting &quot; target=&quot;_blank&quot;&gt;Linux shell scripting &lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/8132192926431422950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-play-same-music-list-everyday.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8132192926431422950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8132192926431422950'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/script-to-play-same-music-list-everyday.html' title='Script To Play Same Music list Everyday'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFYmV2mEmvqUlfkPTk3p_n7QulmPM2sVqIgiC8IVG4A3-NPab5NWsW-3fxIaW0XHJGH4KPXXDLZ-J08sfW5PSS_G2l96RMbPT3OFJnJRg4UUbBUzSEmHuCAMNmd6JEmnL524vLN6tYLw4/s72-c/Screenshot+from+2014-05-11+12:11:55.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-8677398838367178224</id><published>2014-05-10T10:15:00.002-07:00</published><updated>2014-05-10T10:17:30.739-07:00</updated><title type='text'>How to change background image or color of Ubuntu Terminal</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigh_VFQvHq-15HUBmQjtMNaDIvnU4nLZ5Mk_GMOzBJa38MpVBlJjL8VW85HsJI6DgoJYYwlPImsdE_9YeWXWp_gJ7PhD2gBz_Z5D8T758w7X9rA8l5o_BsmOa4YB9siUzEvAxHGbxeCsQ/s1600/Screenshot+from+2014-05-10+22:02:57.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigh_VFQvHq-15HUBmQjtMNaDIvnU4nLZ5Mk_GMOzBJa38MpVBlJjL8VW85HsJI6DgoJYYwlPImsdE_9YeWXWp_gJ7PhD2gBz_Z5D8T758w7X9rA8l5o_BsmOa4YB9siUzEvAxHGbxeCsQ/s1600/Screenshot+from+2014-05-10+22:02:57.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
You need to open your Terminal (Cont+Alt+T )&lt;br /&gt;
&lt;br /&gt;
go for the (edit &amp;gt;Profile Preferences)&amp;nbsp; now you can do what you want with your terminal.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
just see the following pic&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEgTfTWIAn5lVCtpKDkrSZEhXSeAf5f7mYrFXXeTRf-ySp7jN7oa7KrRJ_R9clx4XVGNsFSzY5GK8r3Fs9_DPbu1w3bE3t29-FYT9znHSqCkSs2xxW81wn0_bciRDGY9I0tpgwGZrL7LA/s1600/Screenshot+from+2014-05-10+21:57:23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEgTfTWIAn5lVCtpKDkrSZEhXSeAf5f7mYrFXXeTRf-ySp7jN7oa7KrRJ_R9clx4XVGNsFSzY5GK8r3Fs9_DPbu1w3bE3t29-FYT9znHSqCkSs2xxW81wn0_bciRDGY9I0tpgwGZrL7LA/s1600/Screenshot+from+2014-05-10+21:57:23.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://How to change background image or color of Ubuntu Terminal&quot; target=&quot;_blank&quot;&gt;How to change background image or color of Ubuntu Terminal&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://How to change background  color of Linux Terminal&quot; target=&quot;_blank&quot;&gt;How to change background  color of Linux Terminal&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://How to change background image  of LinuxTerminal&quot; target=&quot;_blank&quot;&gt;How to change background image  of LinuxTerminal&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/8677398838367178224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-change-background-image-or-color.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8677398838367178224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8677398838367178224'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-change-background-image-or-color.html' title='How to change background image or color of Ubuntu Terminal'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigh_VFQvHq-15HUBmQjtMNaDIvnU4nLZ5Mk_GMOzBJa38MpVBlJjL8VW85HsJI6DgoJYYwlPImsdE_9YeWXWp_gJ7PhD2gBz_Z5D8T758w7X9rA8l5o_BsmOa4YB9siUzEvAxHGbxeCsQ/s72-c/Screenshot+from+2014-05-10+22:02:57.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-6550254111605328795</id><published>2014-05-06T05:48:00.002-07:00</published><updated>2014-05-06T05:48:16.132-07:00</updated><title type='text'>How To Get Linux Terminal on Windows machin </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF2TJZcQ6svIzxWKq_sSIVqJmtlXAjmSslgeoPSWZOz85PO9-tpmL8IYY8mG5wSXJh8W-UmSz9lDpqZ1idVu27wM4xdHNyl4IgSZIoegSEdPY6Ouxx3ddeFjl2WNEIsGy8rmAF1Ferl-Q/s1600/Screenshot+from+2014-05-06+18:07:55.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF2TJZcQ6svIzxWKq_sSIVqJmtlXAjmSslgeoPSWZOz85PO9-tpmL8IYY8mG5wSXJh8W-UmSz9lDpqZ1idVu27wM4xdHNyl4IgSZIoegSEdPY6Ouxx3ddeFjl2WNEIsGy8rmAF1Ferl-Q/s1600/Screenshot+from+2014-05-06+18:07:55.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you want to run Linux / Unix commands on windows machine or if You want to have a Terminal &amp;nbsp; on windows machine you need to install &quot;cygwin&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;You will get it from www.cygwin.com&lt;br /&gt;
&lt;br /&gt;
You need to select the proper version 32 bit or 64 bit version as according to your system.&lt;br /&gt;
&lt;br /&gt;
starting cygwin&lt;br /&gt;start → All Programs → Cygwin → XTerm&lt;br /&gt;opens unix window with command prompt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats all.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/6550254111605328795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-get-linux-terminal-on-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/6550254111605328795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/6550254111605328795'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/05/how-to-get-linux-terminal-on-windows.html' title='How To Get Linux Terminal on Windows machin '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF2TJZcQ6svIzxWKq_sSIVqJmtlXAjmSslgeoPSWZOz85PO9-tpmL8IYY8mG5wSXJh8W-UmSz9lDpqZ1idVu27wM4xdHNyl4IgSZIoegSEdPY6Ouxx3ddeFjl2WNEIsGy8rmAF1Ferl-Q/s72-c/Screenshot+from+2014-05-06+18:07:55.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-2686314650278296386</id><published>2014-04-29T10:24:00.002-07:00</published><updated>2014-04-29T10:33:21.774-07:00</updated><title type='text'>How to open folders or directories  with  a gap in its name like (New Folder or Untitled Folder ) with Terminal</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTLPysaY-qJK6k2xFbLwopiXhDslLJVvTtW7-d92yT6fITgzOa4wfAhjVFuwy2kw4jiQcCSwqA_piqOXQpqnEQU-LBh-6bpcwI_9NgIQ08vtfhFpuNDY04zsHpw5he1ZByMW791qaq6n4/s1600/Screenshot+from+2014-04-29+22:52:14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTLPysaY-qJK6k2xFbLwopiXhDslLJVvTtW7-d92yT6fITgzOa4wfAhjVFuwy2kw4jiQcCSwqA_piqOXQpqnEQU-LBh-6bpcwI_9NgIQ08vtfhFpuNDY04zsHpw5he1ZByMW791qaq6n4/s1600/Screenshot+from+2014-04-29+22:52:14.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Well i have a folder named Untitled Folder on my Desktop ... how can i open it with terminal ??&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
follow the steps&lt;br /&gt;
&lt;br /&gt;
1.you can rename it as Untitled_Folder&lt;br /&gt;
&lt;br /&gt;
2. use gnome-open as i said on my last publish&lt;br /&gt;
&lt;br /&gt;
use gnome-open&amp;nbsp; *Folder&lt;br /&gt;
&lt;br /&gt;
and lastly most important&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
3. cd&amp;nbsp; *Folder&lt;br /&gt;
&lt;br /&gt;
see above pic for details. &lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/2686314650278296386/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-open-folders-or-directories-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2686314650278296386'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2686314650278296386'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-open-folders-or-directories-with.html' title='How to open folders or directories  with  a gap in its name like (New Folder or Untitled Folder ) with Terminal'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTLPysaY-qJK6k2xFbLwopiXhDslLJVvTtW7-d92yT6fITgzOa4wfAhjVFuwy2kw4jiQcCSwqA_piqOXQpqnEQU-LBh-6bpcwI_9NgIQ08vtfhFpuNDY04zsHpw5he1ZByMW791qaq6n4/s72-c/Screenshot+from+2014-04-29+22:52:14.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-7175034087206959779</id><published>2014-04-29T10:06:00.001-07:00</published><updated>2014-04-29T10:06:45.997-07:00</updated><title type='text'>How to open .mp3 .mp4 .pdf .txt any file format using Terminal</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjX2fUnD-5XTDH6l6dkQhDQJw4GRgUpy5E1u8aAqyU8R8C11g4q8xZsfNUpg_xRckAcJGUZPt9Cqv5FhUHhGvA5u3lFVhrxvzTTn3nY9I5eJxIeCAX_xiU6rxTY3ls5Q8LhkGM4KntZonQ/s1600/Screenshot+from+2014-04-29+22:28:48.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjX2fUnD-5XTDH6l6dkQhDQJw4GRgUpy5E1u8aAqyU8R8C11g4q8xZsfNUpg_xRckAcJGUZPt9Cqv5FhUHhGvA5u3lFVhrxvzTTn3nY9I5eJxIeCAX_xiU6rxTY3ls5Q8LhkGM4KntZonQ/s1600/Screenshot+from+2014-04-29+22:28:48.png&quot; height=&quot;223&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;You need to install gnome-open&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open Terminal and type&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install gnome-open&lt;br /&gt;
&lt;br /&gt;
then you need to go for the certain directory where your .mp3 .mp4 .pdf .txt any file is located and&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
type&amp;nbsp; gnome-open xxxxyyy.mp3&lt;br /&gt;
or&amp;nbsp; gnome-open xxxxyyy.mp4&lt;br /&gt;
or gnome-open xxxxyyy.txt&lt;br /&gt;
or gnome-open xxxxyyy.pdf&lt;br /&gt;
&lt;br /&gt;
whatever it is !! &lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/7175034087206959779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-open-mp3-mp4-pdf-txt-any-file.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7175034087206959779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7175034087206959779'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-open-mp3-mp4-pdf-txt-any-file.html' title='How to open .mp3 .mp4 .pdf .txt any file format using Terminal'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjX2fUnD-5XTDH6l6dkQhDQJw4GRgUpy5E1u8aAqyU8R8C11g4q8xZsfNUpg_xRckAcJGUZPt9Cqv5FhUHhGvA5u3lFVhrxvzTTn3nY9I5eJxIeCAX_xiU6rxTY3ls5Q8LhkGM4KntZonQ/s72-c/Screenshot+from+2014-04-29+22:28:48.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-1337140090736112239</id><published>2014-04-27T06:06:00.001-07:00</published><updated>2014-04-27T06:06:54.752-07:00</updated><title type='text'>how to mount drives in Linux Permanently </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2jECQz5OLisEaOtUxMYQfZ-25aIKM8iZaG_O7uga2KA_PuePwcV99Y57bI6vG5gYqfVFQ24PRdH0s9KTNSRjhu7dJyh8Vo4bDjztX5y7V-ILMM7ZReuNmuwyWjPGFfS93pGzy9q2hts4/s1600/Screenshot+from+2014-04-27+18:28:13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2jECQz5OLisEaOtUxMYQfZ-25aIKM8iZaG_O7uga2KA_PuePwcV99Y57bI6vG5gYqfVFQ24PRdH0s9KTNSRjhu7dJyh8Vo4bDjztX5y7V-ILMM7ZReuNmuwyWjPGFfS93pGzy9q2hts4/s1600/Screenshot+from+2014-04-27+18:28:13.png&quot; height=&quot;224&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For ubuntu type :&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install&amp;nbsp; pysdm&lt;br /&gt;
&lt;br /&gt;
after installation u need to type&lt;br /&gt;
&lt;br /&gt;
sudo pysdm&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
u will get a screen as like above&lt;br /&gt;
&lt;br /&gt;
now u need to refer &quot;mount point&quot;&lt;br /&gt;
&lt;br /&gt;
before doing it dont for gate to make a directory at /media for the drive u want to mount automatically&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ur name of the directory in /media should like this for ex. New_volume , New-Volume, NewVolume etc .&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/1337140090736112239/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-mount-drives-in-linux-permanently.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1337140090736112239'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/1337140090736112239'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/04/how-to-mount-drives-in-linux-permanently.html' title='how to mount drives in Linux Permanently '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2jECQz5OLisEaOtUxMYQfZ-25aIKM8iZaG_O7uga2KA_PuePwcV99Y57bI6vG5gYqfVFQ24PRdH0s9KTNSRjhu7dJyh8Vo4bDjztX5y7V-ILMM7ZReuNmuwyWjPGFfS93pGzy9q2hts4/s72-c/Screenshot+from+2014-04-27+18:28:13.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-7362492970564394997</id><published>2014-04-03T03:17:00.002-07:00</published><updated>2014-05-03T17:20:35.806-07:00</updated><title type='text'>Indian Voting System</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;html&gt;
&lt;body&gt;

&lt;script&gt;
document.getElementById(&quot;r&quot;).innerHTML=Date();
&lt;/script&gt;

&lt;style&gt;
body
{ 
background-color:#d0e4fe;
}
p:first-letter
{
color:blue;
front-size:large;
}
p:first-line
{
color:red;
front-size:large;
}

&lt;/style&gt;

&lt;center&gt;
&lt;div id=&quot;r&quot;&gt;
&lt;b&gt;&lt;/b&gt;&lt;/div&gt;
&lt;b&gt;Indian Voting System&lt;/b&gt;&lt;br /&gt;

&lt;p2&gt;&lt;b&gt;This System Will Tell You Are Elligible For Voting Or Not!! &lt;/b&gt;&lt;/p2&gt;&lt;br /&gt;&lt;br /&gt;
Age:&lt;input id=&quot;m&quot; /&gt;
&lt;button onclick=&quot;anuj()&quot;&gt;Click Here&lt;/button&gt;
&lt;/center&gt;
&lt;script&gt;
document.getElementById(&quot;r&quot;).innerHTML=Date();
function anuj()
{
a=document.getElementById(&quot;m&quot;).value

if (a==&quot;&quot;||isNaN(a))
   {
   alert(&quot;Please Enter a number!&quot;) ;
   }
   else
   {
   if(a&gt;=18)
   {
   alert(&quot;Congrats You Can Go For Vote!&quot;)
    }
    else
   {
   alert(&quot;We are sorry to say NO you cant go for vote&quot;)
   }
}
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/7362492970564394997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/04/indian-voting-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7362492970564394997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/7362492970564394997'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/04/indian-voting-system.html' title='Indian Voting System'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-8430051495693108755</id><published>2014-03-21T06:08:00.002-07:00</published><updated>2014-05-03T17:21:03.593-07:00</updated><title type='text'>convert .mp4 to .mp3 in linux</title><content type='html'>
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;i&gt;FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec – the leading audio/video codec library.&lt;br /&gt;&lt;br /&gt;Install ffmpeg On Ubuntu&lt;br /&gt;&lt;br /&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;br /&gt;&lt;br /&gt;Converting MP4 to MP3&lt;br /&gt;&lt;br /&gt;Basic command:&lt;br /&gt;&lt;br /&gt;ffmpeg -i filename.mp4 filename.mp3&lt;br /&gt;&lt;br /&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;br /&gt;&lt;br /&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;br /&gt;&lt;br /&gt;A stream specifier can match several stream, the option is then&amp;nbsp; applied to all of them. E.g. the stream specifier in “-b:a 128k” matches all audio streams.&lt;br /&gt;&lt;br /&gt;By Script:&lt;br /&gt;&lt;br /&gt;The following script is going to convert all file with extension .mp4 in the folder Music to .mp3.&lt;br /&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;MP4FILE=$(ls ~/Music/ |grep .mp4)&lt;br /&gt;for filename in $MP4FILE&lt;br /&gt;do &lt;br /&gt;&amp;nbsp;name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`&lt;br /&gt;&amp;nbsp;ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3&lt;br /&gt;done&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;
&lt;div id=&quot;stcpDiv&quot; style=&quot;left: -1988px; position: absolute; top: -1999px;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec – the leading audio/video codec library.&lt;br /&gt;&lt;br /&gt;Install ffmpeg On Ubuntu&lt;br /&gt;&lt;br /&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;br /&gt;&lt;br /&gt;Converting MP4 to MP3&lt;br /&gt;&lt;br /&gt;Basic command:&lt;br /&gt;&lt;br /&gt;ffmpeg -i filename.mp4 filename.mp3&lt;br /&gt;&lt;br /&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;br /&gt;&lt;br /&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;br /&gt;&lt;br /&gt;A stream specifier can match several stream, the option is then&amp;nbsp; applied to all of them. E.g. the stream specifier in “-b:a 128k” matches all audio streams.&lt;br /&gt;&lt;br /&gt;By Script:&lt;br /&gt;&lt;br /&gt;The following script is going to convert all file with extension .mp4 in the folder Music to .mp3.&lt;br /&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;MP4FILE=$(ls ~/Music/ |grep .mp4)&lt;br /&gt;for filename in $MP4FILE&lt;br /&gt;do &lt;br /&gt;&amp;nbsp;name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`&lt;br /&gt;&amp;nbsp;ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;- See more at: http://www.unixmen.com/linux-basics-convert-mp4-mp3/#sthash.QoGtqCIX.dpufFFmpeg&lt;/b&gt;
 is a complete, cross-platform solution to record, convert and stream 
audio and video. It includes libavcodec – the leading audio/video codec 
library.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Install ffmpeg On Ubuntu&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Converting MP4 to MP3&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Basic command:&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;A stream specifier can match several stream, the option is then &amp;nbsp;applied to all of them. E.g. the stream specifier in &lt;b&gt;“-b:a 128k”&lt;/b&gt; matches all audio streams.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;By&amp;nbsp;Script:&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;The following script is going to convert all file with extension .mp4 in the folder &lt;b&gt;Music&lt;/b&gt; to .mp3.&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;#!/bin/bash
MP4FILE=$(ls ~/Music/ |grep .mp4)
for filename in $MP4FILE
do 
 name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`
 ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3
done&lt;/i&gt;&lt;/pre&gt;
&lt;i&gt; - See more at: http://www.unixmen.com/linux-basics-convert-mp4-mp3/#sthash.QoGtqCIX.dpuf&lt;/i&gt;&lt;br /&gt;
&lt;div id=&quot;stcpDiv&quot; style=&quot;left: -1988px; position: absolute; top: -1999px;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;FFmpeg&lt;/b&gt;
 is a complete, cross-platform solution to record, convert and stream 
audio and video. It includes libavcodec – the leading audio/video codec 
library.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Install ffmpeg On Ubuntu&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Converting MP4 to MP3&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Basic command:&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;A stream specifier can match several stream, the option is then &amp;nbsp;applied to all of them. E.g. the stream specifier in &lt;b&gt;“-b:a 128k”&lt;/b&gt; matches all audio streams.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;By&amp;nbsp;Script:&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;The following script is going to convert all file with extension .mp4 in the folder &lt;b&gt;Music&lt;/b&gt; to .mp3.&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;#!/bin/bash
MP4FILE=$(ls ~/Music/ |grep .mp4)
for filename in $MP4FILE
do 
 name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`
 ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3
done&lt;/i&gt;&lt;/pre&gt;
&lt;i&gt; - See more at: http://www.unixmen.com/linux-basics-convert-mp4-mp3/#sthash.QoGtqCIX.&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;stcpDiv&quot; style=&quot;left: -1988px; position: absolute; top: -1999px;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;FFmpeg&lt;/b&gt;
 is a complete, cross-platform solution to record, convert and stream 
audio and video. It includes libavcodec – the leading audio/video codec 
library.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Install ffmpeg On Ubuntu&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Converting MP4 to MP3&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Basic command:&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;A stream specifier can match several stream, the option is then &amp;nbsp;applied to all of them. E.g. the stream specifier in &lt;b&gt;“-b:a 128k”&lt;/b&gt; matches all audio streams.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;By&amp;nbsp;Script:&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;The following script is going to convert all file with extension .mp4 in the folder &lt;b&gt;Music&lt;/b&gt; to .mp3.&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;#!/bin/bash
MP4FILE=$(ls ~/Music/ |grep .mp4)
for filename in $MP4FILE
do 
 name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`
 ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3
done&lt;/i&gt;&lt;/pre&gt;
&lt;i&gt; - See more at: http://www.unixmen.com/linux-basics-convert-mp4-mp3/#sthash.QoGtqCIX.dpuf&lt;/i&gt;&lt;/div&gt;
&lt;div id=&quot;stcpDiv&quot; style=&quot;left: -1988px; position: absolute; top: -1999px;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;FFmpeg&lt;/b&gt;
 is a complete, cross-platform solution to record, convert and stream 
audio and video. It includes libavcodec – the leading audio/video codec 
library.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Install ffmpeg On Ubuntu&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;sudo apt-get install ffmpeg libavcodec-extra-53&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Converting MP4 to MP3&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Basic command:&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;Find out the more options of this command with man page. (man ffmpeg)&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;ffmpeg -i filename.mp4 -b:a 192K -vn filename.mp3&lt;/i&gt;&lt;/pre&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;A stream specifier can match several stream, the option is then &amp;nbsp;applied to all of them. E.g. the stream specifier in &lt;b&gt;“-b:a 128k”&lt;/b&gt; matches all audio streams.&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;By&amp;nbsp;Script:&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;i&gt;The following script is going to convert all file with extension .mp4 in the folder &lt;b&gt;Music&lt;/b&gt; to .mp3.&lt;/i&gt;&lt;/div&gt;
&lt;pre&gt;&lt;i&gt;#!/bin/bash
MP4FILE=$(ls ~/Music/ |grep .mp4)
for filename in $MP4FILE
do 
 name=`echo &quot;$filename&quot; | sed -e &quot;s/.mp4$//g&quot;`
 ffmpeg -i ~/Music/$filename -b:a 192K -vn ~/Music/$name.mp3
done&lt;/i&gt;&lt;/pre&gt;
&lt;i&gt;- See more at: http://www.unixmen.com/linux-basics-convert-mp4-mp3/#sthash.QoGtqCIX.dpuf.vndifgdslkfjodsjbklzcidfsu&lt;/i&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/8430051495693108755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/03/convert-mp4-to-mp4-in-linux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8430051495693108755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/8430051495693108755'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/03/convert-mp4-to-mp4-in-linux.html' title='convert .mp4 to .mp3 in linux'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-5540308710685841416</id><published>2014-03-02T08:08:00.001-08:00</published><updated>2014-05-03T17:21:33.713-07:00</updated><title type='text'>How To Open an EPUB File in Linux or Windows system</title><content type='html'>

&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;i&gt;&lt;strong&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaIgUy7XwqS13IJgLvGbE1nSuCseCN0WRcr6QhMWeuYxx4VUBQWpMNzxgGTDTJHH-sstoThMk3dzQBsKwde00PyJ0AP2D3EC3bNgfyu0diePdQXdwnnyrSScx3N0PO4K_8JaaGApM5YWs/s1600/Screenshot+from+2014-03-02+21:33:38.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaIgUy7XwqS13IJgLvGbE1nSuCseCN0WRcr6QhMWeuYxx4VUBQWpMNzxgGTDTJHH-sstoThMk3dzQBsKwde00PyJ0AP2D3EC3bNgfyu0diePdQXdwnnyrSScx3N0PO4K_8JaaGApM5YWs/s1600/Screenshot+from+2014-03-02+21:33:38.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;strong&gt;Warning:&lt;/strong&gt; Take great care when opening executable file formats received via email or downloaded from websites you&#39;re not familiar with&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;i&gt;How To Convert an EPUB File:&lt;/i&gt;&lt;/h3&gt;
&lt;i&gt;

&lt;/i&gt;&lt;i&gt;There are three main ways to attempt to convert an EPUB file to another file type:&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;

&lt;/i&gt;&lt;ul&gt;
&lt;li&gt;&lt;i&gt;Open the EPUB file in its default program and choose to save the open file as another file format.&lt;br /&gt;
 &amp;nbsp;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;
&lt;i&gt;&lt;a href=&quot;http://calibre-ebook.com/&quot;&gt;Download Calibre&lt;/a&gt; for free and use it to convert EPUB files to and from other eBook formats, including ones compatible with the Amazon Kindle.&lt;br /&gt;
 &amp;nbsp;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Use another &lt;a href=&quot;http://pcsupport.about.com/od/tipstricks/tp/file_converter.htm&quot;&gt;File Conversion Online Service or Software Program&lt;/a&gt; to convert the EPUB file to another file format.&lt;/i&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;EPUB files are structured just like &lt;a href=&quot;http://pcsupport.about.com/od/fileextensions/f/zip-file.htm&quot;&gt;ZIP files&lt;/a&gt;, meaning that you can rename an EPUB eBook, replacing the .epub with .zip, and then open the file with your favorite file compression program, like the free &lt;a href=&quot;http://freebies.about.com/od/Free-Decompression-Software/fl/7-zip-review.htm&quot;&gt;7-Zip&lt;/a&gt;
 tool. Inside you should find the contents of the EPUB eBook in HTML 
format, as well as the images and styles used to create the EPUB file. &lt;/em&gt;&lt;br /&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/5540308710685841416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/03/how-to-open-epub-file-in-linux-or.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/5540308710685841416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/5540308710685841416'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/03/how-to-open-epub-file-in-linux-or.html' title='How To Open an EPUB File in Linux or Windows system'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaIgUy7XwqS13IJgLvGbE1nSuCseCN0WRcr6QhMWeuYxx4VUBQWpMNzxgGTDTJHH-sstoThMk3dzQBsKwde00PyJ0AP2D3EC3bNgfyu0diePdQXdwnnyrSScx3N0PO4K_8JaaGApM5YWs/s72-c/Screenshot+from+2014-03-02+21:33:38.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-9083831572362314291</id><published>2014-02-23T06:09:00.000-08:00</published><updated>2014-05-03T17:21:55.448-07:00</updated><title type='text'>Install Aircrack-ng on Ubuntu 12.04 </title><content type='html'>

&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h3 class=&quot;post-title entry-title&quot; itemprop=&quot;name&quot;&gt;
Installing Aircrack-ng on Ubuntu 12.04&amp;nbsp;&lt;/h3&gt;
&lt;h3 class=&quot;post-title entry-title&quot; itemprop=&quot;name&quot;&gt;
&amp;nbsp;&lt;/h3&gt;
&lt;h3 class=&quot;post-title entry-title&quot; itemprop=&quot;name&quot;&gt;
&amp;nbsp;&lt;/h3&gt;
&lt;h3 class=&quot;post-title entry-title&quot; itemprop=&quot;name&quot;&gt;
&amp;nbsp;&lt;/h3&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqksq0pr-KwuX7XjIRs4Xr7tnZK0y7wX9BWgw4nv5egGP0m7sk5mf8TGr3OXNCxQj9si00AnJwGxuawmr6AcyiauyAu74wsVFFuwM3XiAJmhpFbJ4HTqugUCnY3jaareJct59LiiFQ0Oc/s1600/Screenshot+from+2014-02-23+19:31:27.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqksq0pr-KwuX7XjIRs4Xr7tnZK0y7wX9BWgw4nv5egGP0m7sk5mf8TGr3OXNCxQj9si00AnJwGxuawmr6AcyiauyAu74wsVFFuwM3XiAJmhpFbJ4HTqugUCnY3jaareJct59LiiFQ0Oc/s1600/Screenshot+from+2014-02-23+19:31:27.png&quot; height=&quot;200&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;h3 class=&quot;post-title entry-title&quot; itemprop=&quot;name&quot;&gt;
&amp;nbsp;&lt;/h3&gt;
&lt;div class=&quot;post-header&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&amp;nbsp;A variable called -&lt;span style=&quot;font-style: italic;&quot;&gt;Werror&lt;/span&gt;. This is what you need to do to compile aircrack-ng without the pesky errors.&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install build-essential&lt;br /&gt;
sudo apt-get install libssl-dev&lt;br /&gt;
wget http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz&lt;br /&gt;
tar -zxvf aircrack-ng-1.1.tar.gz&lt;br /&gt;
cd aircrack-ng-1.1&lt;br /&gt;
&lt;div style=&quot;font-style: normal;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;font-style: normal;&quot;&gt;
In
 the aircrack-ng-1.1 directory there is a file called common.mak, use 
your favorite editor to open the file and scroll down till you see the 
following line:&lt;/div&gt;
&lt;div style=&quot;font-style: normal;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;font-style: normal;&quot;&gt;
CFLAGS          ?= -g -W -Wall -Werror -O3&lt;/div&gt;
&lt;div style=&quot;font-style: normal;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Delete the &lt;i&gt;-Werror&lt;/i&gt; variable, so that the line now looks like the following. Save and exit.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
CFLAGS ?= -g -W -Wall -O3&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Run make and make install to get aircrack-ng up and running.&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/9083831572362314291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/02/install-aircrack-ng-on-ubuntu-1204.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/9083831572362314291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/9083831572362314291'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/02/install-aircrack-ng-on-ubuntu-1204.html' title='Install Aircrack-ng on Ubuntu 12.04 '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqksq0pr-KwuX7XjIRs4Xr7tnZK0y7wX9BWgw4nv5egGP0m7sk5mf8TGr3OXNCxQj9si00AnJwGxuawmr6AcyiauyAu74wsVFFuwM3XiAJmhpFbJ4HTqugUCnY3jaareJct59LiiFQ0Oc/s72-c/Screenshot+from+2014-02-23+19:31:27.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-2329459513993202148</id><published>2014-02-03T06:17:00.003-08:00</published><updated>2014-05-03T17:22:19.066-07:00</updated><title type='text'>How to access Linux Ext3/Ext4 File System in Windows</title><content type='html'>

&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;i&gt;While using Linux distros such as Ubuntu, Fedora you can easily access 
Windows NTFS file system. But this is not possible&amp;nbsp;when you are working 
with Windows. You cannot even view the Linux Ext3/Ext4 file system in 
Windows. To solve this problem&amp;nbsp;I recently came across a tool called &lt;strong&gt;Linux Reader&lt;/strong&gt;
 which was very helpful in accessing Linux files in Windows. This 
tool&amp;nbsp;works perfectly as you can copy the files from the Ext3/Ext4 file 
system to your Windows NTFS file System.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Download and install Linux Reader from &lt;a href=&quot;http://www.diskinternals.com/linux-reader/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: #339966;&quot;&gt;http://www.diskinternals.com/linux-reader&lt;/span&gt;/&amp;nbsp;&amp;nbsp; &lt;/a&gt;or u can download this one form my own store &lt;a href=&quot;http://u-store.no-ip.biz/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;http://u-store.no-ip.biz/&lt;/a&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;(For this server u have to request ... its not always on-line)&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;i&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtYgQRzbM7C-usgjGTPRcbSuffYYXqhxYdJ7rsqKhIrGsl2ZRdkYoJn6-MBOrdbDU_GpoSM4VZM8IP-18soBAjN8AoPZ6O1zp0lhhIyVmonyKLMxw5vL1iTOTev7Bv4dwXO0PS40x4LLw/s1600/linux-300x231.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtYgQRzbM7C-usgjGTPRcbSuffYYXqhxYdJ7rsqKhIrGsl2ZRdkYoJn6-MBOrdbDU_GpoSM4VZM8IP-18soBAjN8AoPZ6O1zp0lhhIyVmonyKLMxw5vL1iTOTev7Bv4dwXO0PS40x4LLw/s1600/linux-300x231.png&quot; /&gt;&lt;/a&gt;&lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;br /&gt;
&lt;i&gt;Open the installed Linux reader. It scans and displays your partitions including the Linux Ext3/Ext4 one.The partition which is indicated by “/” is our Linux root partition. It displays every Linux partition with the path it ismounted. My other Linux Partition is displayed as “/rajamalw/media/xxxx” which is the path it is mounted.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;i&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtDLCeZhuM6_6Gik4PAMqJvWP7htRAT4nvc5FKpnMjZbTsLhtomC91JeP9soGdLNQ68fAk5Qh-eF1ezcIPTVwvLeURoY-r9ihjY3hzcuvuF6WkSASCtHzxR9TVqx9HREtBwzYW7opbcYw/s1600/Capture-300x52.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtDLCeZhuM6_6Gik4PAMqJvWP7htRAT4nvc5FKpnMjZbTsLhtomC91JeP9soGdLNQ68fAk5Qh-eF1ezcIPTVwvLeURoY-r9ihjY3hzcuvuF6WkSASCtHzxR9TVqx9HREtBwzYW7opbcYw/s1600/Capture-300x52.png&quot; /&gt;&lt;/a&gt;&lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;It has a inbuilt image viewer so that you can use it to view images without using any additional tools.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;i&gt;Copying Files to Windows&lt;/i&gt;&lt;/h3&gt;
&lt;i&gt;To copy or save a file to Windows 
partition right click on the item and select save. It will guide you 
through a wizard to&amp;nbsp;complete the process.&lt;/i&gt;&lt;br /&gt;
&lt;h3&gt;
&lt;i&gt;Creating Images&lt;/i&gt;&lt;/h3&gt;
&lt;i&gt;You can completely backup a Linux partition in Windows. Right click on the partition and select Create Image. It would take some time according to the partition size.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;i&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijBu3DKVYQLVDJY0CAUDA3AgR79NKgzBvlXAcYDdmm_0xQ1lo5BrVxMncoF0MgU0B_OqOOtkObx4ljZmoxAhHiow47HjDskWUQ1s3X1CkXtV7BYCLqw9qHetFtAT2tyBsC2OmBs5jH3LI/s1600/image-300x284.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijBu3DKVYQLVDJY0CAUDA3AgR79NKgzBvlXAcYDdmm_0xQ1lo5BrVxMncoF0MgU0B_OqOOtkObx4ljZmoxAhHiow47HjDskWUQ1s3X1CkXtV7BYCLqw9qHetFtAT2tyBsC2OmBs5jH3LI/s1600/image-300x284.png&quot; /&gt;&lt;/a&gt;&lt;/i&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;This would be a all in one tool for all your needs.&amp;nbsp;&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/2329459513993202148/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/02/how-to-access-linux-ext3ext4-file.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2329459513993202148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/2329459513993202148'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/02/how-to-access-linux-ext3ext4-file.html' title='How to access Linux Ext3/Ext4 File System in Windows'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtYgQRzbM7C-usgjGTPRcbSuffYYXqhxYdJ7rsqKhIrGsl2ZRdkYoJn6-MBOrdbDU_GpoSM4VZM8IP-18soBAjN8AoPZ6O1zp0lhhIyVmonyKLMxw5vL1iTOTev7Bv4dwXO0PS40x4LLw/s72-c/linux-300x231.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-795672894627467859.post-5264201954084887438</id><published>2014-01-25T09:26:00.000-08:00</published><updated>2014-05-03T17:22:48.910-07:00</updated><title type='text'>How to Login as Root in Ubuntu </title><content type='html'>


&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
lf u want to enable and logon with the root account in ubuntu This will enable the root account.
&lt;br /&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;$ sudo passwd&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
To enable manual logon with &lt;strong&gt;Ubuntu 13.10&lt;/strong&gt;, open the config file by running the commands below&lt;br /&gt;
&lt;br /&gt;

 $sudo gedit /etc/lightdm/lightdm.conf.d/50-unity-greeter.conf
&lt;br /&gt;

Then add the line below as shown in the image.&lt;br /&gt;
&lt;br /&gt;

greeter-show-manual-login=true&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh__0kWaX5OeYj6cvDdT8Wc5XQJMX0IuOsz0-fVsgnxpRWyvxrsFo_VHkdQfyk-Q1raRhMtnBQj0m8E6h5ptKkEuHL-scPzn4Eue7uOxswDhWCDxNZQS3fEPRPAdAxUDnNF_qhciS_BpFY/s1600/ubuntu-root-logon_thumb1_thumb3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh__0kWaX5OeYj6cvDdT8Wc5XQJMX0IuOsz0-fVsgnxpRWyvxrsFo_VHkdQfyk-Q1raRhMtnBQj0m8E6h5ptKkEuHL-scPzn4Eue7uOxswDhWCDxNZQS3fEPRPAdAxUDnNF_qhciS_BpFY/s1600/ubuntu-root-logon_thumb1_thumb3.png&quot; height=&quot;85&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Save the file and restart your computer. &lt;br /&gt;

For earlier versions of Ubuntu, you may find this config file in a different location under&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
$ sudo gedit /etc/lightdm/lightdm.conf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOanFSb6uJwmxIZntOEteYXJKbO16uk6meli1k7F6NtsAV5JLFz6hkU5uHZovAerlYhgMxjr2uBqcdQzUrSyw9OJ669RmPZWUe0380NmOpfesimxLiBJUOwRAsCIybypzeq3MByztdu6U/s1600/ubuntu-root-logon-1_thumb1_thumb3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOanFSb6uJwmxIZntOEteYXJKbO16uk6meli1k7F6NtsAV5JLFz6hkU5uHZovAerlYhgMxjr2uBqcdQzUrSyw9OJ669RmPZWUe0380NmOpfesimxLiBJUOwRAsCIybypzeq3MByztdu6U/s1600/ubuntu-root-logon-1_thumb1_thumb3.png&quot; height=&quot;108&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you want to lock / disable the root account, run the commands below.&lt;br /&gt;

&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;$sudo passwd -l root&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre style=&quot;background-color: #fbfbfb; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 14px; margin: 0em; width: 100%;&quot;&gt;&amp;nbsp;&lt;/pre&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://borahlinux.blogspot.com/feeds/5264201954084887438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://borahlinux.blogspot.com/2014/01/how-to-login-as-root-in-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/5264201954084887438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/795672894627467859/posts/default/5264201954084887438'/><link rel='alternate' type='text/html' href='http://borahlinux.blogspot.com/2014/01/how-to-login-as-root-in-ubuntu.html' title='How to Login as Root in Ubuntu '/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/07310729556744882022</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh__0kWaX5OeYj6cvDdT8Wc5XQJMX0IuOsz0-fVsgnxpRWyvxrsFo_VHkdQfyk-Q1raRhMtnBQj0m8E6h5ptKkEuHL-scPzn4Eue7uOxswDhWCDxNZQS3fEPRPAdAxUDnNF_qhciS_BpFY/s72-c/ubuntu-root-logon_thumb1_thumb3.png" height="72" width="72"/><thr:total>0</thr:total></entry></feed>