<?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"
	>

<channel>
	<title>More Pieces</title>
	<atom:link href="http://www.morepieces.com/support/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.morepieces.com/support</link>
	<description>Support Articles</description>
	<pubDate>Sat, 21 Aug 2010 09:39:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>RIP Munga</title>
		<link>http://www.morepieces.com/support/?p=421</link>
		<comments>http://www.morepieces.com/support/?p=421#comments</comments>
		<pubDate>Sat, 21 Aug 2010 09:39:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=421</guid>
		<description><![CDATA[16:28 - August 20, 2010.
]]></description>
			<content:encoded><![CDATA[<p>16:28 - August 20, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=421</wfw:commentRss>
		</item>
		<item>
		<title>Change Ubuntu 9.10 Hostname</title>
		<link>http://www.morepieces.com/support/?p=419</link>
		<comments>http://www.morepieces.com/support/?p=419#comments</comments>
		<pubDate>Sat, 23 Jan 2010 15:10:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=419</guid>
		<description><![CDATA[To change the hostname from the command prompt, type:
sudo bash
Enter account password, then type:
/bin/hostname newhostname
]]></description>
			<content:encoded><![CDATA[<p>To change the hostname from the command prompt, type:</p>
<p>sudo bash</p>
<p>Enter account password, then type:</p>
<p>/bin/hostname newhostname</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=419</wfw:commentRss>
		</item>
		<item>
		<title>Configure Ubuntu Networking from command line</title>
		<link>http://www.morepieces.com/support/?p=402</link>
		<comments>http://www.morepieces.com/support/?p=402#comments</comments>
		<pubDate>Sat, 23 Jan 2010 15:07:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=402</guid>
		<description><![CDATA[After installing Ubuntu 9.10 - without the GUI (X11), I needed to configure the network settings - IP, DNS etc.
To configure network settings you need to edit the /etc/network/interfaces file.
From a command prompt, type:
sudo bash
Enter the account password.
Edit the /etc/network/interfaces file. Type:
vi /etc/network/interfaces
A normal DHCP setting will look like:
# The primary network interface - use DHCP to [...]]]></description>
			<content:encoded><![CDATA[<p>After installing Ubuntu 9.10 - without the GUI (X11), I needed to configure the network settings - IP, DNS etc.</p>
<p>To configure network settings you need to edit the /etc/network/interfaces file.</p>
<p>From a command prompt, type:</p>
<p>sudo bash</p>
<p>Enter the account password.</p>
<p>Edit the /etc/network/interfaces file. Type:</p>
<p>vi /etc/network/interfaces</p>
<p>A normal DHCP setting will look like:</p>
<p># The primary network interface - use DHCP to find our address<br />
auto eth0<br />
iface eth0 inet dhcp</p>
<p>To change to a static address, re-configure the file:</p>
<p># The primary network interface</p>
<p>auto eth0<br />
iface eth0 inet static<br />
address 192.168.3.90<br />
gateway 192.168.3.1<br />
netmask 255.255.255.0<br />
network 192.168.3.0<br />
broadcast 192.168.3.255</p>
<p>After entering all the details you need to restart networking services using the following command:</p>
<p>/etc/init.d/networking restart</p>
<p>To set up DNS:</p>
<p>Add the hostname and IP addresses to the file /etc/hosts</p>
<p>To save the file, hit ESC, then type:</p>
<p>:wq!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=402</wfw:commentRss>
		</item>
		<item>
		<title>Join Ubuntu 9.10 Server to Windows Domain</title>
		<link>http://www.morepieces.com/support/?p=413</link>
		<comments>http://www.morepieces.com/support/?p=413#comments</comments>
		<pubDate>Sat, 23 Jan 2010 11:04:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=413</guid>
		<description><![CDATA[Likewise Open simplifies the configuration needed to authenticate a Linux machine to an Active Directory domain. The package is based on winbind and integrates Ubuntu authentication into an existing Windows network.
Tested on: Ubuntu 9.10 / 9.04 - both installs did not run desktop GUI - (X11).
NB. The below commands should be run as root or [...]]]></description>
			<content:encoded><![CDATA[<p>Likewise Open simplifies the configuration needed to authenticate a Linux machine to an Active Directory domain. The package is based on winbind and integrates Ubuntu authentication into an existing Windows network.</p>
<p>Tested on: Ubuntu 9.10 / 9.04 - both installs did not run desktop GUI - (X11).</p>
<p>NB. The below commands should be run as root or with sudo commands. To get root, type:</p>
<p>sudo bash</p>
<p>Then enter the root account password.</p>
<p>To install the package, type:</p>
<p>apt-get install likewise-open5</p>
<p>After the install has completed, it&#8217;s time to join the domain. To successfully join, the following is required:</p>
<p>1. Access to an AD user with rights to join the domain.</p>
<p>2. The Fully Qualified Domain Name (FQDN) of the domain you want to join.</p>
<p>3. DNS must be set up correctly on the domain.</p>
<p>Type the following command to join the domain:</p>
<p>domainjoin-cli join example.com Administrator</p>
<p>Where example.com is your domain name and Administrator is the user name of the account with the rights to join the domain.</p>
<p>After joining the domain, you must reboot before trying to authenticate with a domain user. Type:</p>
<p>reboot</p>
<p>** If you receive the error:</p>
<p>The configuration stage &#8216;open ports to DC&#8217; cannot be completed automatically.<br />
Please manually perform the following steps and rerun the domain join:</p>
<p>Some required ports on the domain controller could not be contacted. Please<br />
update your firewall settings to ensure that the following ports are open to<br />
dc.domain.com:<br />
    88  UDP<br />
    389 UDP<br />
    464 UDP<br />
    123 UDP</p>
<p>Make sure the Windows Time service is running on the domain controller.</p>
<p>After successfully joining to the Active Directory domain you can authenticate using any valid AD user. To login you will need to enter the user name as &#8216;domain\username&#8217;. For example to SSH to a server joined to the domain enter:</p>
<p>ssh &#8216;example\username&#8217;@hostname<br />
To leave the domain, type:<br />
domainjoin-cli leave</p>
<p>For more info on this package, search - Likewise Open. The homepage has the changelog and<br />
more up to date instructions and troubleshooting tips.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=413</wfw:commentRss>
		</item>
		<item>
		<title>Exchange 2003 SP versions</title>
		<link>http://www.morepieces.com/support/?p=407</link>
		<comments>http://www.morepieces.com/support/?p=407#comments</comments>
		<pubDate>Sat, 23 Jan 2010 10:08:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=407</guid>
		<description><![CDATA[6.5.6944 : Microsoft Exchange Server 2003 RTM - Released October 2003
6.5.7226 : Microsoft Exchange Server 2003 SP1  - Released May 2004
6.5.7638 : Microsoft Exchange Server 2003 SP2  - Released October 2005
]]></description>
			<content:encoded><![CDATA[<p>6.5.6944 : Microsoft Exchange Server 2003 RTM - Released October 2003<br />
6.5.7226 : Microsoft Exchange Server 2003 SP1  - Released May 2004<br />
6.5.7638 : Microsoft Exchange Server 2003 SP2  - Released October 2005</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=407</wfw:commentRss>
		</item>
		<item>
		<title>Logoff SSH session with Putty</title>
		<link>http://www.morepieces.com/support/?p=405</link>
		<comments>http://www.morepieces.com/support/?p=405#comments</comments>
		<pubDate>Sat, 23 Jan 2010 10:01:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ESX]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=405</guid>
		<description><![CDATA[To logoff a SSH session in Putty hit Ctrl + d
]]></description>
			<content:encoded><![CDATA[<p>To logoff a SSH session in Putty hit Ctrl + d</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=405</wfw:commentRss>
		</item>
		<item>
		<title>ESXi 3.5 Shutdown commands</title>
		<link>http://www.morepieces.com/support/?p=399</link>
		<comments>http://www.morepieces.com/support/?p=399#comments</comments>
		<pubDate>Sat, 23 Jan 2010 08:17:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ESX]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=399</guid>
		<description><![CDATA[If you don&#8217;t have console access to your ESXi host but have SSH connectivity, use the following commands to restart and shutdown the host.
To shutdown type :
poweroff
The reboot command usage is as follows :
Usage: reboot [-d&#60;delay&#62;] [-n&#60;nosync&#62;] [-f&#60;force&#62;]
Options:
 -d delay interval for rebooting
 -n no call to sync()
 -f force reboot(don&#8217;t go through init)
EG. reboot -d 0 -f (force reboot now [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t have console access to your ESXi host but have SSH connectivity, use the following commands to restart and shutdown the host.</p>
<p>To shutdown type :</p>
<p>poweroff</p>
<p>The reboot command usage is as follows :<br />
Usage: reboot [-d&lt;delay&gt;] [-n&lt;nosync&gt;] [-f&lt;force&gt;]</p>
<p>Options:</p>
<p> -d delay interval for rebooting<br />
 -n no call to sync()<br />
 -f force reboot(don&#8217;t go through init)</p>
<p>EG. reboot -d 0 -f (force reboot now - no delay)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=399</wfw:commentRss>
		</item>
		<item>
		<title>Enable SSH on ESXi 3.5 free edition</title>
		<link>http://www.morepieces.com/support/?p=397</link>
		<comments>http://www.morepieces.com/support/?p=397#comments</comments>
		<pubDate>Sat, 23 Jan 2010 08:12:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ESX]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=397</guid>
		<description><![CDATA[By default, SSH communications are disabled on ESXi. It can be easily enabled by accessing the service console - which is hidden on the free edition.
1. From the server&#8217;s console - Grey and Yellow screen, hit ALT + F1 to access the console.
2. Type: unsupported
You will not be able to see the input of this command. [...]]]></description>
			<content:encoded><![CDATA[<p>By default, SSH communications are disabled on ESXi. It can be easily enabled by accessing the service console - which is hidden on the free edition.</p>
<p>1. From the server&#8217;s console - Grey and Yellow screen, hit ALT + F1 to access the console.</p>
<p>2. Type: unsupported</p>
<p>You will not be able to see the input of this command. If you input the command correctly, you will see the Tech Support Mode warning and the password prompt.</p>
<p>3. Enter the root password</p>
<p>You won&#8217;t be able to see the input of this command either. If the password is entered correctly you will be dropped to the command line prompt: ~ #</p>
<p>4. The inetd.conf file has to be modified to enable SSH. To edit the file type:</p>
<p>vi /etc/inetd.conf</p>
<p>Use the down arrow key to scroll through the file. Look for the line that starts with “#ssh”.</p>
<p>5. Remove the “#” by pressing the “x” key when the cursor is on the character - #.</p>
<p>6. Hit ESC and type in :wq! to save the file and exit vi.</p>
<p> If a mistake is made, press ESC and type in :q! to quit vi without saving the file.</p>
<p>7. Now that SSH has been enabled, the management services have to be restarted. To do this type :</p>
<p>/sbin/services.sh restart</p>
<p>8. Hit ALT + F2 to return to the home screen - Grey and Yellow Display screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=397</wfw:commentRss>
		</item>
		<item>
		<title>Enable SSH on Ubuntu Server 9.10</title>
		<link>http://www.morepieces.com/support/?p=395</link>
		<comments>http://www.morepieces.com/support/?p=395#comments</comments>
		<pubDate>Sat, 23 Jan 2010 06:37:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=395</guid>
		<description><![CDATA[Many Linux admin tasks can be carried out without access to the server console by installing a package called openssh-server. Programs such as Putty can be used to connect to port 22 (SSH) after installing this package.
NB. this has been tested on version 9.04 &#38; 9.10 - without GUI (X11).
If OpenSSHServer wasn&#8217;t installed when the system [...]]]></description>
			<content:encoded><![CDATA[<p>Many Linux admin tasks can be carried out without access to the server console by installing a package called openssh-server. Programs such as Putty can be used to connect to port 22 (SSH) after installing this package.</p>
<p>NB. this has been tested on version 9.04 &amp; 9.10 - without GUI (X11).</p>
<p>If OpenSSHServer wasn&#8217;t installed when the system was built, type the following commands to install the default package:</p>
<p>sudo bash</p>
<p>type account password.</p>
<p>Then type:</p>
<p>apt-get update</p>
<p>apt-get install openssh-server</p>
<p>Now open Putty, enter the server name or IP address and choose port 22, with SSH as the connection type.</p>
<p> A security alert will be raised by Putty the first time you access the system by IP or Hostname, choose to trust the host or not&#8230;</p>
<p>Log in with a valid username and password to continue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=395</wfw:commentRss>
		</item>
		<item>
		<title>SMTP Telnet test commands</title>
		<link>http://www.morepieces.com/support/?p=393</link>
		<comments>http://www.morepieces.com/support/?p=393#comments</comments>
		<pubDate>Sat, 23 Jan 2010 06:17:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.morepieces.com/support/?p=393</guid>
		<description><![CDATA[From time to time you need to troubleshoot your mail server. A telnet test can help to test connectivity to smtp port 25.
from a command prompt in windows, type:
telnet mailservermail 25 (for internal tests - EG. telnet exchangeserver 25) or for an external test :
telnet mail.mydomainname.com 25
Then type the following commands to send a mail:
helo [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time you need to troubleshoot your mail server. A telnet test can help to test connectivity to smtp port 25.</p>
<p>from a command prompt in windows, type:</p>
<p>telnet mailservermail 25 (for internal tests - EG. telnet exchangeserver 25) or for an external test :</p>
<p>telnet mail.mydomainname.com 25</p>
<p>Then type the following commands to send a mail:</p>
<p>helo domain name (EG. helo mydomainname)</p>
<p>mail from: email@address.com</p>
<p>rcpt to: someone@address.com</p>
<p>data</p>
<p>Subject: test message</p>
<p>When finished, hit ENTER twice, then type:</p>
<p>.</p>
<p>quit</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morepieces.com/support/?feed=rss2&amp;p=393</wfw:commentRss>
		</item>
	</channel>
</rss>
