A few days ago, I mentioned that I had found an awesome open source web conferencing software (ala WebEx) called Big Blue Button. I am now looking at alternatives to BBB.
Don't get me wrong, I really, really like Big Blue Button. It just seems to me to be a bit more of a developers tool. It doesn't integrate well with things that I would see a business needing, such as with calendaring systems for scheduling meetings in advance. Granted, they do say it is intended for educational institutions and not for the corporate world. There are some integrations already built for several Content Management Systems, but those are no good if you don't have a need for a CMS. I even tried one of those integrations and found that it still lacked certain features that I wanted. They do offer an API so you can perform such integrations with your existing applications, but if you're not a developer, you might just be wasting your time.
Right now my focus is on a project called OpenMeetings. Honestly, I don't like it as much as Big Blue Button, but it seems to fit all my needs. I can even tell OpenMeetings to allow my Active Directory users to log in and schedule meetings instead of having to maintain a separate database of user accounts. There are some things that bother me about OpenMeetings, though. One of which is the lack of a "raise hand" button. You can achieve the same result by clicking on a button that is used to request "Moderator" permissions. It will show up on the screen as "<user> has a question". It will have a check mark and an "X" next to it. If the moderator clicks the check mark, then that user will be granted "Moderator" permissions for that meeting. This can be misleading as it never says, "so and so is requesting new permissions", it just says "so and so has a question". Little stuff like that always finds a way to irk me.
Overall, OpenMeetings does seem to put me much closer to an out-of-the-box experience than Big Blue Button. And that's the reason I'm now putting my focus into using OpenMeetings.
Monday, December 26, 2011
Migrating Exchange Mailboxes from Exchange 2003 to Exchange 2010
After adding an Exchange 2010 server to my lab, I wanted to shut down my Exchange 2003 server. Before I could do that, though, I needed to migrate the Exchange 2003 mailboxes to the new 2010 database. Fortunately, this can be done from the EMC on the 2010 server.
Unfortunately, after I tried to migrate one of the mailboxes, I noticed that the process was failing after a couple of minutes. I fired up the handy dandy Exchange 2010 Powershell prompt and used the command "get-moverequeststatistics -id <mailbox name>. It showed me that it was failing at 95% completion due to a problem with msExchVersion.
I fired up ADSI Edit and located msExchVersion in the schema for that particular user. Sure enough, it was null. I guess the migration process was expecting some value there and failing because the field was empty. I looked at that field on a user I had added an Exchange 2010 mailbox for and just copied the value for msExchVersion to each of my old 2003 mailbox users. After doing that the migration worked without a hitch.
I'm sure there must be some way to correct this in one fell swoop, but since I didn't have that many accounts, I chose to just add the value to each user manually. This would have been a pain in a large organization, though.
Unfortunately, after I tried to migrate one of the mailboxes, I noticed that the process was failing after a couple of minutes. I fired up the handy dandy Exchange 2010 Powershell prompt and used the command "get-moverequeststatistics -id <mailbox name>. It showed me that it was failing at 95% completion due to a problem with msExchVersion.
I fired up ADSI Edit and located msExchVersion in the schema for that particular user. Sure enough, it was null. I guess the migration process was expecting some value there and failing because the field was empty. I looked at that field on a user I had added an Exchange 2010 mailbox for and just copied the value for msExchVersion to each of my old 2003 mailbox users. After doing that the migration worked without a hitch.
I'm sure there must be some way to correct this in one fell swoop, but since I didn't have that many accounts, I chose to just add the value to each user manually. This would have been a pain in a large organization, though.
Exchange 2010: Changes to New User Setup Process
Before, with Exchange 2003, adding new users with email addresses could be done completely from within Active Directory Users and Computers (ADUC). You could even do this from, let's say, an XP workstation. You just needed to have the adminpak installed for ADUC and the Exchange System Management tools from the Exchange 2003 installation media. That process has now changed with Exchange 2010.
Now you can use ADUC to add a new user, but you can't add the mailbox for the user. You have to use the Exchange Management Center (EMC) to do that. Of course, since Exchange 2010 only comes in a 64-bit flavor, there is no EMC for 32-bit platforms. So if your usual workstation doesn't have a 64-bit version of Windows above the XP version (XP won't work with Exchange 2010 EMC), then you are out of luck. You'll have to remote into your Exchange server to manage the mailboxes for your organization.
You could start by using EMC to add a new user instead of using ADUC. It will create the user and the mailbox. However, it won't let you do things like modify group memberships, so you'll end up having to use ADUC anyway.
Maybe it's just me, but this seems like a step in the wrong direction.
Now you can use ADUC to add a new user, but you can't add the mailbox for the user. You have to use the Exchange Management Center (EMC) to do that. Of course, since Exchange 2010 only comes in a 64-bit flavor, there is no EMC for 32-bit platforms. So if your usual workstation doesn't have a 64-bit version of Windows above the XP version (XP won't work with Exchange 2010 EMC), then you are out of luck. You'll have to remote into your Exchange server to manage the mailboxes for your organization.
You could start by using EMC to add a new user instead of using ADUC. It will create the user and the mailbox. However, it won't let you do things like modify group memberships, so you'll end up having to use ADUC anyway.
Maybe it's just me, but this seems like a step in the wrong direction.
Gparted: Extend Virtual Windows Server Disk
I just setup a Windows Server 2008 machine in my lab to host Exchange 2010. I use VirtualBox for my lab, by the way. I had added two disks to this particular virtual machine, one for the OS and one for data. The OS disk was only 20 GB, which ran out pretty quickly. So I simply added yet another (much larger) virtual disk and booted using a Gparted Live CD. Then I simply used the dd command to copy everything from the smaller disk onto the larger disk.
After the copy, the new disk showed that it had a 20 GB partition and the rest of the space on the new disk was not partitioned. Still using Gparted, I chose to extend the partition on the disk to include the extra space. All in all, this gave me 40 GB total.
Everything looked good, so I rebooted and was greeted with an error when trying to boot into Windows 2008. No problem. I booted the machine from the Windows 2008 install disc and chose the repair option. In some other versions of Windows, choosing the repair option will cause Windows to attempt to discover and repair any errors it finds. However, Windows 2008 is a little different. It will give you some options including restoring from a recent backup or launching a command prompt.
I chose to launch the command prompt. Immediately after opening the prompt, I simply changed my directory to "recovery" and ran "StartRep.exe". It ran for a moment and after I restarted again I was able to boot my machine normally. When it started back up, my OS disk was now showing as the full 40 GB in Windows.
After the copy, the new disk showed that it had a 20 GB partition and the rest of the space on the new disk was not partitioned. Still using Gparted, I chose to extend the partition on the disk to include the extra space. All in all, this gave me 40 GB total.
Everything looked good, so I rebooted and was greeted with an error when trying to boot into Windows 2008. No problem. I booted the machine from the Windows 2008 install disc and chose the repair option. In some other versions of Windows, choosing the repair option will cause Windows to attempt to discover and repair any errors it finds. However, Windows 2008 is a little different. It will give you some options including restoring from a recent backup or launching a command prompt.
I chose to launch the command prompt. Immediately after opening the prompt, I simply changed my directory to "recovery" and ran "StartRep.exe". It ran for a moment and after I restarted again I was able to boot my machine normally. When it started back up, my OS disk was now showing as the full 40 GB in Windows.
Labels:
dd,
extend disk,
gparted,
recovery,
repair,
startrep,
windows 2008,
windows server
Thursday, December 22, 2011
Open Source Web Conferencing
I was recently asked to setup Skype at work for some clients so they could video conference with each other. Being the way that I am, I immediately started thinking of alternatives to Skype. I wanted to see if there was anything that was out there that offered more features and was free and/or open source. I managed to find Big Blue Button today.
With Big Blue Button, you can create a meeting and it will give you a link you can send to anyone you want to participate. It looks like it was designed primarily for use with distance learning programs, but it could definitely be used by anyone looking for a good web conferencing software. It can be used in conjunction with VOIP so callers can join a bridge and be part of the conference. Other than that, you can just surf over to the web link to join a meeting.
Once in a meeting, you can share a presentation with the meeting attendees (PDF and most MS Office file formats appear to work) and share your desktop, webcam, or microphone. It supports a whiteboarding feature that lets you markup your presentation. And of course, it has chat functionality that lets you either chat with everyone or have private conversations with attendees.
We have always used WebEx where I work for business meetings and presentations, but I haven't been able to find anything that we use it for that we can't do with Big Blue Button.
I'm going to continue playing with it in my test lab. I'll post here with any cool new features that I uncover while messing around with it.
With Big Blue Button, you can create a meeting and it will give you a link you can send to anyone you want to participate. It looks like it was designed primarily for use with distance learning programs, but it could definitely be used by anyone looking for a good web conferencing software. It can be used in conjunction with VOIP so callers can join a bridge and be part of the conference. Other than that, you can just surf over to the web link to join a meeting.
Once in a meeting, you can share a presentation with the meeting attendees (PDF and most MS Office file formats appear to work) and share your desktop, webcam, or microphone. It supports a whiteboarding feature that lets you markup your presentation. And of course, it has chat functionality that lets you either chat with everyone or have private conversations with attendees.
We have always used WebEx where I work for business meetings and presentations, but I haven't been able to find anything that we use it for that we can't do with Big Blue Button.
I'm going to continue playing with it in my test lab. I'll post here with any cool new features that I uncover while messing around with it.
Fog Follow Up
I just wanted to take a moment to follow up with my last post on using the Fog Project to image workstations. My last post centered around the use of Fog on a private LAN. However, you can also use Fog on your existing network. You would just need to install it and tell it not to use a local DHCP server. You would instead need to configure your existing DHCP server with the appropriate options to PXE boot the workstations on your network.
You can also include the Fog agent on your image, so workstations can check in with the Fog server periodically for tasks that should be performed. This is not limited to imaging tasks, either. You can schedule software installations such as Microsoft Office using Fog "snap-ins". You can even instruct the workstations to perform virus scans using ClamAV. It is a full-featured imaging solution that rivals any that I've ever used before, including pricier options that companies tend to choose because they might not know about Fog. It even has a mobile interface that you can access from your smart phone.
However, I wouldn't rely on Fog alone for your inventory purposes. For that, I'd have to recommend OCS Inventory NG. It's also a free product that reminds me a lot of Microsoft's SMS server. It also uses an agent/server model. It can be used to deploy software and to maintain a single place for storing hardware and software inventory. If you need to know which workstations have a certain version of Office installed, for instance, you would only need to check in OCS Inventory to get that information. Very nice when it comes time to evaluate all your software licenses.
I'm thinking about creating some how-to's and maybe some videos on how to get up and running with Fog and OCS Inventory NG. I'll see what I can come up with and when I have something worthwhile I'll post it on this blog.
You can also include the Fog agent on your image, so workstations can check in with the Fog server periodically for tasks that should be performed. This is not limited to imaging tasks, either. You can schedule software installations such as Microsoft Office using Fog "snap-ins". You can even instruct the workstations to perform virus scans using ClamAV. It is a full-featured imaging solution that rivals any that I've ever used before, including pricier options that companies tend to choose because they might not know about Fog. It even has a mobile interface that you can access from your smart phone.
However, I wouldn't rely on Fog alone for your inventory purposes. For that, I'd have to recommend OCS Inventory NG. It's also a free product that reminds me a lot of Microsoft's SMS server. It also uses an agent/server model. It can be used to deploy software and to maintain a single place for storing hardware and software inventory. If you need to know which workstations have a certain version of Office installed, for instance, you would only need to check in OCS Inventory to get that information. Very nice when it comes time to evaluate all your software licenses.
I'm thinking about creating some how-to's and maybe some videos on how to get up and running with Fog and OCS Inventory NG. I'll see what I can come up with and when I have something worthwhile I'll post it on this blog.
Sunday, December 11, 2011
Imaging Workstations with the Fog Project
I needed a plan for imaging a bunch of workstations for a new office that we're setting up. That's when I remembered Fog. Fog is a free and open source imaging solution that runs on Linux. Its intended purpose is to aid with imaging Windows operating systems. Since I'm dealing with Windows XP, that's perfect for my situation.
I ended up installing Fog 0.32 onto Ubuntu 10.04 LTS because it installs cleanly (read: no dependency hunting). That machine acts as the imaging server and I can control it using the Fog web interface from any machine on the same network. From there, I can create new images and deploy existing images.
Most of the image creation process is done outside of Fog, though. I simply follow the guidelines for using Microsoft's Sysprep tool. Then once I have done that, I choose to upload the image to Fog. Once it's there, it is available to be deployed to other workstations.
My requirement so far has been that the solution will need to be completely off of our network, meaning it has to be on its own private LAN. On top of that, I'm talking about imaging 100+ workstations.
Since it's on a private LAN, Fog supports using a local DHCP server on the machine you've installed it on. This is the way I've got it setup now. Other machines on the same private network will be able to PXE boot to a Fog menu. The default option in the menu is to just boot the local hard drive. Before you can image a machine, you have to choose the option in the menu to quick register the host. After that, the machine shows up in the web interface and you can now send an image task to it.
However, I don't want to have to go around to over 100 PCs and manually choose to register them. That's where Capone comes into play. Capone is a Fog plugin that is actually included with Fog, but just needs to be enabled through the web interface. Capone lets you associate an image with a particular PC type. This can be a specific system identifier, BIOS vendor, etc. Then anytime a matching PC is plugged into the imaging network and PXE boots, there will be a Capone option in the Fog menu that will deploy the image to the PC. So far so good!
The new dilemma: I don't want to go around to over 100 PCs and manually choose the Capone option from the menu, either. Fortunately, you can change the default option by editing a file on the Fog server itself. You can't, as far as I can tell, change this using the web interface. But it can be done, that's what is important. So I just set Capone to be the default option. Now all I have to do is connect a bunch of machines to the same switch the Fog server is on and power them up. As long as they are all set to PXE boot, they'll all start to receive the image.
Even though, there are no plans to move this onto our network at this time, there are some cool features that you can use with Fog to manage your already imaged workstations. Plus you would have the ability to image PCs while they are on someone's desk without needing to move them to your private LAN. Of course, to do any of this, the machines will need to be registered with Fog. Capone doesn't do any type of registration. After the machines are imaged and deployed, my thought is that I could use a script to collect each machine name and MAC address into a csv file. Then, though the Fog web interface, I can upload the csv to add the hosts. I would probably also build an additional Fog server to go on the public network. I think it would be a good idea to keep the private server for large imaging tasks (e.g. large equipment purchases).
All in all, Fog is a fantastic solution. It, in my opinion, beats the pants off Symantec Ghost and CloneZilla. If you work for an organization that does a lot of imaging, I would highly suggest you at least try it out. And kudos to the Fog developers.
I ended up installing Fog 0.32 onto Ubuntu 10.04 LTS because it installs cleanly (read: no dependency hunting). That machine acts as the imaging server and I can control it using the Fog web interface from any machine on the same network. From there, I can create new images and deploy existing images.
Most of the image creation process is done outside of Fog, though. I simply follow the guidelines for using Microsoft's Sysprep tool. Then once I have done that, I choose to upload the image to Fog. Once it's there, it is available to be deployed to other workstations.
My requirement so far has been that the solution will need to be completely off of our network, meaning it has to be on its own private LAN. On top of that, I'm talking about imaging 100+ workstations.
Since it's on a private LAN, Fog supports using a local DHCP server on the machine you've installed it on. This is the way I've got it setup now. Other machines on the same private network will be able to PXE boot to a Fog menu. The default option in the menu is to just boot the local hard drive. Before you can image a machine, you have to choose the option in the menu to quick register the host. After that, the machine shows up in the web interface and you can now send an image task to it.
However, I don't want to have to go around to over 100 PCs and manually choose to register them. That's where Capone comes into play. Capone is a Fog plugin that is actually included with Fog, but just needs to be enabled through the web interface. Capone lets you associate an image with a particular PC type. This can be a specific system identifier, BIOS vendor, etc. Then anytime a matching PC is plugged into the imaging network and PXE boots, there will be a Capone option in the Fog menu that will deploy the image to the PC. So far so good!
The new dilemma: I don't want to go around to over 100 PCs and manually choose the Capone option from the menu, either. Fortunately, you can change the default option by editing a file on the Fog server itself. You can't, as far as I can tell, change this using the web interface. But it can be done, that's what is important. So I just set Capone to be the default option. Now all I have to do is connect a bunch of machines to the same switch the Fog server is on and power them up. As long as they are all set to PXE boot, they'll all start to receive the image.
Even though, there are no plans to move this onto our network at this time, there are some cool features that you can use with Fog to manage your already imaged workstations. Plus you would have the ability to image PCs while they are on someone's desk without needing to move them to your private LAN. Of course, to do any of this, the machines will need to be registered with Fog. Capone doesn't do any type of registration. After the machines are imaged and deployed, my thought is that I could use a script to collect each machine name and MAC address into a csv file. Then, though the Fog web interface, I can upload the csv to add the hosts. I would probably also build an additional Fog server to go on the public network. I think it would be a good idea to keep the private server for large imaging tasks (e.g. large equipment purchases).
All in all, Fog is a fantastic solution. It, in my opinion, beats the pants off Symantec Ghost and CloneZilla. If you work for an organization that does a lot of imaging, I would highly suggest you at least try it out. And kudos to the Fog developers.
Labels:
clonezilla,
fog,
fog project,
ghost,
ghosting,
imaging,
workstation imaging
Subscribe to:
Posts (Atom)