<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title> &#187; Ubuntu tips and Tricks</title>
	<atom:link href="http://bipinb.com/category/linux/ubuntu-tips-and-tricks/feed" rel="self" type="application/rss+xml" />
	<link>http://bipinb.com</link>
	<description></description>
	<lastBuildDate>Tue, 10 Aug 2010 02:14:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Audacity mp3 export</title>
		<link>http://bipinb.com/audacity-mp3-export.htm</link>
		<comments>http://bipinb.com/audacity-mp3-export.htm#comments</comments>
		<pubDate>Mon, 21 Apr 2008 10:20:46 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[Audacity mp3 export]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=56</guid>
		<description><![CDATA[




 
Audacity is a free digital sound editing application we can import sound format like mp3, wav etc and edit and export to any other sound format.
To install audactiy in ubuntu issue
sudo apt-get install audacity
One of the issue facing with audacity application is that the export to mp3 fromat will not work in the default [...]]]></description>
			<content:encoded><![CDATA[<!-- Easy AdSense V2.83 -->
<!-- Post[count: 2] -->
<div class="ezAdsense adsense adsense-leadin" style="text-align:center;margin:12px;"><script type="text/javascript"><!--
google_ad_client = "pub-8516280820391538";
/* 468x60, created 6/14/10 */
google_ad_slot = "2348800126";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><p> <img src="http://bipinb.com/wp-content/uploads/2008/04/audacityscreen.jpg" alt="audacityscreen.jpg" height="263" width="430" /></p>
<p><strong>Audacity</strong> is a free digital sound editing application we can import sound format like mp3, wav etc and edit and export to any other sound format.</p>
<p>To install audactiy in ubuntu issue</p>
<pre>sudo apt-get install audacity</pre>
<p>One of the issue facing with audacity application is that the export to mp3 fromat will not work in the default installation.This is due to the absence of the lame mp3 encoder.</p>
<p>To solve this install it as follows.</p>
<pre>sudo apt-get install  lame
sudo apt-get install  lame-extras
sudo apt-get install  lame-dev
sudo apt-get install  liblame0</pre>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/audacity-mp3-export.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>nmap &#8211; Network exploration tool and security / port scanner</title>
		<link>http://bipinb.com/nmap-nmap-network-exploration-tool-and-security-port-scanner.htm</link>
		<comments>http://bipinb.com/nmap-nmap-network-exploration-tool-and-security-port-scanner.htm#comments</comments>
		<pubDate>Thu, 17 Apr 2008 13:32:04 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[nmap network exploration tool]]></category>
		<category><![CDATA[scanning a network is live with nmap]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=55</guid>
		<description><![CDATA[




Nmap is a tool that can be used to check the network status as well as the status of a particular port.
To install nmap issue
sudo apt-get install nmap
eg:
To check the status of a particular port in the local host we can issue
nmap -p 80 localhost
will give
Starting Nmap 4.53 ( http://insecure.org ) at 2008-04-17 18:58 IST
Interesting [...]]]></description>
			<content:encoded><![CDATA[<p>Nmap is a tool that can be used to check the network status as well as the status of a particular port.</p>
<p>To install nmap issue</p>
<pre>sudo apt-get install nmap</pre>
<p>eg:</p>
<p>To check the status of a particular port in the local host we can issue</p>
<pre>nmap -p 80 localhost</pre>
<p>will give</p>
<p>Starting Nmap 4.53 ( http://insecure.org ) at 2008-04-17 18:58 IST<br />
Interesting ports on localhost (127.0.0.1):<br />
PORT   STATE SERVICE<br />
80/tcp open  http</p>
<p>if its open.Similarly we can give any host name.</p>
<p>For scanning a network is live or not we can give</p>
<pre>nmap -sP -vv 192.168.0.* | grep up</pre>
<p>Host 192.168.0.1 appears to be up.<br />
Host 192.168.0.100 appears to be up.<br />
Host 192.168.0.101 appears to be up.<br />
Host 192.168.0.102 appears to be up.<br />
Host 192.168.0.103 appears to be up.<br />
Host 192.168.0.104 appears to be up.<br />
Host 192.168.0.111 appears to be up.<br />
Host 192.168.0.112 appears to be up.<br />
Host 192.168.0.115 appears to be up.<br />
Host 192.168.0.117 appears to be up.<br />
Nmap done: 256 IP addresses (10 hosts up) scanned in 4.630 seconds</p>
<p>will give this if all are up</p>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/nmap-nmap-network-exploration-tool-and-security-port-scanner.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share ubuntu Printer with Windows</title>
		<link>http://bipinb.com/share-ubuntu-printer-with-windows.htm</link>
		<comments>http://bipinb.com/share-ubuntu-printer-with-windows.htm#comments</comments>
		<pubDate>Wed, 13 Feb 2008 14:47:21 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[Sharing ubuntu Printer with Windows]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=16</guid>
		<description><![CDATA[For sharing a local printer connected with Ubuntu os in the windows network we need to setup a samba server.For this first install samba in our server linux system.
apt-get install samba
apt-get install samba-common
apt-get install smbclient
apt-get install smbfs
edit the file smb.conf
sudo  vim /etc/samba/smb.conf
[printers]
comment = All Printers
browseable = yes
path = /tmp
printable = yes
public = yes
writable = [...]]]></description>
			<content:encoded><![CDATA[<p>For sharing a local printer connected with Ubuntu os in the windows network we need to setup a samba server.For this first install samba in our server linux system.<br />
apt-get install samba<br />
apt-get install samba-common<br />
apt-get install smbclient<br />
apt-get install smbfs</p>
<p>edit the file smb.conf</p>
<p>sudo  vim /etc/samba/smb.conf</p>
<p>[printers]<br />
comment = All Printers<br />
browseable = yes<br />
path = /tmp<br />
printable = yes<br />
public = yes<br />
writable = yes<br />
create mode = 0700</p>
<p># Windows clients look for this share name as a source of downloadable<br />
# printer drivers<br />
[print$]<br />
comment = Printer Drivers<br />
path = /var/lib/samba/printers<br />
browseable = yes<br />
read only = yes<br />
guest ok = yes</p>
<p>To define SAMBA network users for your Ubuntu system, you may use the smbpasswd command.</p>
<p>smbpasswd -a bipin</p>
<p>where “bipin” is a user in the samba server</p>
<p>restart samba</p>
<p>sudo /etc/init.d/samba restart</p>
<p>Enjoy Printing!!!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/share-ubuntu-printer-with-windows.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Networking Configuration</title>
		<link>http://bipinb.com/ubuntu-networking-configuration.htm</link>
		<comments>http://bipinb.com/ubuntu-networking-configuration.htm#comments</comments>
		<pubDate>Wed, 13 Feb 2008 14:46:19 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Networking Configuration]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=15</guid>
		<description><![CDATA[Networking Configuration of Ubuntu is different from fedora or redhat because there is no “netconfig” command here.So we have to do it in some other way as follows.
Command: sudo vi /etc/network/interfaces 
here we will get a page like this
# This file describes the network interfaces available on your system
# and how to activate them. For [...]]]></description>
			<content:encoded><![CDATA[<p>Networking Configuration of Ubuntu is different from fedora or redhat because there is no “netconfig” command here.So we have to do it in some other way as follows.<br />
Command: <strong>sudo vi /etc/network/interfaces </strong></p>
<p>here we will get a page like this</p>
<p># This file describes the network interfaces available on your system<br />
# and how to activate them. For more information, see interfaces(5).</p>
<p># The loopback network interface<br />
auto lo<br />
iface lo inet loopback</p>
<p># The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.0.33<br />
netmask 255.255.255.0<br />
network 192.168.0.0<br />
broadcast 192.168.0.255<br />
gateway 192.168.0.1<br />
# dns-* options are implemented by the resolvconf package, if installed</p>
<p>replace your own ip configuration here write and quite</p>
<p>issue <strong>sudo /etc/init.d/networking restart</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/ubuntu-networking-configuration.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install anything in Ubuntu!</title>
		<link>http://bipinb.com/install-anything-in-ubuntu.htm</link>
		<comments>http://bipinb.com/install-anything-in-ubuntu.htm#comments</comments>
		<pubDate>Wed, 13 Feb 2008 08:40:15 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[Install anything in Ubuntu]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=14</guid>
		<description><![CDATA[Having problem in installing anything in your Ubuntu OS.Take the terminal and issue
the two commands that you can use are:
sudo apt-get install PACKAGE  and  sudo aptitude install PACKAGE 
eg: For installing webserver you have to issue
sudo apt-get install apache2 
The sudo part of the command means you temporarily grant super-user/administrator rights to the [...]]]></description>
			<content:encoded><![CDATA[<p class="post-content">Having problem in installing anything in your Ubuntu OS.Take the terminal and issue<br />
the two commands that you can use are:</p>
<p><strong>sudo apt-get install PACKAGE </strong> and <strong> sudo aptitude install PACKAGE </strong></p>
<p>eg: For installing webserver you have to issue</p>
<p><strong>sudo apt-get install apache2 </strong></p>
<p>The sudo part of the command means you temporarily grant super-user/administrator rights to the command, provided you supply a correct user password</p>
<p>It’s also possible to search from the command-line like it is in Synaptic. Try this:</p>
<p><strong>apt-cache search PACKAGE </strong> or <strong>aptitude search PACKAGE</strong></p>
<p>To find several packages related to what we’re looking for, together with brief descriptions<br />
<strong> apt-cache show PACKAGE</strong>To uninstall a package:</p>
<p><strong>sudo apt-get remove PACKAGE</strong> and <strong>sudo aptitude remove PACKAGE</strong></p>
<p>Removing configuration files as well:</p>
<p><strong>sudo apt-get remove –purge PACKAGE </strong> and <strong>sudo aptitude purge PACKAGE </strong>   or</p>
<p><strong>sudo dpkg –purge remove PACKAGE</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/install-anything-in-ubuntu.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting timezone in Ubuntu</title>
		<link>http://bipinb.com/setting-timezone-in-ubuntu.htm</link>
		<comments>http://bipinb.com/setting-timezone-in-ubuntu.htm#comments</comments>
		<pubDate>Wed, 13 Feb 2008 08:24:29 +0000</pubDate>
		<dc:creator>Bipin Balakrishnan</dc:creator>
				<category><![CDATA[Ubuntu tips and Tricks]]></category>
		<category><![CDATA[timezone in Ubuntu]]></category>

		<guid isPermaLink="false">http://bipinb.com/?p=13</guid>
		<description><![CDATA[to select and set the time zone.
command:        tzconfig
(tzconfig copies the right time zone file from /usr/share/zoneinfo to /etc/localtime and puts the name of the timezone into /etc/timezone)
If your system does not have tzconfig, you may use something else.
tzselect
This will provide a set of different time zones to choose. [...]]]></description>
			<content:encoded><![CDATA[<p class="post-content">to select and set the time zone.</p>
<p>command:    <strong>    tzconfig</strong></p>
<p>(tzconfig copies the right time zone file from /usr/share/zoneinfo to /etc/localtime and puts the name of the timezone into /etc/timezone)</p>
<p>If your system does not have tzconfig, you may use something else.</p>
<p><strong>tzselect</strong></p>
<p>This will provide a set of different time zones to choose. If you would like to set the time to UTC, choose the option which says something like ‘none of the above’, or ‘none of these’ or something to this effect.</p>
<p>Or you can use</p>
<p><strong><em>sudo dpkg</em>-<em>reconfigure tzdata</em></strong></p>
<p><span class="category"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://bipinb.com/setting-timezone-in-ubuntu.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
