Windows 7 Update Breaks VMware View Client: An Important Lesson In BYOD

By Mike S

What happens when a significant number of your users use their own devices at work (Bring Your Own Device — BYOD), and an OEM patch breaks the system for those users?

I have talked to several clients that want to move forward with BYOD initiatives, but are predictably cautious. Several have initiated small pilots with the goal of supporting a specific use case (e.g., iPads for c-level executives). Others are more cautious with planning and architecture and have yet to support any BYOD implementation. However, some clients are already using server-hosted virtual desktops (SHVD) to support call center employees that work from home. In some instances, those workers access their virtual desktops from personal PCs.

That leads us to a significant problem that occurred this week. A Windows 7 update broke the VMware View client. You can read about the problem in the VMware KB here. The problem can be resolved by upgrading the View client or by uninstalling the Windows 7 patches noted in the workaround here.

via Windows 7 Update Breaks VMware View Client: An Important Lesson In BYOD.

categoriaOff-Topic commentoNo Comments dataFebruary 10th, 2011
Leggi tutto

IPv4 Address Depletion Won’t Cause Stampede to IPv6

By Mike S

Good points:

But right now, there’s no reason to rush madly into IPv6. For one thing, there’s virtually no place on the public Internet that is using IPv6, so you will have few choices of destinations. One estimate I saw recently puts the number of IPv6 sites on the global Internet as less than two-tenths of a percent. While there are a few Websites that do allow connectivity using IPv6, those also allow IPv4 connections.

[...]

A move to IPv6 will free up IPv4 addresses for end users, for devices that can’t use IPv6 and for network infrastructure that isn’t or can’t be enabled for IPv6. Eventually, portions of the public Internet will start supporting IPv6, but it’s not going to happen overnight. And even when it does start to happen, the change won’t be all at once.

via IPv4 Address Depletion Won’t Cause Stampede to IPv6 – IT Infrastructure – News & Reviews – eWeek.com.

categoriaOff-Topic commentoNo Comments dataFebruary 4th, 2011
Leggi tutto

Businesses Thrive With Google Apps

By Mike S

TechRepublic presents a webcast featuring SmartPractice, and why they switched to Google Apps. (Free registration required to view the webcast.)

Businesses are increasingly turn to Google Apps as a versatile and affordable solution for effective business communication and collaboration. In addition to its strength as an alternative to more traditional on-site email, calendar, and sharing applications, Google Apps also works equally well on both PCs and Macs.

One such company is SmartPractice, a 500-employee marketing services company that helps healthcare providers build their practices through a variety of marketing channels, a process that requires intensive collaboration. With an aging on-premise solution that was prone to frequent crashes, difficult to support on Macs, and less-than-optimal with mobile devices, SmartPractice needed a more effective solution to better serve its business and ultimately decided to go with Google. Not surprisingly, the company now reports extremely high satisfaction among its users, most of whom will tell you that Google Apps has actually exceeded their expectations.

via Businesses Thrive With Google Apps | TechRepublic.

categoriaOff-Topic commentoNo Comments dataFebruary 1st, 2011
Leggi tutto

Tech giants to enable IPv6 on “World IPv6 Day” in June

By Mike S

It’s a one-day-only event, but it’s a start.

The Internet Society, an organization dedicated to the good of the Internet, is organizing “World IPv6 Day” on June 8 of this year. Web giants Facebook, Yahoo, and Google, with a combined one billion visitors per day, are participating by enabling IPv6 for their main services that day. Content distributors Limelight and Akamai are also joining the party by enabling their customers to participate. But unlike during the IETF IPv6 experiment, IPv4 won’t be turned off.

via Tech giants to enable IPv6 on “World IPv6 Day” in June.

See also:

Arbor Networks surveyed IPv6 adoption in the summer and found less than a tenth of a percent of all traffic used IPv6, “almost below the threshold of what we could measure,” according to Craig Labovitz, the chief scientist at Arbor Networks.

via  IPv4 Address Exhaustion Not Instant Cause for Concern with IPv6 in Wings – IT Infrastructure – News & Reviews – eWeek.com.

categoriaOff-Topic commentoNo Comments dataFebruary 1st, 2011
Leggi tutto

Dell Offers VMware Plug-In for PowerEdge Servers

By Mike S

Dell is building up its system management capabilities to make it easier for customers to monitor and manage their PowerEdge servers in virtualized data centers.

Dell officials on Jan. 19 announced several enhancements to its systems management portfolio, including the Dell Management Plug-in for VMware vCenter, which enables IT administrators to do a wide variety of server tasks—from provisioning bare metal servers to deploying hypervisors to updating firmware and BIOS—directly from VMware’s vCenter management console.

[...]

With the VMware plug-in the cost is contingent on the number of 11th-generation PowerEdge servers that are being managed via VMware’s vCenter, Iler said. Pricing starts at $299 for three servers, and goes to $799 for 10 servers, $1,799 for 50 and $2,999 for 1,000 systems.

This is very handy indeed, although I don’t forsee smaller companies paying for the feature very frequently.

via Dell Offers VMware Plug-In for PowerEdge Servers – IT Infrastructure – News & Reviews – eWeek.com.

categoriaOff-Topic commentoNo Comments dataJanuary 19th, 2011
Leggi tutto

Building httpd-2.2.17 RPM from a tarball

By Mike S

I have a few CentOS 5.4 webservers to upgrade from httpd 2.2.3 to 2.2.17, but 2.2.17 isn’t available as an RPM from in any repository that I can find, so I’m making my own.  Here’s how I did it.

First, I built a new CentOS 5.4 x64 virtual machine on a spare 64-bit VMware vCenter server using the same ISO as my production machines.  This VM will have a plethora of build and development tools that I don’t need or want in production.

Then, I googled around and found some helps on setting up an RPM build environment, including wiki.centos.org, and OwlRiver.com.

Next, I logged in as root, and:

# yum update
# yum groupinstall "Development Tools"
# yum install rpmdevtools rpm-build  redhat-rpm-config  openssl-devel

Create a user to run the build process, and then become that user:

# /usr/sbin/useradd rpmbuilder
# su - rpmbuilder

Set up rpmbuilder’s environment, using the Owl River’s tips:

$ wget http://www.oldrpm.org/hintskinks/buildtree/RPM-build-tree.txt
$ chmod 755 RPM-build-tree.txt
$ ./RPM-build-tree.txt

Then wget httpd-2.2.17.tar.gz from one of the Apache mirrors, and try a build and see what else is needed. (NOTE: httpd includes an httpd.spec file in the root of the tarball, which greatly simplifies building an RPM from the source — we do not need to create a .spec file to guide the creation of the RPM. If you want to modify the build parameters of the RPM, extract the .spec file (tar zxvf httpd-2.2.17.tar.gz httpd.spec), modify it, and then specify your .spec file with rpmbuild --rmspec httpd.spec.)

$ rpmbuild -tb httpd-2.2.17.tar.gz
error: Failed build dependencies:
apr-devel is needed by httpd-2.2.17-1.x86_64
apr-util-devel is needed by httpd-2.2.17-1.x86_64
openldap-devel is needed by httpd-2.2.17-1.x86_64
db4-devel is needed by httpd-2.2.17-1.x86_64
expat-devel is needed by httpd-2.2.17-1.x86_64
pcre-devel >= 5.0 is needed by httpd-2.2.17-1.x86_64
/usr/bin/apr-1-config is needed by httpd-2.2.17-1.x86_64
/usr/bin/apu-1-config is needed by httpd-2.2.17-1.x86_64

When you weren’t looking, I added rpmbuilder to the sudoers file. If you didn’t do that, switch back to root and install the missing packages, but as for me, I sudo-install them as my rpmbuilder

$ sudo /usr/bin/yum install apr-devel apr-util-devel openldap-devel db4-devel expat-devel pcre-devel

And try, try, again:

$ rpmbuild -tb httpd-2.2.17.tar.gz

(Lots of text scrolls past, ending with:

configure: error: distcache support failed: can't include distcache headers
error: Bad exit status from /var/tmp/rpm-tmp.71094 (%build)

RPM build errors:
    Bad exit status from /var/tmp/rpm-tmp.1844 (%build)

Install distcache, then try again.
$ sudo yum install distcache distcache-devel
$ rpmbuild -tb httpd-2.2.17.tar.gz

It builds and builds and builds… it’s working! And you are rewarded with this output:

Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.55847
+ umask 022
+ cd /home/rpmbuilder/rpmbuild/BUILD
+ cd httpd-2.2.17
+ rm -rf /var/tmp/httpd-2.2.17-1-root
+ exit 0

Look in the RPMs/arch/ dir for the product of your (or my) hard work:

$ ls rpmbuild/RPMS/x86_64/
httpd-2.2.17-1.x86_64.rpm httpd-devel-2.2.17-1.x86_64.rpm mod_ssl-2.2.17-1.x86_64.rpm
httpd-debuginfo-2.2.17-1.x86_64.rpm httpd-manual-2.2.17-1.x86_64.rpm

Copy httpd-2.2.17-1.x86_64.rpm to a test/dev/QA machine, install it, test your websites, and then repeat in production.

Welcome to 2.2.17!

categoriaHow-To, Off-Topic, Security commento5 Comments dataJanuary 14th, 2011
Leggi tutto

Google Adds DKIM for Google Apps to Address Spam

By Mike S

This’ll be a handy addition for any company that already uses DKIM for their non-Google email, such as marketing email, or transactional email from webservers;  They’ll now be able to post a policy that all their email will be signed, rather than just some of it.

Google is taking on spam with an extra layer of e-mail authentication for Google Apps users.

The company announced today it is making it possible for all Google Apps users to sign their outgoing messages with DomainKeys Identified Mail (DKIM) so that their mail is less likely to get stopped by recipients’ spam filters. Google Apps administrators can enable DKIM signing in the ‘Advanced Tools’ tab of the control panel.

via Google Adds DKIM for Google Apps to Address Spam – Security – News & Reviews – eWeek.com.

categoriaOff-Topic commentoNo Comments dataJanuary 6th, 2011
Leggi tutto

New email delivery controls for Google Apps Administrators

By Mike S

Great news – I have one client who’s been waiting for this functionality before making The Switch.

Google Apps administrators can now create policies specifying who their users can communicate with over email, and administrators can tailor these policies for different groups of users.

For example, school faculty and staff can have unrestricted email access while students have the freedom to send and receive emails within the school community but are protected from unwanted email interactions with outsiders.

via Google Apps update alerts: New email delivery controls for Google Apps Administrators.

categoriaOff-Topic commentoNo Comments dataJanuary 5th, 2011
Leggi tutto

Google serves hot Gingerbread, unveils Android 2.3 and Nexus S

By Mike S

Google has revealed Android 2.3, codenamed Gingerbread, a new version of its popular mobile platform. It introduces a handful of modest user interface enhancements—such as a more refined touchscreen keyboard—and brings some noteworthy performance improvements that are largely intended to boost Android gaming.

Alongside the release of Android 2.3, Google has also announced plans to launch the Nexus S, a new smartphone that was developed in collaboration with Samsung. Much like Google’s Nexus One, the new phone in the Nexus series will be available unlocked with a pure Google experience. The unlocked version will be sold at Best Buy for $529 without subsidy, and T-Mobile will be selling it on contract for $199.

The aptly named Nexus S looks like the love child of the Nexus One and the Samsung Galaxy S. The touchscreen-only device has a four-inch curved “contour” Super AMOLED display, 1Ghz Hummingbird processor, 1GB of internal storage, and a 1500 mAH battery rated for 6.7 hours of talk time. The handset showcases some of the new hardware features of Android 2.3, such as support for near-field communication (NFC), which can be used for close-range contactless data exchange.

via Google serves hot Gingerbread, unveils Android 2.3 and Nexus S.

categoriaOff-Topic commentoNo Comments dataDecember 6th, 2010
Leggi tutto

Global pool of IPv4 addresses set to run dry in weeks

By Mike S

It could very well be worth making sure you’re IPv6 compatible… just in case The Switch happens sooner than later.

Yesterday, the Internet Assigned Numbers Authority (IANA, part of ICANN), allocated two blocks of 16.8 million IPv4 addresses to the RIPE NCC and another two blocks to ARIN. The RIPE NCC and ARIN are the Regional Internet Registries that give out IP addresses in greater Europe and North America, respectively. This brings the global pool of still available “/8″ address blocks that IANA maintains from 11 down to 7.

via Global pool of IPv4 addresses set to run dry in weeks.

categoriaOff-Topic commentoNo Comments dataDecember 1st, 2010
Leggi tutto