You are currently browsing the category archive for the 'server' category.
VMware has just announced support for their 61st OS supported by Fusion 2.0 - Mac OS X Server 10.5 (Leopard). This is great news for those looking to test things like the new Active Directory wizards, calendar server and enterprise blogging that come with the new version of the server. Not to mention that because it’s supported by Fusion 2.0, you can do it on your laptop.
Check out the full blog post on Fusion 2.0 Leopard Server support at the VMware VMTN blog site here.
Related Articles:
You can now register to download Parallels Server Beta 2!
From the announcement:
|
Key Features (Parallels Server Beta 2)
|
|
|
|
x64 (64-bit) and x86 (32-bit) host and guest OS support, including any combination of more than 50 different guest OSes in secure, high-performing VMs. |
|
|
4-way guest SMP and multi-core support. |
|
|
Integrated toolset includes Parallels Tools, VM backup and Parallels Transporter (the P2V migration tool). |
|
|
Parallels Management Console, an easy-to-use, multi-server management tool is included. |
|
|
Support for Intel VT-d hardware acceleration extension for hardware resource dedication to VMs. |
|
|
Intel VT-x and AMD-V hardware-assisted acceleration support. |
|
|
Open APIs and SDK for extensible management. |
|
|
Command line interface (CLI) and scripting. |
Related Articles:
Modding Call of Duty 4 is not as easy as modding other versions, but here are some tips to get you started if you never done it before.
First off, in order to get into the IWD files, you simply need to rename them to have a .ZIP extension, and open them in WinRAR, WinACE or 7zip. Alternatively, I found that associating all of the files to WinRAR, then opening the Main folder in WinRAR, I was able to select all of the IWD files and extract them to a new location so I could play with them.
In order to open the IWI files that you get after extracting the IWD files, you can convert them to DDS by using this IWI to DDS converter.
The cfg files that you have extracted are plain text and easy to edit.
Once you are done modding, you can repack the files as a ZIP file - just make a new archive, and specify the name to be the same as before, for example: C:\Program Files\Activision\Call of Duty 4 - Modern Warfare\main\iw_00.iwd would be “iw_00.zip”. Once the new archive is made, change the extension to IWD, the reload the Call of Duty 4 server.
Related Articles:
Since installing bbPress on the forum.blandname.com subdomain, I’ve become addicted to the rapid posting workflow: add topic, title, description and post! It’s 4 steps and is over so quick I’ve been thinking about making a bookmarklet that will automate the task for me. Here’s the latest smaller posts I sent there, but should some day expand upon here (I’ll use blandname for longer posts from now on):
- vTiger CRM Virtual Machine
- RDP Manager for your Windows System Tray
- HOWTO TrixBox - VoIP Virtual Machine
- Online Virtual Machine Builder
- Microsoft Distributes Demo Software via VHD
- FREE Terminal Server Monitoring Tool
- VMware Workstation 6 Feature List
- Multi monitor support for RDP 6
- Add Reflections to bbPress Images
- Google PageRank and Alexa in Your Firefox 2
- Display Digg in WordPress - Digg Dugg Plugin
- Google Analytics Plugn for bbPress
Related Articles:
From the VMWare Converter 3 beta refresh release notes (found at virtualization.info):
VMware Converter provides an easy-to-use, scalable solution for migrations of machines, both physical to virtual and virtual to virtual. Optimized for mass migration, VMware Converter is equally effective for single-machine conversions. With its comprehensive and comprehensible wizards and task manager, VMware Converter imports virtual machines faster, with fewer manual steps required, and fewer source hardware limitations than other methods. Converter can, with its ability to hot clone, import with no downtime on the source physical machine.
VMware Converter combines and expands the functionality available in P2V Assistant and Virtual Machine Importer. It eases interoperability among VMware hosted products (Workstation, VMware Server, and VMware Player), VirtualCenter-managed ESX Server 3.x and 2.5.x, and unmanaged ESX Server 3.x.
Import from Physical Machines
(Source)
- VMware Converter can hot clone and reconfigure any local or remote physical machine running an operating system noted in Platforms
- VMware Converter Boot CD can be started from, and clone, local machines outfitted with storage controllers and network adapters that Microsoft lists as supported in Windows 2003
Import from Various Third-Party Formats and VMware Products
(Source)
- Microsoft Virtual PC (version 7 and higher)
- Microsoft Virtual Server (any version)
- Symantec Backup Exec System Recovery images1
- VMware Workstation 4.x virtual machine (compatible with VMware GSX Server 3.x)
- VMware Workstation 5.x virtual machine (compatible with VMware Player and VMware Server 1.x)
- VMware ESX Server 3.x
- VMware ESX Server 3.x (when managed by VirtualCenter 2.x)
- VMware ESX Server 2.5.x (when managed by VirtualCenter 2.x)
Export to a Virtual Machine for
VMware Workstation and Datacenter Products
(Destination)
- VMware Workstation 4.x virtual machine (compatible with VMware GSX Server 3.x, ESX Server 2.5.x)2
- VMware Workstation 5.x virtual machine (compatible with VMware Player and VMware Server 1.x)3
- VMware ESX Server 2.5.x (when managed by VirtualCenter 2.x)
- VMware ESX Server 3.x (when managed by VirtualCenter 2.x)
- VMware ESX Server 3.x
Not Supported:
- VMware ESX Server 2.5.x when managed by VirtualCenter 1.x
- VMware ESX Server 2.5.x unmanaged
1. The Symantec family of products includes the Backup Exec System Recovery (formerly LiveState Recovery) products and the Norton Ghost 9 (and higher) products. Only images from the Backup Exec System Recovery products are fully supported, but images from Norton Ghost 9 (and higher) are likely to work.
2. For ESX Server 2.5.x the .vmdk files must be imported using the vmkfstools utility.
3. Only Workstation 5.5 can power on linked imports of .sv2i images.
For more info please visit VMWare’s Converter 3 Beta Refresh page.
Related Articles:
Via MSDN:
Continuing on our saga through the undocumented Virtual Server WMI interfaces, we now arrive at disk usage information. Here is a sample script that will create a list of the currently running virtual machines, and display the amount of disk activity they have had since they were powered on.
Set vsWMIObj = GetObject(”winmgmts:\\.\root\vm\virtualserver”)
Set vms = vsWMIObj.ExecQuery(”SELECT * FROM VirtualMachine”,,48)
For Each vm in vms
Wscript.Echo “==============================================”
Wscript.Echo “Virtual machine: ” & vm.Name
Wscript.Echo “MiB read from disk: ” & vm.DiskBytesRead / 1048576
Wscript.Echo “MiB written to disk: ” & vm.DiskBytesWritten / 1048576
NextAs you can see these disk counters usually report values in bytes. It is important to note that these counters are also reset to zero every time the virtual machine is turned off.
Related Articles:
SSH is one powerful tool. You can do just about everything under the sun using an SSH login to a remote computer. SSH works very well in low-bandwidth situations like dialup, or satlinks.
But wakeup, we’re no longer in the 80s - people want GUIs, let’s give them fancy-pants graphics, bouncing cursors and silly linux wizards. Remotely.
Enter Xming, what I would name as top of my favorite applications. Xming is just like X over SSH, for dummies (or people who would rather spend more time working).
Xming allows you to connect to remote or local Linux workstations and servers and run full graphical applications on those remote machines on your local Windows computer.
Here’s how it works: all of the applications are run remotely, but when it comes to the graphics, the information that would invoke the graphics is sent to your local computer, not a bitmap or a sequence of bitmaps like VNC. Xming uses a local X server on your Windows computer in order to display your remote applications. This local X server is 2D accelerated, and it’s sometimes difficult to even notice that you are working remotely.
Since Xming can run in windowed or full-screen modes, you can establish thin client connections in this fashion, or you can publish applications Citrix-style.
Xming is completely free to install and setup. It is a great way to manage virtual machines, and in fact is often faster than Microsoft’s Virtual Server ActiveX control (surprised?), VMWare’s Virtual Machine view (even with VMWare tools!), and even Parallels speedy virtual machine view.
To set the whole thing up, you’ll need a computer running Microsoft Windows, one Linux box, a network connection between the two, but you won’t need much effort.
First install the Windows Xming server on your Windows computer. We’ll use Windows XP SP2 in this example, but it could easily be other varieties. Xming can be found on Sourceforge quite easily, download it, run the install (use defaults), and start XLauncher.
On the Linux computer this are slighlty more complicated, but not by much. For Gnome or KDE on Ubuntu Edgy, go to the System>Administration menu in your menu bar. In Administration, we’ll select login preferences as we’ll be setting up a new logon method (we’re using XDMCP). Select the Remote tab, and enable remote logon (same as local) to your Edgy Eft machine.
Now on your Windows machine, set up XLaunch to logon to your Linux machine using it’s IP address. Save the setting if you want, and connect. You will be presented with a logon screen to your Linux desktop!
Related Articles:
UPDATE! The newest client found in the release candidate of Vista does not require MUI files at all. There is some speculation that this may in fact end up as the Windows XP RDP 6 client. Download RDP 6 Client for Windows XP using this link.
I’ve been trying to get the Remote Desktop Connection v6.0 client from Vista to run on Windows XP for months now. Microsoft has announced many times that it’s available tobeta testers through the Connect site, but try as I may I still can’t find it (I’m not alone). So I went ahead and popped the new RDP 6 client from Vista onto Windows XP and tried everything from dependency walking to regsitry hacks to get it going but to no avail. So i kept testing, and set up a Google alert to let me know if anyone had found a method or any information that I could use to get this done.
I got results from the hook today, and what a big fish it was. It seems that I had probably fixed it early on, but hadn’t followed the proper procedure of changing one setting, testing, then moving to the next. I had simply set up all the hacks I thought were needed and plowed ahead. This is what happens when you test with a bottle in hand.
So here is what I found out today: originally from a thread by Caelum over at AtomicPC, this quick hack allows you to install the Microsoft Vista RDP v6 client on a Windows XP computer. Caelum was trying to get widescreen working in RDP on XP, and most of you know that works fine already. But Caelum, you’ve solved another problem in the process!
The 6th iteration of the MSTSC binary has a bunch of outstanding feautures. The biggest one for me is better support for sound and video over terminal services, but also includes ClearType support for those with LCD monitors so fonts look much nicer now.
Let’s get cracking.
1. Download this MSTSC zip(1.3MB)
2. Unpack the ZIP file to a folder

3. Run the “Install.cmd” file
4. Once the installation has completed, press any key to close the window
5. The script does everything but copy the MUI files to SYSTEM32, so we’ll do that now: open your Windows folder, then SYSTEM32, and then en-US. Copy the *.MUI files from your unzipped folder to the en-US folder
6. Run your remote desktop connection application the same way you normally would

Note: If you use Windows XP 64bit Edition you’ll want to grab the 64bit bit files from a 64bit version of Vista.
Now we can connect to Vista and Longhorn Terminal Server using the most up to date client and test the new features offered by Remote Desktop Client 6. I’ve tested this out on both using my VMWare Server virtual machines and the results are very favorable so far - it’s faster than before!
Related Articles:
Whenever you start adding funny-flavored operating systems to a network, you eventually run into filesharing problems. Even if you only have a few machines, coming to a consensus on how to get files from point A to B can be quite taxing - especially if there’s work to be done.
Over the years I’ve tried FTP, Samba, NFS and a host of others. When configured well they work like a charm. However, when a new node joins the network (that shiny new Mac Pro of yours), things need to be reconfigured and can generally be a royal pain.
That has changed, though. We now have an acceptable solution that is free, easy to use and above all, secure. Introducing… SCP.
SCP has been around for a while now, and is gaining quite a bit of traction in the hosting world where it is (albeit slowly) starting to replace FTP for upload and download tasks. SCP stand for Secure Copy (CP being Copy on *nix variants). SCP works a lot like FTP in that you require an address to connect to, a username (login) and a password (we won’t get into stored keys today).
Now that we’ve decided what to try in our ad hoc network, how do we set it up? If you’re blessed with any variant of Linux or Unix, the work has been done for you already - the tools come with the operating system, and are generally found under the network tools in your fancy menus.
It’s a different story on Apple Macs and PCs, though. For example, Tiger comes with an SCP server, but no client. Right, about the Mac server. In order to activate it in Panther, Tiger and even Leopard, head on over to the System Preferences pane, and choose the Sharing applet (the folder with the caution sign on it). Once it has opened, check the Remote Login checkbox. This will enable SSH, and in turn, SCP. We’re halfway there. You can connect to an SCP server by using the Terminal on a Mac, but from what I can tell most Mac users are frightfully scared of it. But that gives me the oppurtunity to tell you about one of my favorite applications - Fugu (japanese for blowfish - and sporting a suitably cute icon to boot). Fugu allows you to connect to an SCP server to both download and upload files. Fugu is quite easy to use, so we won’t get into that, but will save it for another time if need be (just like stored keys). Oh, and as the screenshot shows you, it works with Mac OS X Server 10.4.7 too! (as well as Leopard)
In the PC world, WinSCP is Fugu’s sibling. You get an extremly easy to use interface, complete with drag and drop. Installation is a breeze, and best of all it’s free as in both beer and speech. Just like those soapbox ramblers. Getting a Windows SCP server is a bit more difficult, but currently exists in the form of BitVise WinSSHD. WinSSHD is slightly complicated, but most of the configuration is done during the installation procedure. They supply you with the needed variables, and one you have finished you will have set up an account you can use to test from your other workstations. The screenshot above was taken with the wonderful WinSnap - it comes highly recommended.
Let the cross-platform filesharing begin!
If you have any questions, or would like to suggest a topic for a future article, head on over to the blandname contact page and we’ll see what we can do!
Oh, and by the way, since you’ve noticed I always talk about virtualization, this certainly applies to getting files to and fro from your virtual machines in VMWare Server, Virtual Server (Virtual PC if need be) and Parallels - I have even found it to be faster than any other technique!
Related Articles:
Forget Windows Vista.
The real new, exciting operating system from Microsoft is on it’s way and is supposedly slated for January.
Here’s a shortlist of reasons why you should care and what to look for:
LLMNR - Have you ever had master WINS browser woes? Name resolution problems? Microsoft wants to make this a thing of the past. In my experience this has been one of the largest pains - when the master browser goes down you lose name resolution. LLMNR fixes that. I’m happy. Testing the current Windows Server Codename Longhorn on virtual networks has shown so far that it works as expected already. I’m still happy. Basically this is multicast DNS (mDNS). Follow the link for a nice wiki article that will surely convince you.
Core Server Mode - Longhorn has a new locked down mode meant for bare-bones brass tax servers. They call it Core. What this means to the regular Windows admin is that there are no more wizards. Heck, there’s no more standard graphical UI. You get a command-line shell (DON’T call this DOS, they’ll find you!) to play around with. Servers are configured via preconfiguration scripts, this shell, and remote administration tools. If this is as fast and secure as it is supposed to be, it’ll be gravy. What you DO get: DHCP server, DNS server, file server, active directory, read-only domain controller, cluster services, load balancing, and services for Unix. That’s right, services for Unix is there too.
Application Publishing - I covered application publishing in Longhorn previously, and it’s what I am most excited about, to be honest. Pick an application, fire up the wizard, make an RDP file and send away to clients (even older XP terminals) - it’s that easy. While this will take the bread out of a lot of app vendors hands, it also allows for a wealth of innovation and I simply can’t wait to see what happens here.
Remote Desktop Connection 6.0 - In the same vein, and under the Terminal Server umbrella, the Remote Desktop Connection client gets an update that adds some much-needed and oft-asked-for features. Namely: PnP redirection for media players and digicams, multiple monitor support (I’m talking to you, Bill), desktop theming, and single sign-on. Whew. I’ll have to get into this one later.
Sharepoint V3 - It’s bigger, badder, and better code for Sharepoint. Better integration with Office 2007, faster load times, more features (of course), and item-level access control. Not to mention RSS by default - that’s was the deal-closer for me. Nor more need for infinite emails sent via alerts - just use RSS! Much like Apple, Microsoft has become a fan of RSS and it’s good news all around.
IIS 7 - You’re laughing. I see you snickering. Yes IIS is used externally, and its market share is growing right now, funnily enough. In IIS 7.0 you get reduced attack surface through feature modules. This is marketing-speak that means you can disable IIS services you don’t need. You get easy replication using web configuration files. And lastly you get better admin tools. Well slightly better anyway. This isn’t Plesk, Ensim or CPanel, but it’ll have to do ’til those guys get around to supporting Longhorn.
That about sums up the good things I’ve seen and tested to date on my virtual machines (VMWare Server, Virtual Server R2 and Parallels). Feel free to chime in about what tickles your fancy or rattles your chains, I’m all ears.
Related Articles:
This is more of a teaser, but my dream has come true! Ruby on Rails is now installed by default on Apple Mac OS X 10.5 Beta (Leopard WWDC edition). Getting it up and running is really a snap.
Here’s the quick and dirty way to make a sample Rails environment and start the server.
Firstly, open the Terminal application. You know the scary black window with white text. Well actually it could even be white with black text - your mileage may vary (mine is black with green, for example).
Anyway, we’re wasting time - this is quick and dirty right? Otherwise I would be talking about chunky bacon.
In Terminal, type:
rails example
You’ll be met with a nice list of scrolling lines and when it’s done your “example” Rails application will have been initialised.
And that’s pretty well it!
Moving on, we want to see something tangible to prove to ourselves just how flippin’ impressive this really is, and why you knew when you saw that Apple Developper Connection article about Rails you knew good things were to come.
In Terminal, once more, sweating profusely now, we type:
cd example
ruby script/server
This runs the server for us. Once it has been set up, you can safely minimize the Terminal, and fire up Safari, Firefox, Camino, iCab, heck even Internet Explorer. We’re navigating ourselves to: 127.0.0.1:3000
Here’s what we find there (click the thumbnail to enlarge the screenshot):
The nitty-gritty (no dirt band):
- Ruby version - 1.8.4
- RubyGems Version - 0.9.0
- Rails version - 1.1.2
- Active Record version - 1.14.2
- Action Pack version - 1.12.1
- Action Web Service version - 1.1.2
- Action Mailer Version - 1.2.1
- Active Support version - 1.3.1
It’s set up in a development environment by default (where you want it), using the sqlite3 database adapter (pretty typical).
Next time we’ll show you how to update these and run irb. Until then feel free to vote in our poll and support us!
Related Articles:
I have recently purchased Parallels Compressor Server because I work with virtual machines on a daily basis and also because it is CHEAP. At $179 this is very affordable software, even for someone on a budget - like me. Why purchase the software? What Parallels Compressor Server does is pretty complicated, but it comes down to one thing: if you run a Windows XP SP2 or Server 2003 R2 virtual machine (VM), Parallels Compressor Server speeds it up insanely. It removes unwanted services, temp files, files you’ll never need in a VM, and the same goes for drivers. Parallels also tunes things like network drivers in order to take full advantage of the virtualization.
Installation is a snap. It’s pretty much next, next, next through the Windows client installation. You enter your key, and are allowed to make a CDROM image for later use with the VM. Use you have finished, you boot the VM using the CD image and start the process (which can take some time). Parallels Compressor Server does it’s magic, and you reboot. HUZZAH! Faster VM just like that.
Conclusion - you may run a free virtualization platform - but how fast is it? For $179, Parallels Compressor Server is a steal.
No disclaimers needed - I am in no way affiliated with the software, I’m just that impressed.
Related Articles:




Recent Comments