<?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: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-5732535451579435129</id><updated>2011-12-22T21:46:11.253-08:00</updated><category term='Virtual Box'/><category term='Vista'/><category term='Nautilus'/><category term='Ubuntu'/><category term='Webmin'/><category term='admin'/><category term='Ubuntu Server'/><title type='text'>The Small Box Admin</title><subtitle type='html'>System Administration for the Small Server Box.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-2713917107232127977</id><published>2011-07-15T10:04:00.000-07:00</published><updated>2011-07-15T10:08:32.036-07:00</updated><title type='text'>Carey Holzman Reviews UniDupDock</title><content type='html'>Carey Holzman of Tech-Vets reviews the StarTech UniDupDoc hard drive duplicator.&lt;br /&gt;&lt;br /&gt;&lt;iframe width="560" height="349" src="http://www.youtube.com/embed/QYltDC9SOb0?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-2713917107232127977?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/2713917107232127977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=2713917107232127977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2713917107232127977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2713917107232127977'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2011/07/carey-holzman-reviews-unidupdock.html' title='Carey Holzman Reviews UniDupDock'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://img.youtube.com/vi/QYltDC9SOb0/default.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-549159467062453920</id><published>2009-11-29T20:30:00.000-08:00</published><updated>2010-09-01T21:23:36.203-07:00</updated><title type='text'>Junkless Software Installs From Source</title><content type='html'>On a recent podcast episode a listener wanted to know if there is "junk" in .rar and .tar files. I don't deal with .rar files very often, and usually .tar files are the normal way to distribute programs in source format for compiling and installing.&lt;br /&gt;&lt;br /&gt;What are .rar and .tar files? RAR [1] is a proprietary archive and compression format. I don't believe much software for Linux is distributed in RAR format. If RAR is used to distribute files, there probably are not many non-essential files. TAR [2] is a program that archives files and Linux software is often distributed in this format. TAR is also used for backing up systems and other backup programs often use tar [3]. One note, TAR does not compress archives by default, but can compress and uncompress archives with options to the TAR command.&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;Back to the question of "junk" in TAR files. Usually the steps to compile and install software from source, distributed in a TAR archive, are:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Extract the archive - &lt;span style="font-family: courier new;"&gt;tar -zxf &lt;/span&gt;&lt;span style="font-family: courier new; font-style: italic;"&gt;FILENAME&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Run a configure script -&lt;span style="font-family: courier new;"&gt; ./configure&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Compile the source code -&lt;span style="font-family: courier new;"&gt; make&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Install the compiled program - &lt;span style="font-family: courier new;"&gt;make install&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;Once the software is installed the TAR archive may no longer be needed and can be deleted. If the author of the software created a rule to uninstall the software ($ sudo make uninstall) then the unarchived source may need to be kept. There is a better way to installing and managing source installed software.&lt;br /&gt;&lt;br /&gt;Checkinstall [4] solves the problem by creating a software package that can be managed with your systems package manager. From the checkinstall web site:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new; font-style: italic;"&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;Installs a compiled program from the program's source directory using "make install" or any other command supplied on checkinstall's command line. checkinstall will create a Slackware, RPM or Debian compatible package and install it using your distribution's standard package administration utilities.&lt;/span&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Here are the steps to install a program distributed by source using checkinstall on a Ubuntu server. The example program is HTMLDoc [5], a program that converts HTML files to indexed HTML, Postscript or PDF.&lt;br /&gt;&lt;br /&gt;First the gcc compiler and other utilities as well as checkinstall must be installed:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ sudo apt-get install build-essential&lt;br /&gt;$ sudo apt-get install checkinstall&lt;/span&gt;&lt;br /&gt;The software must be downloaded, unarchived and configured:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ tar -zxf htmldoc-1.8.27-source.tar.gz &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ cd htmldoc-1.8.27/ &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ ./configure&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The options to the tar command are, -z uncompress the gzipped archive, -x extract and -f the identified file. The -z option must be used if the archive is compressed with gzip, identified by the .gz extension.&lt;br /&gt;&lt;br /&gt;Instead of using "$ sudo make install", the checkinstall command is used (a lot of output has been omitted):&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ sudo checkinstall &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;[sudo] password for srvadmin: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;checkinstall 1.6.1, Copyright 2002 Felipe Eduardo Sanchez Diaz Duran &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;This software is released under the GNU GPL. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;The package documentation directory ./doc-pak does not exist. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Should I create a default set of package docs? [y]: &lt;span style="font-weight: bold;"&gt;y &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;Preparing package documentation...OK &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;Please write a description for the package. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;End your description with an empty line or EOF. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&amp;gt;&amp;gt; &lt;span style="font-weight: bold;"&gt;htmldoc_1.8.27 &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;span style="font-family: courier new; font-weight: bold;"&gt;&lt;ctrl&gt;[CTRL]+D&lt;/ctrl&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;***************************************** &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;**** Debian package creation selected *** &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;***************************************** &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;This package will be built according to these values: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;0 - Maintainer: [ root@karmic ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;1 - Summary: [ htmldoc_1.8.27 ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;2 - Name: [ htmldoc ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;3 - Version: [ 1.8.27 ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;4 - Release: [ 1 ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;5 - License: [ GPL ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;6 - Group: [ checkinstall ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;7 - Architecture: [ i386 ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;8 - Source location: [ htmldoc-1.8.27 ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;9 - Alternate source location: [ ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;10 - Requires: [ ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;11 - Provides: [ htmldoc ] &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Enter a number to change any of them or press ENTER to continue: &lt;/span&gt;&lt;span style="font-family: courier new; font-weight: bold;"&gt;&lt;enter&gt;&lt;/enter&gt;&lt;/span&gt;&lt;span style="font-family: courier new; font-weight: bold;"&gt;[ENTER]&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;********************************************************************** &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;Done. The new package has been installed and saved to &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;/home/srvadmin/htmldoc-1.8.27/htmldoc_1.8.27-1_i386.deb &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;You can remove it from your system anytime using: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;dpkg -r htmldoc &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;********************************************************************** &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;span style="font-family: courier new;"&gt;$&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Note that the description is entered and the defaults after that are used. Now the package is installed and .deb package (htmldoc_1.8.27-1_i386.deb) is created. The package can be saved and the rest of the source files and distribution archive can be deleted. The package can also be distributed and installed on other machines:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ sudo dpkg -i htmldoc_1.8.27-1_i386.deb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Verification of the install can be done with the dpkg command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ dpkg -l htmldoc &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Desired=Unknown/Install/Remove/Purge/Hold &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;||/ Name Version Description &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;+++-==============-==============-============================================ &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;ii htmldoc 1.8.27-1 htmldoc_1.8.27&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The package can also be removed with the dpkg command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;$ sudo dpkg -r htmldoc&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Additionally documentation for the installed software is saved in the /usr/share/doc/htmldoc directory.&lt;br /&gt;&lt;br /&gt;[1]&lt;a href="http://en.wikipedia.org/wiki/RAR"&gt; http://en.wikipedia.org/wiki/RAR&lt;/a&gt;&lt;br /&gt;[2]&lt;a href="http://www.gnu.org/software/tar/"&gt; http://www.gnu.org/software/tar/&lt;/a&gt;&lt;br /&gt;[3]&lt;a href="http://www.freesoftwaremagazine.com/articles/backup_your_workstation_with_backup_manager"&gt; http://www.freesoftwaremagazine.com/articles/backup_your_workstation_with_backup_manager&lt;/a&gt;&lt;br /&gt;[4]&lt;a href="http://www.asic-linux.com.mx/~izto/checkinstall/index.php"&gt; http://www.asic-linux.com.mx/~izto/checkinstall/index.php&lt;/a&gt;&lt;br /&gt;[5] &lt;a href="http://www.htmldoc.org/"&gt;http://www.htmldoc.org/&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-549159467062453920?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/549159467062453920/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=549159467062453920' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/549159467062453920'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/549159467062453920'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2009/11/junkless-software-installs-from-source.html' title='Junkless Software Installs From Source'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-6822524843859840820</id><published>2009-01-31T14:53:00.001-08:00</published><updated>2010-09-01T21:26:17.770-07:00</updated><title type='text'>Setting Up a SME Server Test Environment with VirtualBox on Vista</title><content type='html'>SME Server (&lt;a href="http://www.contribs.org/"&gt;http://www.contribs.org/&lt;/a&gt;) is a Linux distribution designed for the office environment, similar to Microsoft Small Business Server or the now defunct Linux based NetMax Server. SME Server is managed through a web interface and provides file and print sharing, E-mail server and web client, Firewall, Directory Services, Web hosting and other services. It is also extensible via Contribs. Contribs are software packages that are designed to add extra functionality to SME Server.&lt;br /&gt;&lt;br /&gt;This document will explain how to setup a test network environment on Vista using Virtual Box with SME Server and Windows XP Professional guests. I chose Windows XP Professional, because that is the environment I have found that most business or educational intitutions are using. This document already assumes that &lt;a href="http://www.virtualbox.org/"&gt;VirtualBox&lt;/a&gt; is installed and working and that the Windows XP Professioanl guest is installed in VirtualBox.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;strong&gt;Setting Up the SME Server Guest&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Start VirtualBox and the VirtualBox application displays, as in the following figure.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYTcZySY0QI/AAAAAAAAAGo/sPikhKf8QEs/s1600-h/sme01.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297601397248282882" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYTcZySY0QI/AAAAAAAAAGo/sPikhKf8QEs/s320/sme01.JPG" style="display: block; height: 238px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;Start the &lt;em&gt;Virtual Machine Wizard&lt;/em&gt; by clicking on the &lt;em&gt;New&lt;/em&gt; button above the left hand pane. At the Welcome dialog click on the &lt;em&gt;Next&lt;/em&gt; button. In the &lt;em&gt;VM Name and OS Type&lt;/em&gt; dialog, enter a name for this virtual machine and select &lt;em&gt;Linux&lt;/em&gt; as the operating system and &lt;em&gt;Linux 2.6&lt;/em&gt; as the Version then click &lt;em&gt;Next&lt;/em&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYTdvPHwJNI/AAAAAAAAAGw/V_9KDsC49Nw/s1600-h/sme03.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297602865277183186" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYTdvPHwJNI/AAAAAAAAAGw/V_9KDsC49Nw/s320/sme03.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The Memory dialog is where the amount of memory is allocated to the guest operating system. The amount set here depends on the amount of memory on the host machine. A good amount to allocate to SME Server is 512Mb and to Windows XP is 1Gb, if your host machine allows. After setting the memory amount click the &lt;em&gt;Next&lt;/em&gt; button.&lt;br /&gt;&lt;br /&gt;The&lt;em&gt; Virtual Hard Disk&lt;/em&gt; dialog displays next. To create a new virtual disk for this guest operating system, click on the &lt;em&gt;New...&lt;/em&gt; button. The &lt;em&gt;Create New Virtual Disk Wizard&lt;/em&gt; now displays. At the welcome screen click on &lt;em&gt;Next.&lt;/em&gt; In the &lt;em&gt;Hard Disk Storage Type&lt;/em&gt; select the &lt;em&gt;Dynamically expanding storage&lt;/em&gt; radio button, under the &lt;em&gt;Storage Type &lt;/em&gt;and click &lt;em&gt;Next. &lt;/em&gt;This choice will allocate disk space for the guest, but will expand to the maximum specified size as needed. This choice is also faster to create than the &lt;em&gt;Fixed-size storage. &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYTgQfS8VqI/AAAAAAAAAG4/oZ2JeOLJSAU/s1600-h/sme07.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297605635578025634" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYTgQfS8VqI/AAAAAAAAAG4/oZ2JeOLJSAU/s320/sme07.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next step is to specify the size of the virtual disk. The size to set here is a best guess estimate of the operating system and any Contribs that will be installed. This will also depend on the disk size of the host operating system and the amount that can be allocated. If there is sufficient space 20Gb is a good starting point for the test environment.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYTmsAnl0_I/AAAAAAAAAHA/Jj7xPFPBEeY/s1600-h/sme08.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297612705449235442" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYTmsAnl0_I/AAAAAAAAAHA/Jj7xPFPBEeY/s320/sme08.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After specifying the size, click on the &lt;em&gt;Next &lt;/em&gt;button and then the &lt;em&gt;Finish&lt;/em&gt; button in the &lt;em&gt;Summary &lt;/em&gt;dialog. Returning to the &lt;em&gt;Virtual Hard Disk&lt;/em&gt; dialog, click &lt;em&gt;Next&lt;/em&gt; then the &lt;em&gt;Finish&lt;/em&gt; button in the resulting &lt;em&gt;Summary&lt;/em&gt;. Now the virtual machine has been created and displays in the left pane of VirtualBox.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYToBeecNqI/AAAAAAAAAHI/Ah7V72_I3vo/s1600-h/sme12.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297614173752800930" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYToBeecNqI/AAAAAAAAAHI/Ah7V72_I3vo/s320/sme12.JPG" style="display: block; height: 278px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next step is to specify the CDROM, or in this case, the ISO file to boot from. A bootable CD is not required, VirtualBox can boot directly from the downloaded ISO file. Using the ISO file to install is much faster than using a CDROM drive. Click on either the yellow settings icon above the left pane or the CD/DVD-ROM text in the right hand pane to display the CDROM settings. Click the check box &lt;em&gt;Mount CD/DVD Drive&lt;/em&gt; to put a check mark. Then select the radio button &lt;em&gt;ISO Image File, &lt;/em&gt;then the yellow and green folder icon.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYUnCveDRKI/AAAAAAAAAHQ/KYkufjhVkms/s1600-h/sme13.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297683464726987938" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYUnCveDRKI/AAAAAAAAAHQ/KYkufjhVkms/s320/sme13.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In the &lt;em&gt;Virtual Media Manager&lt;/em&gt; dialog click on the &lt;em&gt;Add&lt;/em&gt; icon and navigate to the SME Server ISO image and select it. After selecting the ISO image click the &lt;em&gt;Select&lt;/em&gt; button. This returns back to the &lt;em&gt;SME Server - Settings.&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYUoEfWTOCI/AAAAAAAAAHY/rgefG-U1TOE/s1600-h/sme15.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297684594270877730" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYUoEfWTOCI/AAAAAAAAAHY/rgefG-U1TOE/s320/sme15.JPG" style="display: block; height: 250px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Test Environment Network&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;A little explanation of the network setup is needed here. VirtualBox has several ways to setup networking, the two we are concerned about here is a &lt;a href="http://en.wikipedia.org/wiki/Network_address_translation"&gt;NAT&lt;/a&gt; (Network Address Translation) network and an internal network. NAT acts as a normal NAT network does. A system sits behind a routing device, which could be a router or firewall, using the IP of the routing device to communicate with the outside world. The second type of network is an internal network. The internal network allows guest operating systems to communicate with each other, but is isolated from the outside world.&lt;br /&gt;&lt;br /&gt;SME Server can act as a routing device, and this will be simulated in our test environment as well as letting our test environment access the outside world. By default the eth0 device (the first network interface) will face the internal network and the eth1 device will face the outside world or Internet. To setup the network click on the &lt;em&gt;Network&lt;/em&gt; settings in the left pane of the &lt;em&gt;SME Server - Settings dialog.&lt;/em&gt; In tab &lt;em&gt;Adapter 1&lt;/em&gt; verify the &lt;em&gt;Enable Network Adapter&lt;/em&gt; check box has a check. In the &lt;em&gt;Adapter Type&lt;/em&gt; drop down, select &lt;em&gt;Intel PRO/1000 MT Desktop. &lt;/em&gt;In the &lt;em&gt;Attached to&lt;/em&gt; drop down, select &lt;em&gt;Internal Network.&lt;/em&gt; In the &lt;em&gt;Network Name &lt;/em&gt;text box, enter a name for the internal network, e.g. &lt;em&gt;TestLAN&lt;/em&gt;. The name entered here will also be used with the Windows XP Pro settings, so the SME Server and XP workstation are on the same internal network.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYU6inooDZI/AAAAAAAAAHg/vzpovOXIlFg/s1600-h/sme16.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297704903100599698" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYU6inooDZI/AAAAAAAAAHg/vzpovOXIlFg/s320/sme16.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Select the &lt;em&gt;Adapter 2&lt;/em&gt; tab and once again from the drop down box, select the &lt;em&gt;Intel PRO/1000 MT Desktop&lt;/em&gt; as the &lt;em&gt;Adapter Type.&lt;/em&gt; In the &lt;em&gt;Attached To&lt;/em&gt; dropdown box, select &lt;em&gt;NAT.&lt;/em&gt; Now the second network adapter is setup as the outside world/Internet/insecure side.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYU8B8mvs6I/AAAAAAAAAHo/Ej19dOqTt1s/s1600-h/sme17.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297706540817429410" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYU8B8mvs6I/AAAAAAAAAHo/Ej19dOqTt1s/s320/sme17.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Click on &lt;em&gt;OK&lt;/em&gt; to complete the configuration and settings for the SME Server guest operating sysytem. One last step before the installation begins is to set the boot order of the virtual devices. In the settings for the guest, select &lt;em&gt;General&lt;/em&gt; and then the &lt;em&gt;Advanced&lt;/em&gt; tab. Set the boot order by selecting the device and the up or down arrows. We are now able to install SME Server.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYVIUt4J6DI/AAAAAAAAAIY/WyJlMsfMFTU/s1600-h/sme29.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297720057420965938" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYVIUt4J6DI/AAAAAAAAAIY/WyJlMsfMFTU/s320/sme29.JPG" style="display: block; height: 286px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Installing SME Server&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;To begin the installation, click on the &lt;em&gt;Start&lt;/em&gt; icon, the green arrow in VirtualBox. A BIOS type boot screen appears. You have the option of pressing the F12 key to select the boot device, since no operating system is installed the mounted ISO will boot&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYVAOVJZhjI/AAAAAAAAAHw/Id6xsTx5t0I/s1600-h/sme20.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297711151610168882" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYVAOVJZhjI/AAAAAAAAAHw/Id6xsTx5t0I/s320/sme20.JPG" style="display: block; height: 273px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;At the SME Server screen boot prompt, press the &lt;em&gt;ENTER&lt;/em&gt; &lt;em&gt;&lt;enter&gt;&lt;/enter&gt;&lt;/em&gt;key to begin the installation. The resulting screen will allow you to test the CD media. Press the &lt;em&gt;TAB&lt;/em&gt; to select &lt;em&gt;Skip&lt;/em&gt; and press the &lt;em&gt;ENTER&lt;/em&gt; &lt;em&gt;&lt;enter&gt;&lt;/enter&gt;&lt;/em&gt;key to advance to the next screen. The language selection screen appears, select &lt;em&gt;English&lt;/em&gt; and advance &lt;enter&gt;to the next screen. In the &lt;em&gt;Keyboard Selection&lt;/em&gt; select &lt;em&gt;us&lt;/em&gt; and advance to the next screen. Formatting takes place next, press &lt;em&gt;TAB &lt;/em&gt;to select &lt;em&gt;Yes&lt;/em&gt; and advance. In the &lt;em&gt;Time Zone&lt;/em&gt; &lt;em&gt;Selection&lt;/em&gt; screen, select your time zone and advance. Now the installation begins by formatting the virtual disk and installing the SME Server packages. After completing the Complete screen appers, press &lt;em&gt;ENTER&lt;/em&gt; to reboot the virtual machine.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYVEun92HoI/AAAAAAAAAIA/VQFT65CD-AM/s1600-h/sme24.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297716104464309890" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYVEun92HoI/AAAAAAAAAIA/VQFT65CD-AM/s320/sme24.JPG" style="display: block; height: 273px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYVEuiJ5qXI/AAAAAAAAAII/qQe2ZGfg_Qk/s1600-h/sme26.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297716102904260978" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYVEuiJ5qXI/AAAAAAAAAII/qQe2ZGfg_Qk/s320/sme26.JPG" style="display: block; height: 273px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYVEu0rOzzI/AAAAAAAAAIQ/xUVD30b88-8/s1600-h/sme27.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297716107875897138" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYVEu0rOzzI/AAAAAAAAAIQ/xUVD30b88-8/s320/sme27.JPG" style="display: block; height: 273px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYVD2rHjvyI/AAAAAAAAAH4/O12NZduRWG0/s1600-h/sme28.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5297715143237680930" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYVD2rHjvyI/AAAAAAAAAH4/O12NZduRWG0/s320/sme28.JPG" style="display: block; height: 273px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Completing the SME Server Installation&lt;/strong&gt;&lt;/enter&gt;&lt;br /&gt;&lt;br /&gt;After the reboot, configuration of the SME Server begins. The first screen asks if you want to restore from backup. Since this is our first installation, select &lt;span style="font-style: italic;"&gt;No&lt;/span&gt;. In the next screen the administrator password is set. As a best practice, use a strong password with upper and lower case letters, numbers and special characters. Strong passwords is enabled by default and the installation will prompt you if the password isn't strong enough. After setting the password the installation prompts for verification.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdFPPoS2PI/AAAAAAAAAIg/T4_EMYfplB8/s1600-h/sme31.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298279614820571378" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdFPPoS2PI/AAAAAAAAAIg/T4_EMYfplB8/s320/sme31.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In the next installation screen, enter the primary domain name. Since this is a test environment and the server will not provide services to or from the internet, the &lt;span style="font-style: italic;"&gt;local&lt;/span&gt; top level domain is a good choice. In this example &lt;span style="font-style: italic;"&gt;testlan.local &lt;/span&gt;is used.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdGDQQ2ByI/AAAAAAAAAIo/NZ53ByvQE9I/s1600-h/sme33.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298280508343846690" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdGDQQ2ByI/AAAAAAAAAIo/NZ53ByvQE9I/s320/sme33.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Following the domain name is the server name, again use something logical for the test domain, in this example &lt;span style="font-style: italic;"&gt;serv01.&lt;/span&gt; After the server name is the IP address of the server, use a non-internet routable IP, e.g. &lt;span style="font-style: italic;"&gt;192.168.1.1&lt;/span&gt;. After the IP address is set, the netmask value is prompted for, the default should be sufficient.&lt;br /&gt;&lt;br /&gt;The &lt;span style="font-style: italic;"&gt;Operation Mode&lt;/span&gt; of the SME Server is set next. SME Server can provide gateway services and internet services, or it can act in a standalone manner with or without gateway services. In this test environment we are testing both Internet services and gateway services, option 1, Server and Gateway is selected.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdI_hn1JnI/AAAAAAAAAIw/lHFlKAwUVi0/s1600-h/sme37.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298283742819067506" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdI_hn1JnI/AAAAAAAAAIw/lHFlKAwUVi0/s320/sme37.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next screen asks if the servers Internet facing network interface is a dedicated always on connection or a dial-up connection. Select option 1, &lt;span style="font-style: italic;"&gt;Server and Gateway - dedicated&lt;/span&gt; and proceed to the next screen. The Ethernet card assignment screen prompts to assign each network interface. Since the virtual machine was set earlier to have eth0 face the internal network and eth1 face the Internet, option &lt;span style="font-style: italic;"&gt;normal &lt;/span&gt;should be selected here.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdV5amemOI/AAAAAAAAAI4/zSIztK94HWg/s1600-h/sme39.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298297931506292962" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdV5amemOI/AAAAAAAAAI4/zSIztK94HWg/s320/sme39.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After setting the ethernet card assignment, the internet facing network card is configured. Since VirtualBox will assign an internal IP address through DHCP, the &lt;span style="font-style: italic;"&gt;Use DHCP&lt;/span&gt; option 2 should be selected. VirtualBox sets the virtual machine to use NAT and the virtual machine is "firewalled" from being accessed, but the guest can access internet services. The SME Server as configured will act as a gateway in which the Windows XP Pro client can also access external services.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdW-poMz4I/AAAAAAAAAJA/WkFA1Quc2MY/s1600-h/sme40.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298299120951021442" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdW-poMz4I/AAAAAAAAAJA/WkFA1Quc2MY/s320/sme40.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next screen prompts for use of Dynamic DNS Service. Since we are in a test environment, Dynamic DNS is not required. Select option 1, not to use Dynamic DNS. The next three screens set up the DHCP service that SME Server will be providing on the internal network side. Enable the DHCP service and set the beginning and ending IP address that the DHCP server will be assigning. Skip the &lt;span style="font-style: italic;"&gt;Corporate DNS server address&lt;/span&gt; setting by selecting &lt;span style="font-style: italic;"&gt;Next.&lt;/span&gt; The last step is to activate the settings, at the &lt;span style="font-style: italic;"&gt;Activate configuration changes&lt;/span&gt;, select &lt;span style="font-style: italic;"&gt;Yes&lt;/span&gt; to finalize the setup of SME Server.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYdYg5vN8EI/AAAAAAAAAJI/2xzZaFJCClw/s1600-h/sme46.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298300808902602818" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYdYg5vN8EI/AAAAAAAAAJI/2xzZaFJCClw/s320/sme46.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After the settings are activated the SME Server will display a login screen. Two accounts are setup, the &lt;span style="font-style: italic;"&gt;admin&lt;/span&gt; account and the &lt;span style="font-style: italic;"&gt;root &lt;/span&gt;or super user account. The password is the same for both accounts that was setup earlier.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYdZOZ8E7uI/AAAAAAAAAJQ/WU1TgKAHq4s/s1600-h/sme48.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298301590640586466" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYdZOZ8E7uI/AAAAAAAAAJQ/WU1TgKAHq4s/s320/sme48.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The &lt;span style="font-style: italic;"&gt;root&lt;/span&gt; account is like any other Linux &lt;span style="font-style: italic;"&gt;root&lt;/span&gt; account, where the command line is used to manage the server. However, the web interface is where the SME Server is maintained a majority of the time. When the &lt;span style="font-style: italic;"&gt;admin&lt;/span&gt; account is used to login at the console, the server console menu is displayed.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdZ0KNDyGI/AAAAAAAAAJY/xgiIbppHzhI/s1600-h/sme49.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298302239251875938" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SYdZ0KNDyGI/AAAAAAAAAJY/xgiIbppHzhI/s320/sme49.JPG" style="cursor: pointer; display: block; height: 208px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There are a minimum amount of tasks that can be performed at the SME Server console menu. If the network is not accessible there is an option to get to the SME Server web interface, albeit with a text based web browser.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Configuring SME Server as a Domain Controller&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now that SME Server is up and running as a guest operating system, the Windows XP Pro client can be used to manage SME Server. Windows XP Professional should be installed as a guest using the same internal network as the eth0 device on the SME server. The SME Server also provices DHCP services, since VirtualBox does not supply DHCP to the internal network.&lt;br /&gt;&lt;br /&gt;Log into the Windows XP Pro client and open a web browser to http://serv01/server-manager. Log into the SME Sever web management interface with the &lt;span style="font-style: italic;"&gt;admin&lt;/span&gt; user account. From the menu on the left side of the management interface under &lt;span style="font-style: italic;"&gt;Configuration&lt;/span&gt; select &lt;span style="font-style: italic;"&gt;Workgroup&lt;/span&gt;. On the &lt;span style="font-style: italic;"&gt;Change Workgroup Settings&lt;/span&gt; page set the name of the &lt;span style="font-style: italic;"&gt;Windows workgroup&lt;/span&gt; (e.g. &lt;span style="font-style: italic;"&gt;testlan&lt;/span&gt;), the &lt;span style="font-style: italic;"&gt;Server Name &lt;/span&gt;and set the &lt;span style="font-style: italic;"&gt;Workgroup and Domain Controller&lt;/span&gt; drop box to &lt;span style="font-style: italic;"&gt;Yes &lt;/span&gt;and finally click on the &lt;span style="font-style: italic;"&gt;Save &lt;/span&gt;button. After saving the settings a green &lt;span style="font-style: italic;"&gt;Operation Status Report&lt;/span&gt; information box should appear. At this point reboot the server to enable the domain controller settings. (&lt;span style="font-style: italic;"&gt;Note that I didn't try to find a way to enable these settings without rebooting the server. I will update this page if I look into this. Since this is a test environment, rebooting wasn't an issue for me.&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYduoGUBLkI/AAAAAAAAAJg/9qhDPM3eY7Y/s1600-h/sme52.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298325121793076802" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SYduoGUBLkI/AAAAAAAAAJg/9qhDPM3eY7Y/s320/sme52.JPG" style="cursor: pointer; display: block; height: 174px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After the server reboots the Windows XP Pro guest can now join the domain. In Windows go to the &lt;span style="font-style: italic;"&gt;Control Panel&lt;/span&gt; and start the &lt;span style="font-style: italic;"&gt;System&lt;/span&gt; control panel applet to display the &lt;span style="font-style: italic;"&gt;System Properties&lt;/span&gt; dialog box. In the &lt;span style="font-style: italic;"&gt;System Properties&lt;/span&gt; dialog box, select the &lt;span style="font-style: italic;"&gt;Computer Name&lt;/span&gt; tab, then click on the &lt;span style="font-style: italic;"&gt;Change &lt;/span&gt;button. The &lt;span style="font-style: italic;"&gt;Computer Name Changes&lt;/span&gt; dialog box now appears. Note that the &lt;span style="font-style: italic;"&gt;Computer Name&lt;/span&gt; was set during install of Windows XP Pro. Under the &lt;span style="font-style: italic;"&gt;Member of&lt;/span&gt; section, select the radio button and enter the name of the domain from the previous steps. After clicking on&lt;span style="font-style: italic;"&gt; &lt;span style="font-style: italic;"&gt;OK&lt;/span&gt;&lt;/span&gt; another &lt;span style="font-style: italic;"&gt;Computer Name Changes&lt;/span&gt; dialog box appears, prompting for a account name and password with permissions to join the domain. Enter the &lt;span style="font-style: italic;"&gt;admin&lt;/span&gt; username and password and click on OK. You will be prompted to restart the machine, click your way back through the dialog boxes and restart the Windows XP Pro guest.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdxVkLoqfI/AAAAAAAAAJo/fZNB7dxi-9U/s1600-h/sme53.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298328101928348146" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYdxVkLoqfI/AAAAAAAAAJo/fZNB7dxi-9U/s320/sme53.JPG" style="cursor: pointer; display: block; height: 261px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After the Windows XP Pro guests restarts, a &lt;span style="font-style: italic;"&gt;Log On to Windows&lt;/span&gt; dialog appears. Click on the &lt;span style="font-style: italic;"&gt;Options&amp;gt;&amp;gt;&lt;/span&gt; button to expand the dialog. In the &lt;span style="font-style: italic;"&gt;Log on to&lt;/span&gt; drop down, make sure that the domain name is selected and not the local workstation. Log on with the &lt;span style="font-style: italic;"&gt;admin&lt;/span&gt; username and password.&lt;br /&gt;&lt;br /&gt;Setup of our test environment is now complete. The SME Server is up and running, acting as a gateway and providing services to the local network. The Windows XP guest is getting DHCP and other services from the SME Server and is able to access the Internet. The next steps are to update the SME Server and apply all updates and anti-virus to the Windows XP Pro client.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYd59Kh2evI/AAAAAAAAAJw/UEIQo4m3DjE/s1600-h/sme54.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5298337578329996018" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SYd59Kh2evI/AAAAAAAAAJw/UEIQo4m3DjE/s320/sme54.JPG" style="cursor: pointer; display: block; height: 226px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-6822524843859840820?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/6822524843859840820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=6822524843859840820' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/6822524843859840820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/6822524843859840820'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2009/01/setting-up-sme-server-test-environment.html' title='Setting Up a SME Server Test Environment with VirtualBox on Vista'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Ak8vVzOhU5g/SYTcZySY0QI/AAAAAAAAAGo/sPikhKf8QEs/s72-c/sme01.JPG' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-8129235804641788435</id><published>2008-10-22T11:06:00.000-07:00</published><updated>2010-09-01T21:26:33.823-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='admin'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu Server'/><category scheme='http://www.blogger.com/atom/ns#' term='Webmin'/><title type='text'>Adding a Lightweight GUI and Webmin to Ubuntu Server</title><content type='html'>The default installation of Ubuntu Server is non-graphical, the server is managed from the command line. Reasons for this type of installation are security and elimination of resource heavy GUI's (Graphical User Interface's). On some installations, the system management ease of a GUI makes life a little easier for the system administrator. It is possible to install the web based system management tool without the GUI. This method will allow you to use those tools locally on the server without using a separate computer on the network.&lt;br /&gt;&lt;br /&gt;Tools to be installed are a lightweight window manager, a method of locking the screen, web based system management software, web browser and a light weight file manager.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installation of Fluxbox&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Fluxbox is a resource light window manager that will work well for simple system administration. &lt;span style="font-style: italic;"&gt;Tip: I get tired of typing 'sudo' for every command, so we will remain as root, as the first command shows.&lt;/span&gt; To install Fluxbox and the display manager perform the following commands:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ sudo su -&lt;br /&gt;[sudo] password for boxadmin:&lt;br /&gt;# apt-get install fluxbox xorg xdm&lt;br /&gt;# /etc/init.d/xdm&lt;/code&gt;&lt;br /&gt;The result is a login screen for the server. Login with the user name and password and be amazed at the awesomeness of Fluxbox. OK. Now for some tools to use in our now graphical server. A simple transparent screen lock utility, xtrlock, web browser, Firefox and a file manager, xfe, will be installed .&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dillo.org/"&gt;Dillo&lt;/a&gt; is a simple lightweight browser that would fit into this lightweight theme, however, &lt;a href="http://www.dillo.org/FAQ.html#q12"&gt;https (SSL) is in a alpha stage&lt;/a&gt; and not well supported. SSL is needed for Webmin.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SP-TVrWiJGI/AAAAAAAAAGQ/m90zIQJFMag/s1600-h/termshot.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5260084890415801442" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SP-TVrWiJGI/AAAAAAAAAGQ/m90zIQJFMag/s320/termshot.png" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The first thing you will notice in Fluxbox is there is no start menu. To access applications right click on the desktop to display the menu. Start a terminal session by left clicking &lt;span style="font-style: italic;"&gt;Applications -&amp;gt; Terminal Emulators -&amp;gt; XTerm&lt;/span&gt;. From the command line we will install our tools.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ sudo su -&lt;br /&gt;# apt-get install xtrlock&lt;br /&gt;# apt-get install firefox&lt;br /&gt;# apt-get install xfe&lt;/code&gt;&lt;br /&gt;The basic tools are now installed. The next step is to make a simple key binding to activate the screen lock without having to go through the menu. Using the nano editor make the following changes to the last line in the file &lt;span style="font-style: italic;"&gt;~/.fluxbox/keys&lt;/span&gt;.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;Mod1 F12 :&lt;span style="font-weight: bold;"&gt;ExecCommand sleep 1 ; xtrlock&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;Pressing the key combination [alt]+[f12], will execute xtrlock. The mouse pointer will change to a lock and the screen will remain visible, but the keyboard and mouse are captured. Typing in the user password will change the mouse pointer back and normal use will resume.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installing Webmin&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Webmin is a web based interface for system administration. I use Webmin a lot for small sites. To make Webmin a little more secure I setup the firewall to block access to a single IP address or subnet as well as not allowing Internet side access (which I will not cover here). Before Webmin is installed, some dependent packages need to be installed. The Webmin distribution is downloaded using the &lt;span style="font-style: italic;"&gt;wget&lt;/span&gt; utility and installed with the &lt;span style="font-style: italic;"&gt;dpkg&lt;/span&gt; package management tool.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;# apt-get install libauthen-pam-perl libnet-ssleay-perl libio-pty-perl libmd5-perl openssl&lt;br /&gt;# wget http://prdownloads.sourceforge.net/webadmin/webmin_1.430_all.deb&lt;br /&gt;# dpkg -i webmin_1.430_all.deb&lt;br /&gt;# exit&lt;br /&gt;$&lt;/code&gt;&lt;br /&gt;After installation is complete, Webmin is accessed from the Firefox web browser at the following URL.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;https://localhost:10000&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SP-TVgswn7I/AAAAAAAAAGY/08Be-nwj8SE/s1600-h/guishot.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5260084887556235186" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SP-TVgswn7I/AAAAAAAAAGY/08Be-nwj8SE/s320/guishot.png" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There will be some error messages complaining about the security certificate. Follow the on screen steps to add an exception for your server. Now you have a resource light GUI interface to your Ubuntu Server box.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;br /&gt;&lt;/span&gt;Fluxbox &lt;a href="http://www.fluxbox.org/"&gt;http://www.fluxbox.org/&lt;/a&gt;&lt;br /&gt;xfe &lt;a href="http://roland65.free.fr/xfe/"&gt;http://roland65.free.fr/xfe/&lt;/a&gt;&lt;br /&gt;Webmin &lt;a href="http://www.webmin.com/"&gt;http://www.webmin.com/&lt;/a&gt;&lt;br /&gt;Ubuntu Server &lt;a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition"&gt;http://www.ubuntu.com/products/WhatIsUbuntu/serveredition&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-8129235804641788435?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/8129235804641788435/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=8129235804641788435' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/8129235804641788435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/8129235804641788435'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/adding-lightweight-gui-to-ubuntu-server.html' title='Adding a Lightweight GUI and Webmin to Ubuntu Server'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Ak8vVzOhU5g/SP-TVrWiJGI/AAAAAAAAAGQ/m90zIQJFMag/s72-c/termshot.png' height='72' width='72'/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-5179524911391608474</id><published>2008-10-18T16:18:00.000-07:00</published><updated>2010-09-01T21:26:54.106-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='Virtual Box'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Shared Folders and Seamless Windows in Virtual Box</title><content type='html'>In this final installment of running Ubuntu Linux in Windows Vista with Virtual Box, I'll look at using shared folders and seamless windows. A directory in the Vista filesystem can be used to share files between the Vista host and Ubuntu guest operating systems. Seamless windows allows Ubuntu application windows to be used side-by-side with Vista application windows.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Shared Folders&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;First the folder to be shared must be created on the Vista host. Open a command prompt by clicking on &lt;span style="font-style: italic;"&gt;Start -&amp;gt; All Programs -&amp;gt; Accessories -&amp;gt; Command Prompt&lt;/span&gt;. A directory can be created in the resulting location or at the top level of the C:\ drive with the following commands:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;C:\users\kleyba&amp;gt; md \virtshare&lt;br /&gt;C:\users\kleyba&amp;gt; exit&lt;/code&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;Now the folder needs to be accessible to the guest Ubuntu. In the running instance of Ubuntu, from the Virtual Box menu select &lt;span style="font-style: italic;"&gt;Devices -&amp;gt; Shared Folders...&lt;/span&gt; In the resulting &lt;span style="font-style: italic;"&gt;Shared Folders&lt;/span&gt; dialog box, select &lt;span style="font-style: italic;"&gt;Machine Folders&lt;/span&gt;, then click on the folder icon with the plus sign in the upper right. In the &lt;span style="font-style: italic;"&gt;Folder Path:&lt;/span&gt; drop down box select &lt;span style="font-style: italic;"&gt;Other...&lt;/span&gt; and navigate to the folder created in the Vista host. The &lt;span style="font-style: italic;"&gt;Folder Name:&lt;/span&gt; text box will be filled automatically, it can be left as the default. Add a check to the &lt;span style="font-style: italic;"&gt;Make Permanent&lt;/span&gt; check box, the shared folder will be always available to the Ubuntu guest. Click OK in the &lt;span style="font-style: italic;"&gt;Add Share&lt;/span&gt; and then &lt;span style="font-style: italic;"&gt;Shared Folders&lt;/span&gt; dialog boxes to complete this step.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPp0fYSc0aI/AAAAAAAAAFE/fBKz_wsgeUo/s1600-h/vb60.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258643597353079202" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPp0fYSc0aI/AAAAAAAAAFE/fBKz_wsgeUo/s320/vb60.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;To test the shared folder the share will be mounted manually. Open a terminal window in Ubuntu by selecting from the menu &lt;span style="font-style: italic;"&gt;Applications -&amp;gt; Accessories -&amp;gt; Terminal&lt;/span&gt;. Using the &lt;span style="font-style: italic;"&gt;mount&lt;/span&gt; and&lt;span style="font-style: italic;"&gt; umount&lt;/span&gt; commands test the share:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ sudo mount -t vboxsf virtshare /mnt&lt;br /&gt;$ mount&lt;br /&gt;$ touch /mnt/virtshare/testfile.txt&lt;br /&gt;$ ls /mnt/virtshare&lt;br /&gt;$ sudo umount /mnt&lt;/code&gt;&lt;br /&gt;The first command mounts the the share &lt;span style="font-style: italic;"&gt;virtshare&lt;/span&gt;, with the &lt;span style="font-style: italic;"&gt;vboxsf&lt;/span&gt; filesystem type, on the directory &lt;span style="font-style: italic;"&gt;/mnt&lt;/span&gt;. The &lt;span style="font-style: italic;"&gt;/mnt&lt;/span&gt; directory in Linux is used for temporarily mounting filesystems. The &lt;span style="font-style: italic;"&gt;vboxsf&lt;/span&gt; filesystem type, selected by using the &lt;span style="font-style: italic;"&gt;-t&lt;/span&gt; option to the &lt;span style="font-style: italic;"&gt;mount&lt;/span&gt; command, is unique to Virtual Box with the Virtual Box Additions. The&lt;span style="font-style: italic;"&gt; mount &lt;/span&gt;command by itself displays the mounted filesystems, the shared filesystem will be listed last as:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;virtshare on /mnt type vboxsf (rw)&lt;/code&gt;&lt;br /&gt;The next two commands create a test file with &lt;span style="font-style: italic;"&gt;touch&lt;/span&gt; and displays the file with &lt;span style="font-style: italic;"&gt;ls&lt;/span&gt;. Finally, the share is umounted with the &lt;span style="font-style: italic;"&gt;umount&lt;/span&gt; command. After successful testing the share, it will become permanent by creating a mount point and editing the file with the filesystem static information, &lt;span style="font-style: italic;"&gt;/etc/fstab&lt;/span&gt;, with the &lt;a href="http://www.nano-editor.org/"&gt;nano&lt;/a&gt; editor.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ mkdir ~/vistashare&lt;br /&gt;$ cp /etc/fstab ~/fstab.backup&lt;br /&gt;$ sudo nano /etc/fstab&lt;/code&gt;&lt;br /&gt;The mount point, which is just an empty directory, is created with the &lt;span style="font-style: italic;"&gt;mkdir&lt;/span&gt; command. The &lt;span style="font-style: italic;"&gt;cp&lt;/span&gt; command is used to make a backup copy of the fstab file; just a little insurance. The nano editor now displays the content of the &lt;span style="font-style: italic;"&gt;/etc/fstab&lt;/span&gt; file. Add the follwing line to the end.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;virtshare /home/&lt;span style="font-weight: bold;"&gt;{USER}&lt;/span&gt;/vistashare vboxsf rw 0 2&lt;/code&gt;&lt;br /&gt;Replace&lt;span style="font-weight: bold;"&gt; {USER}&lt;/span&gt; with the name of your home folder, which is normally your username. To save the file press &lt;span style="font-weight: bold;"&gt;CTRL+O&lt;/span&gt;, then &lt;span style="font-weight: bold;"&gt;&lt;enter&gt;&lt;/enter&gt;&lt;/span&gt;, then &lt;span style="font-weight: bold;"&gt;CTRL+X&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPqB8HdKBAI/AAAAAAAAAFM/thUfoH5YcXM/s1600-h/vb61.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258658384701948930" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPqB8HdKBAI/AAAAAAAAAFM/thUfoH5YcXM/s320/vb61.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;After the changes are made to &lt;span style="font-style: italic;"&gt;/etc/fstab&lt;/span&gt;, the shared folder will be &lt;a href="http://en.wiktionary.org/wiki/automagic"&gt;automagically&lt;/a&gt; mounted whenever the Ubuntu guest is booted. The share can also be mounted with the &lt;span style="font-style: italic;"&gt;mount&lt;/span&gt; command and &lt;span style="font-style: italic;"&gt;-a&lt;/span&gt; switch as follows:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ sudo mount -a&lt;/code&gt;&lt;br /&gt;The shared folder can now be used, view the folder by selecting &lt;span style="font-style: italic;"&gt;Places -&amp;gt; Home Folder&lt;/span&gt; in Ubuntu.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPqE3R-in4I/AAAAAAAAAFU/sbyy4vGNwEw/s1600-h/vb62.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258661600161865602" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPqE3R-in4I/AAAAAAAAAFU/sbyy4vGNwEw/s320/vb62.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Seamless Windows&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The seamless windows feature allows you to display host and guest application windows. The desktop of the guest operating system is suppressed, but the application menu is available. To enable seamless windows press the &lt;span style="font-weight: bold;"&gt;Host+L&lt;/span&gt; keys. A dialog box will display with information on seamless windows, put a check in the &lt;span style="font-style: italic;"&gt;Do not show this message again&lt;/span&gt; check box and click on the &lt;span style="font-style: italic;"&gt;Switch&lt;/span&gt; button.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPqK7L39EjI/AAAAAAAAAFc/LY9MVr5tREQ/s1600-h/vb63.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258668264312869426" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPqK7L39EjI/AAAAAAAAAFc/LY9MVr5tREQ/s320/vb63.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;Ubuntu application windows and Vista application windows now are displayed on the Vista desktop. Seamless windows can be disabled by pressing the &lt;span style="font-weight: bold;"&gt;Host+L&lt;/span&gt; keys.&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPrRnv1ECMI/AAAAAAAAAGI/HWsX0EBvZkI/s1600-h/vb64.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258745995692607682" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPrRnv1ECMI/AAAAAAAAAGI/HWsX0EBvZkI/s320/vb64.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-5179524911391608474?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/5179524911391608474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=5179524911391608474' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/5179524911391608474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/5179524911391608474'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/shared-folders-and-seamless-windows-in.html' title='Shared Folders and Seamless Windows in Virtual Box'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPp0fYSc0aI/AAAAAAAAAFE/fBKz_wsgeUo/s72-c/vb60.PNG' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-2240466982319528878</id><published>2008-10-18T13:52:00.000-07:00</published><updated>2010-09-01T21:27:16.260-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='Virtual Box'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Installing Virtual Box Additions</title><content type='html'>Once Ubuntu is installed in a virtual machine, the Virtual Box Additions can be installed. From the Virtual Box User Manual:&lt;br /&gt;&lt;blockquote style="font-style: italic;"&gt;They (the Virtual Box additions) consist of device drivers and system applications for the guest operating system that optimize the guest for better performance and usability.&lt;/blockquote&gt;&lt;span style="font-weight: bold;"&gt;Installing Additions&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To install the additions, Ubuntu must be started and logged in. From the Virtual Box menu, select &lt;span style="font-style: italic;"&gt;Devices -&amp;gt; Guest Additions...&lt;/span&gt; The virtual CD-ROM for the guest additions will be mounted.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPpcUgzu93I/AAAAAAAAAEk/lzSrKfKr9vg/s1600-h/vb49.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258617022382536562" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPpcUgzu93I/AAAAAAAAAEk/lzSrKfKr9vg/s320/vb49.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;The next step is to open a terminal window in Ubuntu by selecting &lt;span style="font-style: italic;"&gt;Applications -&amp;gt; Accessories -&amp;gt; Terminal&lt;/span&gt; from within Ubuntu. Change directories to the mounted virtual CD, then run the Virtual Box Additions install script. After the script is successfully run, the system will need to be rebooted to complete the installation.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$ cd /media/cdrom&lt;br /&gt;$ ls&lt;br /&gt;$ sudo ./VBoxLinuxAdditions-x86.run&lt;br /&gt;$ sudo reboot&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPpc-iguqNI/AAAAAAAAAEs/e6I25PKs9m0/s1600-h/vb50.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258617744394201298" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPpc-iguqNI/AAAAAAAAAEs/e6I25PKs9m0/s320/vb50.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;The 'sudo' command allows you to run the install script as the &lt;span style="font-style: italic;"&gt;super user&lt;/span&gt;, which has privileges to install software. The 'sudo' command will prompt you for your password, which is the same as the password created for the initial user when Ubuntu is installed. The 'sudo' command is used again to restart the machine with 'reboot'.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Using Guest Additions&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After the virtual machine reboots an information dialog box appears noting that the guest operating system now supports mouse integration. The host key is no longer needed to switch between the host and guest operating systems. There is also a warning that some applications may not work correctly with mouse integration. Mouse integration can also be disabled if needed.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPpkKBbmSoI/AAAAAAAAAE0/J9n0SrEFumM/s1600-h/vb52.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258625638254135938" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPpkKBbmSoI/AAAAAAAAAE0/J9n0SrEFumM/s320/vb52.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;Once the information dialog is dismissed, the guest operating sytem can be used with mouse integration. One neat feature of the guest additions is to make the guest operating system work in full screen mode. To switch to and from full screen mode, press the &lt;span style="font-style: italic;"&gt;Host + F&lt;/span&gt; keys. An information dialog box will appear with details on fullscreen mode.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPplHgolBDI/AAAAAAAAAE8/GWTlKLsta-g/s1600-h/vb53.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5258626694602097714" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPplHgolBDI/AAAAAAAAAE8/GWTlKLsta-g/s320/vb53.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;Some of the other benefits of installing the Guest Additions is better video support, shared folders, seamless windows, and a shared clipboard between host and guest operating systems.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-2240466982319528878?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/2240466982319528878/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=2240466982319528878' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2240466982319528878'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2240466982319528878'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/installing-virtual-box-additions.html' title='Installing Virtual Box Additions'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPpcUgzu93I/AAAAAAAAAEk/lzSrKfKr9vg/s72-c/vb49.PNG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-4104093516481141837</id><published>2008-10-11T22:44:00.000-07:00</published><updated>2011-04-06T11:05:53.606-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Nautilus'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Open Terminal Here in Nautilus</title><content type='html'>I have a user that needed to navigate through &lt;a href="http://www.gnome.org/projects/nautilus/"&gt;Nautilus&lt;/a&gt; and open a terminal in the current directory. This behavior is not enabled by default. It turns out that Nautilus is scriptable, i.e. custom behaviors can be scripted. The &lt;a href="http://g-scripts.sourceforge.net/"&gt;G-script&lt;/a&gt; web page has several scripts that you can download to modify Nautilus. The specific script for the behavior we wanted was on the G-script web site, below is the code.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt;# From Chris Picton&lt;br /&gt;# Replaces a Script by Martin Enlund&lt;br /&gt;# Modified to work with spaces in path by Christophe Combelles&lt;br /&gt;&lt;br /&gt;# This script either opens in the current directory,&lt;br /&gt;# or in the selected directory&lt;br /&gt;&lt;br /&gt;base="`echo $NAUTILUS_SCRIPT_CURRENT_URI | cut -d'/' -f3- | sed 's/%20/ /g'`"&lt;br /&gt;if [ -z "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" ]; then&lt;br /&gt;dir="$base"&lt;br /&gt;else&lt;br /&gt;while [ ! -z "$1" -a ! -d "$base/$1" ]; do shift; done&lt;br /&gt;dir="$base/$1"&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;gnome-terminal --working-directory="$dir"&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;code&gt;&amp;nbsp;&lt;/code&gt;&lt;br /&gt;Using the &lt;a href="http://www.gnome.org/projects/gedit/"&gt;gedit&lt;/a&gt; text editor, copy and save this shell script in a text file to your Nautilus script directory under &lt;span style="font-style: italic;"&gt;~/.gnome2/nautilus-scripts&lt;/span&gt;. Name the file something like &lt;span style="font-style: italic;"&gt;openhere.sh&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;A couple of tips, if you navigate to the scripts folder in Nautilus, from the menu select &lt;span style="font-style: italic;"&gt;View -&amp;gt; Show Hidden Files&lt;/span&gt;, then the hidden folders, the folders that begin with a ".", can be seen. If you use the &lt;span style="font-style: italic;"&gt;gedit&lt;/span&gt; text editor, when saving the script, right click in the file name area and from the drop down menu select &lt;span style="font-style: italic;"&gt;Show Hidden Files&lt;/span&gt;, to show the hidden directories.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPGYyPRjLUI/AAAAAAAAAEc/EOyMC1U4VV4/s1600-h/script2.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5256150228979100994" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPGYyPRjLUI/AAAAAAAAAEc/EOyMC1U4VV4/s320/script2.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The script needs to be executable so do the following in a terminal window:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;~$ cd .gnome2/nautilus-scripts&lt;br /&gt;~/.gnome2/nautilus-scripts$ chmod +x openhere.sh&lt;/code&gt;&lt;br /&gt;Now when right clicking in the file area of Nautilus, a menu drop down will appear. Select &lt;span style="font-style: italic;"&gt;Scripts&lt;/span&gt;, then the name of the script to run, in this case &lt;span style="font-style: italic;"&gt;openhere.sh&lt;/span&gt;, which will open a terminal window in the current directory.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPGWEHelRDI/AAAAAAAAAEU/OtGZiPwGJ4s/s1600-h/scirpt.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5256147237589042226" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPGWEHelRDI/AAAAAAAAAEU/OtGZiPwGJ4s/s320/scirpt.PNG" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-4104093516481141837?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/4104093516481141837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=4104093516481141837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/4104093516481141837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/4104093516481141837'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/open-terminal-here-in-nautilus.html' title='Open Terminal Here in Nautilus'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPGYyPRjLUI/AAAAAAAAAEc/EOyMC1U4VV4/s72-c/script2.PNG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-2479911902461589879</id><published>2008-10-11T15:03:00.000-07:00</published><updated>2008-10-18T15:54:17.028-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='Virtual Box'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Running Ubuntu on Vista with Virtual Box</title><content type='html'>I've been getting requests on how to dual boot Vista and Linux or requests to install Linux on someones recently purchased computer.  If the goal is to try out Linux or a few of the many Linux distributions, then I suggest running Linux virtually.  That way one can a) decide which distribution they prefer, and b) decide of Linux will be their primary operating system.&lt;br /&gt;&lt;br /&gt;At work I prefer to use Ubuntu Linux as my primary operating system and run Windows XP in Virtual Box for specific tasks that must be run under Windows.  At home, I run Vista as my primary operating system and run different instances of Linux for testing using Virtual Box.  I also run instaces of Windows Server 2003 and Windows XP, only I found that Virtual PC works better for me in that specific testing scenario.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installing Virtual Box on Vista&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To start things off, Virtual Box needs to be installed.  The install package can be downloaded from &lt;a href="http://www.virtualbox.org/"&gt;Virtual Box Website.&lt;/a&gt;  The correct download is the Virtual Box for Windows hosts.  I also suggest the Personal Use and Evaluation License (PUEL) version, for the additional features the Open Source Edition (OSE)  does not include.  Download the installer and then begin the installation by double clicking the downloaded installer package.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;The first dialog box that appears is the &lt;span style="font-style: italic;"&gt;Welcome&lt;/span&gt; screen, press the next button.  The next dialog box is the &lt;span style="font-style: italic;"&gt;End-User License Agreement&lt;/span&gt;.  Select the "I accept..." radio button and click on the next button.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPEoa3Y08vI/AAAAAAAAAAc/umnl0sxLYnc/s1600-h/vb2.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPEoa3Y08vI/AAAAAAAAAAc/umnl0sxLYnc/s320/vb2.PNG" alt="" id="BLOGGER_PHOTO_ID_5256026682127872754" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The &lt;span style="font-style: italic;"&gt;Custom Setup&lt;/span&gt; dialog box allows the selection of USB and network drivers, select Next to accept the defaults.  At the &lt;span style="font-style: italic;"&gt;Ready to Install&lt;/span&gt; dialog box, click on the Install button to begin the installation.  The installation begins at this point.  Two resulting dialog boxes will ask to install the USB and networking drivers.  Select &lt;span style="font-style: italic;"&gt;Install&lt;/span&gt; to both of these dialog boxes.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPE0qC_dPKI/AAAAAAAAAAk/MVYGvyEZASA/s1600-h/vb6.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPE0qC_dPKI/AAAAAAAAAAk/MVYGvyEZASA/s320/vb6.PNG" alt="" id="BLOGGER_PHOTO_ID_5256040137080257698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The final dialog box indicates the completion of the installation, select &lt;span style="font-style: italic;"&gt;Finish&lt;/span&gt; and this step is complete.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Creating the Virtual Machine&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Start the Virtual Box application, the first step is to register your installation.  After successful registration, the Virtual Box application window displays.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPE3deFyFZI/AAAAAAAAAAs/yDeLY-W54B0/s1600-h/vb11.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPE3deFyFZI/AAAAAAAAAAs/yDeLY-W54B0/s320/vb11.PNG" alt="" id="BLOGGER_PHOTO_ID_5256043219551131026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Click on the &lt;span style="font-style: italic;"&gt;New&lt;/span&gt; icon in the upper left side of the application window to start the &lt;span style="font-style: italic;"&gt;New Virtual Machine Wizard&lt;/span&gt;, at the welcome dialog click on &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPE4PkV4XqI/AAAAAAAAAA0/L_4gAOKsBMA/s1600-h/vb13.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPE4PkV4XqI/AAAAAAAAAA0/L_4gAOKsBMA/s320/vb13.PNG" alt="" id="BLOGGER_PHOTO_ID_5256044080222723746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In the &lt;span style="font-style: italic;"&gt;Name&lt;/span&gt; text window enter a name for your virtual machine and select the &lt;span style="font-style: italic;"&gt;OS Type&lt;/span&gt; of &lt;span style="font-style: italic;"&gt;Ubuntu&lt;/span&gt;.  Press the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button to advance to the &lt;span style="font-style: italic;"&gt;Memory&lt;/span&gt; dialog box.  Select a memory size by either moving the slider button or entering a number in the text box, then clicking the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button.  The amount of memory to use depends on the available memory on the host machine.  If, for example, the host machine has 2 gigabytes of memory a good value to allocate to the virtual machine is 512 megabytes to 1 gigabyte.  Another consideration is the way the virtual machine is going to be used.  If the virtual machine will run without the host machine running any other applications, then the higher amount of memory allocated the better the performance of the virtual machine; leaving enough memory for the host machine to operate correctly.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPE-1065oyI/AAAAAAAAAA8/x5WMXd5Ce70/s1600-h/vb18.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPE-1065oyI/AAAAAAAAAA8/x5WMXd5Ce70/s320/vb18.PNG" alt="" id="BLOGGER_PHOTO_ID_5256051334577759010" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The next step is create a virtual hard drive for the virtual machine.  In the Virtual Hard Disk dialog box, click on the &lt;span style="font-style: italic;"&gt;New...&lt;/span&gt; button.  Yet another &lt;span style="font-style: italic;"&gt;Welcome&lt;/span&gt; dialog will appear for the wizard, click on the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button.  The image type dialog has two options for dynamically expanding or fixed size virtual disks.  The former creates an image that will expand to the specified maximum as needed, while the latter creates a full fixed sized disk image.  Selecting a dynamically expanding image is faster during setup and will save on disk space if the full image size in not needed.  Leave the default of dynamic and click the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button.  In the next dialog box the size of the disk image is specified.  The default of 8 gigabytes is adequate, but again depending on the available space on the host machine adjusting for less or more needs to be determined.  Select the size of the image to be used, accept the default name and click the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button.  The wizards summary dialog appears, click on &lt;span style="font-style: italic;"&gt;Finish&lt;/span&gt; to return to the &lt;span style="font-style: italic;"&gt;Virtual Machine Wizard&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFLdy5oZKI/AAAAAAAAABU/0LU_2kghej8/s1600-h/vb22.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFLdy5oZKI/AAAAAAAAABU/0LU_2kghej8/s320/vb22.PNG" alt="" id="BLOGGER_PHOTO_ID_5256065215369864354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The newly created virtual disk image will be selected, click the &lt;span style="font-style: italic;"&gt;Next&lt;/span&gt; button.  The summary dialog appears, click on &lt;span style="font-style: italic;"&gt;Finish&lt;/span&gt; to complete the virtual machine entry.  The Ubuntu virtual machine is now listed in the left pane of the Virtual Box application.  Before starting the Ubuntu installation an installation media source needs to be selected.  There are two options for installation media, either an Ubuntu CD or mounting a downloaded ISO image from the Ubuntu web site.  If the Ubuntu CD is used on the host machine, the CD is mapped or mounted to make it available to the virtual machine.  An easier method is to download the Ubuntu ISO image that is normally burned to a CD for installation.  Instead of burning an installation CD, the ISO image can be mounted and made available to the virtual machine.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPFArD6U0zI/AAAAAAAAABE/cxbUmSjYpl0/s1600-h/vb25.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPFArD6U0zI/AAAAAAAAABE/cxbUmSjYpl0/s320/vb25.PNG" alt="" id="BLOGGER_PHOTO_ID_5256053348646572850" border="0" /&gt;&lt;/a&gt;In the right side pane click on the blue CD/DVD-ROM text to bring up the settings window.  From here either the host systems CD/DVD can be mapped to the virtual machine or a ISO image file can be mounted.  In this example the ISO image file is used.  Check the Mount CD/DVD Drive check box.  Select the ISO Image File radio button and then click the folder icon to start the Virtual Disk Manager.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFUE36YGFI/AAAAAAAAABc/-aO0KDmzD74/s1600-h/vb24.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFUE36YGFI/AAAAAAAAABc/-aO0KDmzD74/s320/vb24.PNG" alt="" id="BLOGGER_PHOTO_ID_5256074682823088210" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In the &lt;span style="font-style: italic;"&gt;Virtual Disk Manager&lt;/span&gt;, click the &lt;span style="font-style: italic;"&gt;Add&lt;/span&gt; icon and navigate and select the Ubuntu ISO image on your host machine, then click the &lt;span style="font-style: italic;"&gt;Select&lt;/span&gt; button.  The Ubuntu ISO image will now look like a mounted CD of the Ubuntu installation CD.    The settings window can now be closed by clicking on the OK button.  The virtual operating system is now ready to be installed.&lt;br /&gt;&lt;br /&gt;A couple of notes; when the virtual machine is started the keyboard and mouse will be captured in the virtual machine.  In order to switch back control of the keyboard and mouse to the host machine the &lt;span style="font-style: italic;"&gt;host key&lt;/span&gt; needs to be pressed to release them.  By default the host key is the right control (&lt;span style="font-weight: bold;"&gt;ctrl&lt;/span&gt;) key.  In this example, Vista is running on a Mac Book Pro with Boot Camp and Vista.  Since there is no right control key on the Mac Book Pro, I changed the settings under &lt;span style="font-style: italic;"&gt;File -&gt; Preferences -&gt; Input&lt;/span&gt;, to change the host key to the left alt key.  When starting the virutal machine, the host key is indicated in the lower right hand of the virtual machine window.  Note that in the screen shots the alt key is indicated.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Installing Ubuntu&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now that all the preliminary steps are done, all that is left is the actual Ubuntu installation.  To start the virtual machine, select the virtual machine in the left pane of the Virtual Box application and click on the green &lt;span style="font-style: italic;"&gt;Start&lt;/span&gt; icon.  The BIOS screen of the virtual machine is displayed and the F12 key can be pressed to select the boot device, by default the CD/DVD should boot.  Two dialog boxes will display, one with information on the host key and another on the bit depth.  Both can be safely ignored and the &lt;span style="font-style: italic;"&gt;Do not show this message again&lt;/span&gt; check box can be checked and the window discarded by clicking the OK button.  The Ubuntu installation CD is now booted and the first step is to select the install language, which is by default English, at this point press the Enter key.  If the screen is left at this point, the default is to boot into a Live CD verson of Ubuntu, so pressing the Enter key should be done.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFaTtW5USI/AAAAAAAAABs/ZCwAJj5az9Q/s1600-h/vb33.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFaTtW5USI/AAAAAAAAABs/ZCwAJj5az9Q/s320/vb33.PNG" alt="" id="BLOGGER_PHOTO_ID_5256081534757720354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;At the Ubuntu menu, down arrow to select the &lt;span style="font-style: italic;"&gt;Install Ubuntu&lt;/span&gt; item and press enter.  The installer begins and the first dialog box is the &lt;span style="font-style: italic;"&gt;Welcome&lt;/span&gt; screen.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfC9uboeI/AAAAAAAAACk/G-_6nmSgeRc/s1600-h/vb34.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfC9uboeI/AAAAAAAAACk/G-_6nmSgeRc/s320/vb34.PNG" alt="" id="BLOGGER_PHOTO_ID_5256086744651768290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Click on the &lt;span style="font-style: italic;"&gt;Forward&lt;/span&gt; button to get to the &lt;span style="font-style: italic;"&gt;Where are you? &lt;/span&gt;dialog box, select the correct time zone and click &lt;span style="font-style: italic;"&gt;Forward&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPFfgpxvIYI/AAAAAAAAACs/jYn1Y-nhXsw/s1600-h/vb37.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPFfgpxvIYI/AAAAAAAAACs/jYn1Y-nhXsw/s320/vb37.PNG" alt="" id="BLOGGER_PHOTO_ID_5256087254692995458" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Next is the &lt;span style="font-style: italic;"&gt;Keyboard Layout&lt;/span&gt; dialog where the keyboard type is selected, click on &lt;span style="font-style: italic;"&gt;Forward&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfhKb6g-I/AAAAAAAAAC0/4n8fPKuiDkY/s1600-h/vb38.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfhKb6g-I/AAAAAAAAAC0/4n8fPKuiDkY/s320/vb38.PNG" alt="" id="BLOGGER_PHOTO_ID_5256087263459836898" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next section asks for the disk layout, the &lt;span style="font-style: italic;"&gt;Guided - use the entire disk&lt;/span&gt; default is used then click &lt;span style="font-style: italic;"&gt;Forward&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfhyAf1mI/AAAAAAAAAC8/OsHaLKGIHZY/s1600-h/vb39.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_Ak8vVzOhU5g/SPFfhyAf1mI/AAAAAAAAAC8/OsHaLKGIHZY/s320/vb39.PNG" alt="" id="BLOGGER_PHOTO_ID_5256087274082260578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The &lt;span style="font-style: italic;"&gt;Who are you?&lt;/span&gt; section is next, enter information in all fields, the log in name and password is critical to remember.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPFfiZgnmvI/AAAAAAAAADE/8mibxaCDm0U/s1600-h/vb40.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Ak8vVzOhU5g/SPFfiZgnmvI/AAAAAAAAADE/8mibxaCDm0U/s320/vb40.PNG" alt="" id="BLOGGER_PHOTO_ID_5256087284685970162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Click on &lt;span style="font-style: italic;"&gt;Forward&lt;/span&gt; and the &lt;span style="font-style: italic;"&gt;Ready to install&lt;/span&gt; window is now displaying with all the information previously selected and entered displayed.  To begin the installation click on the &lt;span style="font-style: italic;"&gt;Install&lt;/span&gt; button.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPFfjN4VERI/AAAAAAAAADM/TFJkEO1HFDU/s1600-h/vb41.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPFfjN4VERI/AAAAAAAAADM/TFJkEO1HFDU/s320/vb41.PNG" alt="" id="BLOGGER_PHOTO_ID_5256087298744062226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The Ubuntu installation magic now begins, grab a cup of tea or coffee and wait for the install to complete.  After the virtual image is formatted, Ubuntu installed and configured the final &lt;span style="font-style: italic;"&gt;Installation Complete&lt;/span&gt; dialog appears.  Click on the &lt;span style="font-style: italic;"&gt;Restart Now&lt;/span&gt; button to complete the installation.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFhgFQTKHI/AAAAAAAAADU/l7oWky-ktnk/s1600-h/vb45.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFhgFQTKHI/AAAAAAAAADU/l7oWky-ktnk/s320/vb45.PNG" alt="" id="BLOGGER_PHOTO_ID_5256089443912329330" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The installation is now shutdown and the virtual machine displays the final screen indicating the CD media must be removed.  From the Virtual Box menu, select &lt;span style="font-style: italic;"&gt;Devices -&gt; Unmount CD/DVD-ROM &lt;/span&gt;and then press the &lt;span style="font-style: italic;"&gt;Enter&lt;/span&gt; key.  Remember to return control to the host system to access the menu, the host key will need to be pressed first (e.g. Right ctrl).&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFjEZl68GI/AAAAAAAAADc/1ZvBn-mUl-4/s1600-h/vb46.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPFjEZl68GI/AAAAAAAAADc/1ZvBn-mUl-4/s320/vb46.PNG" alt="" id="BLOGGER_PHOTO_ID_5256091167358644322" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The virtual machine will now restart booting Ubuntu for the first time.  When Ubuntu has fully booted the login screen appears prompting for the username and password.  After entering the username password combination the Ubuntu opeating system is now running in a virtual machine.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPGAfiOzy6I/AAAAAAAAAEM/SeVOWsJzY8M/s1600-h/virtual.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_Ak8vVzOhU5g/SPGAfiOzy6I/AAAAAAAAAEM/SeVOWsJzY8M/s400/virtual.PNG" alt="" id="BLOGGER_PHOTO_ID_5256123519371299746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-2479911902461589879?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/2479911902461589879/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=2479911902461589879' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2479911902461589879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/2479911902461589879'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/running-ubuntu-on-vista-with-virtual.html' title='Running Ubuntu on Vista with Virtual Box'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Ak8vVzOhU5g/SPEoa3Y08vI/AAAAAAAAAAc/umnl0sxLYnc/s72-c/vb2.PNG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5732535451579435129.post-1062948974821272764</id><published>2008-10-10T09:17:00.000-07:00</published><updated>2008-10-10T09:19:57.258-07:00</updated><title type='text'>Welcome to the Small Box Blog</title><content type='html'>I created this blog for notes on Linux in smaller environments.  Whether your own personal Linux box, workstation at work or administering a small Linux server, the goal is to help with tips, tricks and general information.&lt;br /&gt;&lt;br /&gt;Enjoy,&lt;br /&gt;Ken, The Small Box Administrator&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5732535451579435129-1062948974821272764?l=smallboxadmin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smallboxadmin.blogspot.com/feeds/1062948974821272764/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5732535451579435129&amp;postID=1062948974821272764' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/1062948974821272764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5732535451579435129/posts/default/1062948974821272764'/><link rel='alternate' type='text/html' href='http://smallboxadmin.blogspot.com/2008/10/welcome-to-small-box-blog.html' title='Welcome to the Small Box Blog'/><author><name>The Small Box Admin</name><uri>http://www.blogger.com/profile/03122840903403663208</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
