Howto install Wine,µTorrent,Native Tray Icon in Debian

September 26th, 2007


View original post


This HOWTO will describe how to install uTorrent on your Debian Linux desktop using wine and how to get a more suitable tray icon using alltray.
Wine is an Open Source implementation of the Windows API on top of X, OpenGL, and Unix.

µTorrent is a lightweight and efficient BitTorrent client for Windows with many features.

First of all we need to add a new repo for this you need to edit the sources.list file

#vi /etc/apt/sources.list

Add this to the end of the file, save and quit:

deb http://eclipxe.com.mx/debian/ ./
deb-src http://eclipxe.com.mx/debian ./

Update the source list using the following command

# apt-get update

Now we will install Wine and Alltray

# apt-get install alltray wine

Download latest µTorrent from here

create a dir using the following command

#mkdir utorrent

go in to the utorrent directory

#cd utorrent

#wget http://download.utorrent.com/1.6.1/utorrent.exe

Get icon using the following command

#wget http://img400.imageshack.us/img400/5093/utorrenteh8.png

Now we will create a menu entry for uTorrent, so su to root again:

# vi /usr/share/applications/utorrent.desktop

You should now have an empty file, copy and paste this (and replace “USERNAME” with your actual username:

[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=uTorrent
GenericName=BitTorrent Client
Icon=/home/”USERNAME”/.utorrent/utorrenteh8.png
Exec=alltray --icon /home/”USERNAME”/.utorrent/utorrenteh8.png wine /home/”USERNAME”/utorrent/utorrent.exe
Path=
Terminal=false
MimeType=
Categories=Application;Network;

Save the file and exit.

You need to provide the Exe path according to where you want to keep utorrent .exe file

To refresh gnome-panel, issue this command

killall gnome-panel

µTorrent should now be found in the “Applications—>Internet” menu.

Tags: , , , , , ,

View source post

Integrating eAccelerator Into PHP5 (Debian Etch)

September 26th, 2007


View original post


Integrating eAccelerator Into PHP5 (Debian Etch)

This guide explains how to integrate eAccelerator into PHP5 on a Debian Etch system. From the eAccelerator project page: “eAccelerator
is a free open-source PHP accelerator, optimizer, and dynamic content
cache. It increases the performance of PHP scripts by caching them in
their compiled state, so that the overhead of compiling is almost
completely eliminated. It also optimizes scripts to speed up their
execution. eAccelerator typically reduces server load and increases the
speed of your PHP code by 1-10 times.”

Read more…

View source post