<?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>zedomax.com &#187; unnecessary services</title>
	<atom:link href="http://zedomax.com/blog/tag/unnecessary-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://zedomax.com/blog</link>
	<description>Zedomax - The DIY, HOWTO, Mod, Hacks, Gadgets, and Tech Blog!</description>
	<lastBuildDate>Sun, 21 Mar 2010 02:30:07 +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>Ubuntu Hack &#8211; How to Make Ubuntu run Super Fast!</title>
		<link>http://zedomax.com/blog/2008/09/29/ubuntu-hack-how-to-make-ubuntu-run-super-fast/</link>
		<comments>http://zedomax.com/blog/2008/09/29/ubuntu-hack-how-to-make-ubuntu-run-super-fast/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 21:25:18 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Consumer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Featured Hacks]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[192 168 1 100]]></category>
		<category><![CDATA[boot time]]></category>
		<category><![CDATA[broadcast]]></category>
		<category><![CDATA[dhcp server]]></category>
		<category><![CDATA[dual core processor]]></category>
		<category><![CDATA[etc network]]></category>
		<category><![CDATA[firestarter]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[iface]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[lst]]></category>
		<category><![CDATA[network interfaces]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[static address]]></category>
		<category><![CDATA[static ip]]></category>
		<category><![CDATA[t break]]></category>
		<category><![CDATA[ttys]]></category>
		<category><![CDATA[unnecessary services]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=9833</guid>
		<description><![CDATA[
For those of us who are anti-Windows and anti-Mac, we will benefit from learning how to make Ubuntu run super fast.
Here&#8217;s some great tips on minimizing processes to make your Ubuntu run faster than ever:
1. Remove Network Manager if you do not need it “sudo apt-get remove network-manager”. If possible give yourself a static IP [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-9834 aligncenter" title="ubuntu" src="http://zedomax.com/blog/wp-content/uploads/2008/09/ubuntu.jpg" alt="" width="216" height="68" /></p>
<p>For those of us who are anti-Windows and anti-Mac, we will benefit from learning how to make Ubuntu run super fast.</p>
<p>Here&#8217;s some great tips on minimizing processes to make your Ubuntu run faster than ever:</p>
<blockquote><p><strong>1.</strong> Remove Network Manager if you do not need it “sudo apt-get remove network-manager”. If possible give yourself a static IP in /etc/network/interfaces like so:</p>
<p>auto lo<br />
iface lo inet loopback</p>
<p>auto eth0<br />
iface eth0 inet static<br />
address 192.168.1.150<br />
netmask 255.255.255.0<br />
network 192.168.1.100<br />
broadcast 192.168.0.255<br />
gateway 192.168.1.1</p>
<p>Having a static IP helps with boot time as your machine doesn’t have to communicate with the router/dhcp server as much to obtain an address.</p>
<p><strong><span style="color: #000000;">2.</span></strong> Also remove firestarter or whatever graphical firewall frontend you’re using.  <a target="_blank" href="http://tuxtraining.com/2008/05/15/iptables-how-to-save-and-restore-rules-at-boot-shutdown" >Learn to control iptables at boot up and shutdown</a>.  It’ll be much snappier.</p>
<p><strong>3</strong>. Install bum, “sudo apt-get install bum” and run it with root access. Shut off all unnecessary services. If you’re not sure about a service research it before shutting it off. Also, install sysv-rc-conf. Run the application as root. This will allow you to control, in an easy way, what services start at which run level. It’s like bum, but more detailed. Be very careful with which services you are removing from which run-level. If you don’t know what you’re doing here, research it or don’t touch it. After you do this you may want to reboot to make sure you didn’t break anything.</p>
<p><strong>4.</strong> Turn off usplash in grub. (Mind you, you’re bootup won’t be as pretty as the splash will go away).</p>
<ul>
<li>vim /boot/grub/menu.lst</li>
<li>on the kernel line delete the words “splash” and “quiet”</li>
<li>Reboot to see the changes.</li>
</ul>
<p><span style="color: #888888;"><strong><span style="color: #000000;">5.</span></strong> </span> If you have a dual core processor, you can decrease your boot time with concurrency.</p>
<ul>
<li><code><span style="color: black;">sudo vim /etc/init.d/rc</span></code></li>
<li><span style="color: black;">and find the line <em>CONCURRENCY=none</em> and change it to: </span><code><span style="color: black;">CONCURRENCY=shell</span></code></li>
<li>Reboot to see the changes. (tired of rebooting yet?)</li>
</ul>
<p><strong><span style="color: #888888;"><span style="color: #000000;">6</span></span></strong><strong><span style="color: #888888;">.</span></strong> Remove some TTYs</p>
<p>I could easily do this by editing /etc/inittab and then commenting the extra TTYs there. With the new upstart mechanism in place, things are a little different.</p>
<p>You have to edit /etc/default/console-setup file. This file defines how many ttys should you get.</p>
<p>Change ACTIVE_CONSOLES=”/dev/tty[1-6]” to the number of consoles you want. Lets say, 3 ttys, then change it to “/dev/tty[1-3]“.</p>
<p>And then goto /etc/event.d/ and change the ttyx files that you DONOT want. Edit them and comment lines starting with “start on runlevel”. So, in this case, you’ll comment the start line in tty4..tty6 files.</p>
<p>Rebooting shoud minimize the number of consoles for you. Worked for me!! Good luck, NOTE: Even though you’ve reduced the tty number, X is still on Alt-F7. Again, go ahead and reboot to make sure you didn’t break anything.</p></blockquote>
<p><a target="_blank" href="http://tuxtraining.com/2008/09/28/how-to-make-ubuntu-extremely-fast/" >more via tuxtraining</a></p>
<p>Also see our <a href="../2010/02/16/ubuntu-hacks-top-10-ubuntu-howtos-for-fasterbetter-ubuntuor-linux/">Top  10 list of Ubuntu Hacks.</a></p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2008/09/29/ubuntu-hack-how-to-make-ubuntu-run-super-fast/" >Ubuntu Hack &#8211; How to Make Ubuntu run Super Fast!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/tag/192-168-1-100/" title="192 168 1 100" rel="tag">192 168 1 100</a>, <a href="http://zedomax.com/blog/tag/boot-time/" title="boot time" rel="tag">boot time</a>, <a href="http://zedomax.com/blog/tag/broadcast/" title="broadcast" rel="tag">broadcast</a>, <a href="http://zedomax.com/blog/category/computer/" title="Computer" rel="tag">Computer</a>, <a href="http://zedomax.com/blog/category/misc/consumer-misc/" title="Consumer" rel="tag">Consumer</a>, <a href="http://zedomax.com/blog/tag/dhcp-server/" title="dhcp server" rel="tag">dhcp server</a>, <a href="http://zedomax.com/blog/category/diy/" title="DIY" rel="tag">DIY</a>, <a href="http://zedomax.com/blog/tag/dual-core-processor/" title="dual core processor" rel="tag">dual core processor</a>, <a href="http://zedomax.com/blog/category/technology/educational/" title="Educational" rel="tag">Educational</a>, <a href="http://zedomax.com/blog/category/entertainment/" title="Entertainment" rel="tag">Entertainment</a>, <a href="http://zedomax.com/blog/tag/etc-network/" title="etc network" rel="tag">etc network</a>, <a href="http://zedomax.com/blog/category/featured/featured-hacks/" title="Featured Hacks" rel="tag">Featured Hacks</a>, <a href="http://zedomax.com/blog/tag/firestarter/" title="firestarter" rel="tag">firestarter</a>, <a href="http://zedomax.com/blog/tag/firewall/" title="firewall" rel="tag">firewall</a>, <a href="http://zedomax.com/blog/category/gadgets/" title="Gadgets" rel="tag">Gadgets</a>, <a href="http://zedomax.com/blog/tag/grub/" title="grub" rel="tag">grub</a>, <a href="http://zedomax.com/blog/category/diy/hack/" title="Hack" rel="tag">Hack</a>, <a href="http://zedomax.com/blog/category/diy/howto/" title="HOWTO" rel="tag">HOWTO</a>, <a href="http://zedomax.com/blog/tag/iface/" title="iface" rel="tag">iface</a>, <a href="http://zedomax.com/blog/tag/iptables/" title="iptables" rel="tag">iptables</a>, <a href="http://zedomax.com/blog/tag/kernel/" title="kernel" rel="tag">kernel</a>, <a href="http://zedomax.com/blog/category/computer/linux-technology/" title="Linux" rel="tag">Linux</a>, <a href="http://zedomax.com/blog/tag/lst/" title="lst" rel="tag">lst</a>, <a href="http://zedomax.com/blog/category/misc/" title="Misc" rel="tag">Misc</a>, <a href="http://zedomax.com/blog/tag/network-interfaces/" title="network interfaces" rel="tag">network interfaces</a>, <a href="http://zedomax.com/blog/category/computer/operating-system/" title="Operating System" rel="tag">Operating System</a>, <a href="http://zedomax.com/blog/tag/shell/" title="shell" rel="tag">shell</a>, <a href="http://zedomax.com/blog/tag/static-address/" title="static address" rel="tag">static address</a>, <a href="http://zedomax.com/blog/tag/static-ip/" title="static ip" rel="tag">static ip</a>, <a href="http://zedomax.com/blog/tag/t-break/" title="t break" rel="tag">t break</a>, <a href="http://zedomax.com/blog/tag/ttys/" title="ttys" rel="tag">ttys</a>, <a href="http://zedomax.com/blog/category/computer/linux-technology/ubuntu/" title="Ubuntu" rel="tag">Ubuntu</a>, <a href="http://zedomax.com/blog/tag/unnecessary-services/" title="unnecessary services" rel="tag">unnecessary services</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2007/04/01/diy-linuxubuntu-how-to-set-up-a-custom-firewall-using-iptables/" title="DIY Linux/Ubuntu &#8211; How to set up a custom firewall using iptables (April 1, 2007)">DIY Linux/Ubuntu &#8211; How to set up a custom firewall using iptables</a> </li>
	<li><a href="http://zedomax.com/blog/2009/04/21/vhs-hack-how-to-make-a-vhs-usb-flash-drive/" title="VHS Hack &#8211; How to Make a VHS USB Flash Drive! (April 21, 2009)">VHS Hack &#8211; How to Make a VHS USB Flash Drive!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/11/03/ubuntu-hack-how-to-restore-grub-boot-loader-after-installing-windows/" title="Ubuntu Hack &#8211; How to Restore GRUB Boot Loader After Installing Windows! (November 3, 2009)">Ubuntu Hack &#8211; How to Restore GRUB Boot Loader After Installing Windows!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/11/test-your-website-to-see-its-sensored-by-great-firewall-of-china/" title="Test your website to see it&#8217;s sensored by great firewall of China! (March 11, 2007)">Test your website to see it&#8217;s sensored by great firewall of China!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/04/skateboard-goes-50mph-on-the-highway-in-germany/" title="Skateboard goes 50MPH+ on the Highway in Germany! (October 4, 2008)">Skateboard goes 50MPH+ on the Highway in Germany!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/10/moller-flying-car-the-autovolantor/" title="Moller Flying Car &#8211; The Autovolantor! (September 10, 2008)">Moller Flying Car &#8211; The Autovolantor!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/20/mechanical-hit-counter/" title="Mechanical Hit Counter (March 20, 2007)">Mechanical Hit Counter</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/25/linux-server-hack-how-to-limit-bandwidth-with-linux-tc-and-iproute2/" title="Linux Server Hack &#8211; How to Limit Bandwidth with Linux, TC, and iproute2! (September 25, 2008)">Linux Server Hack &#8211; How to Limit Bandwidth with Linux, TC, and iproute2!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/10/16/linux-diy-hack-how-to-scan-the-waves-with-your-tv-card/" title="Linux DIY Hack &#8211; HOW TO &#8211; Scan the &#8216;waves with your TV card (October 16, 2006)">Linux DIY Hack &#8211; HOW TO &#8211; Scan the &#8216;waves with your TV card</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/23/linux-boot-hack-how-to-password-protect-grub/" title="Linux Boot Hack &#8211; How to Password Protect GRUB! (February 23, 2009)">Linux Boot Hack &#8211; How to Password Protect GRUB!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/07/17/laptop-blog-roundup/" title="Laptop Blog Roundup! (July 17, 2009)">Laptop Blog Roundup!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/08/23/jerry-seinfeld-hired-by-microsoft-to-do-anti-apple-ads/" title="Jerry Seinfeld Hired by Microsoft to do Anti-Apple Ads! (August 23, 2008)">Jerry Seinfeld Hired by Microsoft to do Anti-Apple Ads!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/08/interview-with-inventor-of-linux-linus-torvalds/" title="Interview with Inventor of Linux, Linus Torvalds! (October 8, 2008)">Interview with Inventor of Linux, Linus Torvalds!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/20/intel-atom-16ghz-dual-core-processor-available-now/" title="Intel Atom 1.6GHz Dual-Core Processor Available now&#8230; (September 20, 2008)">Intel Atom 1.6GHz Dual-Core Processor Available now&#8230;</a> </li>
	<li><a href="http://zedomax.com/blog/2006/09/19/hack-first-look-at-linux-powered-dvrmedia-recorder/" title="Hack &#8211; First look at linux powered DVR/Media recorder (September 19, 2006)">Hack &#8211; First look at linux powered DVR/Media recorder</a> </li>
	<li><a href="http://zedomax.com/blog/2009/09/08/food-hack-how-to-crack-an-egg/" title="Food Hack &#8211; How to Crack an Egg! (September 8, 2009)">Food Hack &#8211; How to Crack an Egg!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/20/fireplacehdtv-combo/" title="Fireplace/HDTV Combo! (February 20, 2009)">Fireplace/HDTV Combo!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/07/eee-pc-hack-how-to-make-your-eee-pc-boot-in-just-5-seconds/" title="Eee PC Hack &#8211; How to Make your Eee PC Boot in just 5 seconds! (October 7, 2008)">Eee PC Hack &#8211; How to Make your Eee PC Boot in just 5 seconds!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/11/06/diy-server-hack-howto-fightstop-dosdenial-of-service-attacks-using-open-source-code-ddos-deflate/" title="DIY Server HACK &#8211; HOWTO fight/stop DoS(Denial of Service) Attacks using open source code (D)DoS-Deflate! (November 6, 2007)">DIY Server HACK &#8211; HOWTO fight/stop DoS(Denial of Service) Attacks using open source code (D)DoS-Deflate!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/12/03/diy-linux-dos-hack-howto-limit-your-the-max-number-of-tcp-connections-to-your-web-server/" title="DIY Linux DoS HACK &#8211; HOWTO Limit your the max number of TCP connections to your Web Server! (December 3, 2007)">DIY Linux DoS HACK &#8211; HOWTO Limit your the max number of TCP connections to your Web Server!</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2008/09/29/ubuntu-hack-how-to-make-ubuntu-run-super-fast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
