CrossOver Linux 6.0

Today, CodeWeavers have released their latest version of the CrossOver suite. CrossOver Linux 6.0 allows you to install and run natively a select few windows applications on top of a Linux system. The applications are installed inside Windows ‘bottles’. The CrossOver suite is based on the Wine application, but has lots of proprietary extensions. Wine is an Open Source implementation of the API on top of X and Unix.

My interest in the current version of CrossOver Linux 6.0 is it’s capability to run World Of Warcraft on Linux. If I had to run any other kind of Windows applications, I would run them inside a VMware virtual machine, but unfortunately 3D graphics are not accelerated in these VMware machines.

Using offline tools to prepare my entries

Getting WordPress running on my web server was easy, now I’m looking and testing at using tools to more easely upload content to the blog. I looked up what kind of tools existed, and I’m now giving my first try. Being able to create offline content and later upload it might be interesting, as I’m not always connected to the Internet.

Well… that didn’t seem to work…

Airsnort & VMware

On Fri, 18 Apr 2003 20:13:22 +0900, “nightmare” <nightm@hotmail.com> wrote:

>How can I setup airsnort with a wireless card ( orinoco ) on linux under vmware? (windows XP : host operating system Redhat Linux 7.3 : guest operating system)

 

It’s going to be difficult as VMware does not pass PCMCIA Devices over to the Guest VM machines (unless this is now supported in VMware WS 4 which I haven’t tested). Your only luck would be to have the Orinoco Wireless card on the PCI bus…

show original 

SSL cert request signed by Microsoft CA for Exim 4.10 with TLS

Here is a post I made to the Exim mailing list, on how to configure secure connectivty with TLS using a Microsoft Windows 2000 Certificate Authority. It’s a combination of using both an Open-Source application and an integrated Microsoft CA.

This is a bit off-topic, but I could not find much information about signing OpenSSL generated certificates with a Microsoft (Win2000 server) Certificate Authority and using these signed certificate for the TLS support in Exim 4.10. So here are the steps I followed to get a successfull result. There might be a better way, or easier one, but this has worked for me. I found myself in the situation of wanting TLS support for Exim 4.10, yet wanting to leverage the Certificate Authority in use in my company. This Certificate Authority runs on Microsoft Windows 2000 Server (SP3), and is in use for Certificate Revocation Lists (CRL) and Encrypted File System (EFS) recovery agents.I proceeded to generate an OpenSSL (0.96b) RSA key. I then moved the certificate.csr to the Microsoft CA and signed it [out of the scope of this email]. I then exported the signed certificate using the Base64 setting and with the Certification Chain (saves the information in the PKCS#7 format). Having moved the certificate.p7b back to my mail server, I used the following command to extract the information from the PKCS#7 to a temporary file and edit it to fit the parameters of a .crt fileopenssl pkcs7 -text -inform PEM -in certificate.p7b -print_certs > certificate.crt

I then edited the certificate.crt file to remove the CA’s certificate information and public key, leaving only the parts between CERTIFICATE and END CERTIFICATE. Extract of certificate.crt is below:

Certificate:
Data:
Version: 3 (0×2)
Serial Number:
12:21:1a:14:00:00:00:00:00:05
Signature Algorithm: sha1WithRSAEncryption
Issuer: Email=someone@xxxxxxxxxxxxx, O=John Doe, CN=Doe CA
Validity
Not Before: Sep 9 08:57:19 2002 GMT
Not After : Sep 9 08:57:19 2004 GMT
Subject:
Subject Public Key Info:
Public Key Algorithm: rsaEncryption
RSA Public Key: (1024 bit)
Modulus (1024 bit):
07:ec:a3:9a:4f:50:9a:a1:f2:eb:f9:ef:3a:8b:44:

hu6z5Lm8nkY=
—–END CERTIFICATE—–

One question I’m still considering, and I haven’t found on this mailing list or in some documentation, would it be possible to get EXIM to TLS encrypt outgoing SMTP connections with remote SMTP servers ? I understand that my EXIM server will not have the remote’s
TLS certificate, but does it really matter ? I think encrypting the SMTP traffic would be a nicer than having normal cleartext traffic.