August 26, 2009
Likewise has a really impressive free product that lets Linux and OSX users integrate into an Active Directory environment very easily. In fact with linux I think it’s easier than with Windows!
In ubuntu you can install the likewise-open-gui package. For OSX you can download the installer package from the likewise.com website and follow the 10 minute setup guide.
Leave a Comment » |
DIY, OSX, Software, linux, networking, ubuntu |
Permalink
Posted by Pat McKay
April 13, 2009
It is pretty easy to get VMWare ESX installable working on a GX280. Boot from a CD burned from the ISO, and hit tab at the first prompt.
Add nocheckCPUIDlimit as a boot option. Here is the whole string:
mboot.c32 vmkernel.gz nocheckCPUIDlimit — binmod.tgz — ienviron.tgz — cim.tgz — oem.tgz — license.tgz — install.tgz
Proceed with the install.
When the system reboots, you will get an error message about the CPUID. The boot option needs to be changed again on the installed system.
Boot from a linux livecd (I used Ubuntu 8.04 desktop), and navigate to the “HYPERVISOR1″ partition. Edit boot.txt
Add the boot option there are well:
kernelopt=nocheckCPUIDlimit
Reboot and it should start right up.
Then connect to the server with VMWare Infrastructure Client
Click on the server name, then the Configuration tab, and advanced settings.
Click on VMKernel and uncheck the VMKernel.Boot.checkCPUIDlimt checkbox, and hit OK.
Now you can reboot it in the future without problems.
Leave a Comment » |
VMWare, linux, ubuntu |
Permalink
Posted by Pat McKay
March 7, 2009
As of ubuntu 8.04, the gnome bluetooth utility does not work by itself to enable a bluetooth mouse.
Here are the steps I had to go through to get my razer pro|click mobile working with my eee pc running eee ubuntu 8.04:
push the button on the bottom of the mouse
sudo hidd –search
Copy the mac address
sudo nano /etc/bluetooth/hcid.conf
add this at the bottom, replacing MOUSE_ADDR with device mac address:
device MOUSE_ADDR {
name “Bluetooth Mouse”;
}
save and exit file
/etc/init.d/bluetooth restart
sudo hidd –search
Leave a Comment » |
eee pc, linux, ubuntu |
Permalink
Posted by Pat McKay
March 1, 2009
SpokenWord.org is a website which takes shared web content into a new paradigm. It allows you to make a custom rss feed that is a conglomeration of feeds, which can be based on your own feeds, published feeds, or others’ spokenword custom feeds. I see it making podcasting truly useful for me.
The whole thing is really a database that links content from many places, runs it through filters, and spits out just what you want. It is amazing.
Leave a Comment » |
DIY |
Permalink
Posted by Pat McKay
February 20, 2009
Scalix 11.4 has fully functional CALDAV, which enables Thunderbird/Lightning and Evolution users to enjoy server based calendar functionality previously limited to Scalix Web Client and Outlook users. It works extremely well, and is really not too difficult to set up.
TB/TB-2008-01-CALDAV – Scalix Wiki
Leave a Comment » |
DIY |
Permalink
Posted by Pat McKay
February 20, 2009
As part of our recent infrastructure upgrade, we moved our mail server to a a new OS, on a new virtual machine. We also upgraded to the newest enterprise version of Scalix: from Scalix 10.0 on Fedora Core 5 to Scalix 11.4 on CentOS 5.2.
Here are what we determined would have been the optimum way to perform the upgrade.
Change ip address of old machine, and reboot.
Stop Scalix on old machine (omshut)
Set IP and hostname on new machine to match old machine’s settings. Test forward and reverse dns to make sure it is all consistent.
Install Scalix package on new machine, and make sure it it does not throw any errors.
Stop Scalix on new machine (omshut) Inbound and outbound mail will stop at this point.
Rename or move message store on new machine, to make room for the old message store. (mv /var/opt/scalix/sx /var/opt/scalix/sx.bak)
Copy message store from old machine to new one (I used rsync) This takes the longest time of anything.
run ompatchom to fixup the message store for the new version.
Leave a Comment » |
linux, scalix |
Permalink
Posted by Pat McKay
February 17, 2009
A regular system update within Ubuntu 8.04 broke the wifi drivers a Dell Vostro A860. Here’s all it took to get it going again:
Code:
mkdir ~/tmp
cd ~/tmp
Download madwifi hal driver:
Code:
wget http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz
… and extract it:
Go into source directory:
Code:
cd madwifi-hal-0.10.5.6-r3861-20080903/
… and run:
Code:
make
sudo make install
sudo reboot
From the bottom of this post.
Leave a Comment » |
DIY, linux, ubuntu |
Permalink
Posted by Pat McKay