Pages

Wednesday, December 29, 2010

CodeWeavers Crossover Come To The Light Sale

Codeweavers offers downloads of its Crossover Games for $39.95 and Crossover Professional for $69.95 If you apply coupon code "ComeToTheLight" this will drop CrossOver Games to $29.96 And Crossover Professional to $52.46 That's 20% off and the lowest total price we've seen since a 1-day sale in October 2009. CrossOver enables you to install Windows applications and games on Intel-based Macs and Linux.

Update 04/06/2023 : The ComeToTheLight dealcode has expired, you can now use "TOM23" as your dealcode and save 20% off CrossOver for Mac and Linux.

The new and improved CodeWeavers CrossOver version 9.2.1 was recently released, So if you need a Windows Application or Games to run on Linux or Mac OS X this is your chance to get it at 25% off the normal selling price.

CrossOver 9.2.1 contains many fixes to existing applications, and just generally makes the product better. As of this writing CrossOver has been merged with Wine 1.2.1 and contains many improvements for Internet Explorer, Microsoft Office, Quicken, PhotoShop and many other supported and none supported applications.

Second, the folks at CodeWeavers have re-written the entire user interface from scratch, and have created what they feel is a more intuitive installation process and user experience. The new user interface is written in GTK and the look and feel is much more intuitive then the older Tcl/TK UI that was used before this upcoming release.

Third, and perhaps most important, the CrossOver installer will now be directly linked to their online Compatibility database and allow people to install unsupported software via (recipes) contained on the Compatibility Center.

Here is a screenshot of the Crossover Professional 9.0 (UI) user interface.


Keep in mind this sale is for a limited time only, and may be discontinued at any time.

A Guide to Wine on Ubuntu for Beginners

This guide is divided in four parts, so that you can jump to whichever you want using the links below:

What Is Wine?
Installing Wine in Ubuntu (Two Methods)
Starting Up and Configuring Wine
Customizing Wine
What Is Wine?
Wine is a compatibility layer which allows Windows applications to run on Linux by translating Windows system calls into native Linux calls. Wine runs successfully a variety of Windows applications and games on Linux - the official website offers an application database which organizes those depending on how well they perform under Wine, known issues and solutions, screenshots and helpful comments.

You should give Wine a try if you have some Windows-only game or application that you really need and want to be able to use Linux for it.

Installing Wine in Ubuntu (Two Methods)
I will approach two different ways of installing the latest Wine release in Ubuntu: using the Wine PPA and compiling from source.
Using the Wine PPA

This method is pretty straightforward. First, we need to make sure that we uninstall any older version of Wine:
sudo apt-get remove --purge wine
Now, let's add the Wine PPA repository to our sources.list file:
sudo add-apt-repository ppa:ubuntu-wine/ppa
Finally, update the package lists and install Wine:
sudo apt-get update sudo apt-get install wine
This should be all.
Compiling Wine from source

This is usually not needed considering there is an updated repository available, but sometimes the PPA repository may have a delay until the packages are built and uploaded. Usually this happens immediately after a new version of Wine is released and there are no updated packages in the PPA. This is where compiling Wine from source could come in handy. Also, Ubuntu 10.10 Maverick Meerkat comes with the latest stable release of Wine, which is 1.2, so if you want the latest development release you will need to install it from the PPA or compile it from source.

First, make sure you have the sources repositories enabled, meaning a line that starts with deb-src is in your /etc/apt/sources.list file, like the following:
deb-src http://ro.archive.ubuntu.com/ubuntu/ maverick universe multiverse
If not, add it and save the file. Also, make sure to replace maverick with your actual Ubuntu version. Sources are enabled by default in Ubuntu, so you will probably need to do nothing at this step, unless you commented or deleted this line yourself.
Next, let's install the compilation tools, the needed development libraries and additional Wine dependencies:

sudo apt-get build-dep wine
sudo apt-get install libgsm1-dev libmpg123-dev
The first command will fetch the needed development libraries needed by Wine, together with the compilation tools like gcc. The second one will install two additional development libraries. Now, download the source tarball from the official website (direct link here), and then uncompress it by typing in a terminal (don't forget to make sure the current working directory is the one where you saved the tarball):
tar -xjf wine-1.3.9.tar.bz2
I used the latest version available at the time of writing, but replace the version number accordingly if it differs.

Next, enter in wine-1.3.9 directory and issue the following commands to compile and install it:
./configure
make
sudo make install
This will take a while, but in the end Wine should be properly installed. Alternately, you can specify a different installation prefix from the default, e.g.:
./configure --prefix=/home/USER/usr
In this case Wine will use /home/USER/usr (replace USER with your actual username) as the installation prefix, and you can issue make install as normal user, without the need of sudo. Notice that in this example Wine would install inside /home/USER/usr/bin/wine, so if you specify a different prefix don't forget to include the path to the Wine binary in your $PATH. Also notice that for older versions of Wine the commands needed to compile it should be ./configure; make depend && make; sudo make install.

If you need to uninstall Wine, issue the following command from within the wine-1.3.9 directory:
sudo make uninstall


Configuring Wine :

Winecfg

winecfg is used to configure Wine and change settings like sound, graphics, Windows version and so on. Wine uses the winecfg utility for configuration, which you can start either by typing winecfg in a terminal or pressing Alt+F2 and typing it there, followed by Enter. Note that the default settings usually will do, so it's not necessary to change the configuration options after installing Wine. When it starts for the first time, winecfg will prompt you to install Gecko, a web rendering engine used to embed HTML in applications (the same engine which is used by Firefox). It is recommended that you install it.

gecko

If you don't install Gecko now, you'll be prompted later when it is needed by some application or you will be able to install it manually using the winetricks script (which is explained below this section). After installing Gecko, let's have a look at the Wine configuration window:

wine_configuration

I'll briefly explain each tab:
  • Applications tab: this is used to set different Windows versions for different applications. The default (Windows XP) should be fine for most of them.
  • Libraries tab: here you can add dynamic link libraries (DLLs) and specify whether they should be a Wine builtin or a native Windows binary; this will be used to copy various libraries needed by certain games or applications to run properly.
  • Graphics tab: in this tab you can specify graphics settings, emulate a virtual desktop and choose its resolution, change Direct3D vertex shader options and set fonts dots per inch (DPI).
  • Desktop Integration tab: in this tab you will be able to change the look of Windows applications that run through Wine, and also to change the theme which it uses (this is explained below in the section Customizing Wine).
  • Drives tab: this tab allows you to set drive mappings, which will give Wine access to certain devices and drives on your system. Default is usually fine, but you may need to add an optical drive here for applications which require the CD or DVD.
  • Audio tab: the first time you click on this tab a message window will appear notifying you that a recommended driver has been selected. Click OK, then in the Audio tab click Apply. You can also test the sound using the Test Sound button. Default settings should be fine.
  • About tab: optionally you can fill in the Owner and Organization text fields (anything will do).
wine configuration

Winetricks

Winetricks is a powerful script which automates installation of various useful packages, offering a friendly interface to do so. Before downloading and using winetricks, first let's install the cabextract package, which is a native Linux application that extracts Microsoft Cabinet files (CAB), and is available in the repositories.

Friday, December 17, 2010

CodeWeavers 30% off Winter Solstice Sales on CrossOver Mac and Linux

While the big box stores and shopping malls run black Friday sales, and in recent years many of the online retailers have began to have black Monday sales. Leave it up to the wacky folks at Codeweavers to have a 30% off Winter Solstice Sales on CrossOver Mac and Linux.

Why a Winter Solstice sale you might ask, well you see CodeWeavers has their headquarters in Minneapolis St. Paul Minnesota and in Minnesota in the winter you measure snow by the feet and temperatures to the negative. So when the Solstice comes on December 21st, the beginning's of longer days and warmth are surly on the way. And this is a time of mass celebration on the magnitude of world cup winners, or your favorite team winning the super bowl. And in all this mass hysteria a thirty percent off sale was devised so everyone around the world can join in this festive time of the year.

This sale runs from now until December 20th 2010 and to take advantage of it just use "TOM23" as your dealcode in CodeWeavers store at checkout.

This is a good time to purchase CrossOver not only because you will save 30 percent off the normal retail selling price. And as a bonus to this discount in the next month or so CrossOver 10.0 will be released with many new and exciting features. And if you purchase now you can upgrade to CrossOver Pro or Games 10.0 when it's released.

This sale is open to anyone who needs to run Windows Applications and Games on Mac, Linux and FreeBSD. So please help spread the word and post about the "Solstice2010" sale on Facebook, your web site, and don't forget to send a tweet to all your friends and family.

Run Microsoft Windows Applications and Games on Mac, Linux or ChromeOS save up to 20% off  CodeWeavers CrossOver+ today.

Wednesday, December 15, 2010

Help spread the word about CrossOver for Linux and Mac

The folks over at CodeWeavers are having a get the word out campaign. If your a proud customer of theirs and would like to help them spread the word about the great products that they have, this would be a good time to do it. Ive personally used their products ever since CrossOver Plugin 1.0 first shipped and have always been satisfied with the product and support that I've received over the many years.

Spreading the word about CrossOver

Friends of CodeWeavers, unite! First of all, thank you very much for your support. We greatly appreciate everyone who has purchased a copy of CrossOver, or has worked hard as an Advocate to ensure that CrossOver continues to improve and run the apps that you need. Beyond that, though, we also really value those of you who help spread the word about CrossOver. Your favorable comments, both in person and on the Web, are absolutely some of the most powerful things you can do for us.

Link to CodeWeavers From Your Page

If you have a web page, blog, MySpace page, Facebook page, or whatever, we'd love to have a link from you. Here's are some graphics for your Mac or Linux PC that can show that you're a CodeWeavers customer. Simply copy the image and link to your site. You can link from the image hosted here or right click and save the image to your PC then upload it to your site and use the link provided here.

Also, please add a link to this page from your blog, facebook page, twitter, buzz account etc. etc... and help spread the word about spreading the word. :)

Thanks for your support!