<?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>Jared Heinrichs &#187; Webmin</title>
	<atom:link href="http://jaredheinrichs.com/category/operating-system/ubuntu-linux/webmin/feed" rel="self" type="application/rss+xml" />
	<link>http://jaredheinrichs.com</link>
	<description>A &#34;How to&#34; Blog on Software and Technology</description>
	<lastBuildDate>Thu, 29 Jul 2010 04:20:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to setup and configure Webmin</title>
		<link>http://jaredheinrichs.com/how-to-setup-and-configure-webmin.html</link>
		<comments>http://jaredheinrichs.com/how-to-setup-and-configure-webmin.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 22:47:05 +0000</pubDate>
		<dc:creator>Jared Heinrichs</dc:creator>
				<category><![CDATA[Webmin]]></category>

		<guid isPermaLink="false">http://jaredheinrichs.com/how-to-setup-and-configure-webmin.html</guid>
		<description><![CDATA[Install Webmin Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more.&#160; Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely. Currently there is [...]]]></description>
			<content:encoded><![CDATA[<h3>Install Webmin</h3>
<p>Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more.&#160; Webmin removes the need to manually edit Unix configuration files like <strong>/etc/passwd</strong>, and lets you manage a system from the console or remotely. Currently there is no Webmin package in the Ubuntu repositories. This tutorial will explain how to Install Webmin in Ubuntu Intrepid Ibex</p>
<p>You can install webmin for your server web interface to configure apache2,mysql,FTp servers and many more.Now we will see how to install webmin in Ubuntu 8.10</p>
<h3>Preparing your system</h3>
<h4></h4>
<h4></h4>
<h4>Install pre-requisits</h4>
<p>First you need to install the following packages (This is a one line command)</p>
<pre class="csharpcode">sudo aptitude install perl libnet-ssleay-perl openssl libauthen-pam-perl </pre>
<pre class="csharpcode">libpam-runtime libio-pty-perl libmd5-perl</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<h4>Download Main Package</h4>
<p>Now download the latest webmin using the following command or from here:</p>
<pre class="csharpcode">wget <a href="http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.441_all.deb">http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.441_all.deb</a></pre>
<h4>Install Main Package</h4>
<p>Now we have webmin_1.441_all.deb package install this package using the following command:</p>
<pre class="csharpcode">sudo dpkg -i webmin_1.441_all.deb</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>This will complete the installation. Ubuntu in particular don’t allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges.</p>
<p>Now you need to open your web browser and enter the following </p>
<pre class="csharpcode"><a href="https://your-server-ip:10000/">https://your-server-ip:10000/</a></pre>
<p>Now you should see similar to the following Screen</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Webmin Login Screen" border="0" alt="Webmin Login Screen" src="http://jaredheinrichs.com/wp-content/uploads/2009/05/image9.png" width="358" height="197" /> </p>
<p>After login if you want to configure Apache,Mysql server you need to click on Servers on your lefthand side you should many servers are ready to configure<br />
  <br />This is very Easy to configure most of the servers and Enjoy your new Ubuntu Intrepid Ibex LAMP Server.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredheinrichs.com/how-to-setup-and-configure-webmin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
