How to connect Motorola V3X to ubuntu 7.04 trough USB

November 1st, 2007


View original post


In this tutorial we will learn how connect your Motorola V3X to ubuntu 7.04 trough USB

First of all, we will download the moto4lin utility from the repositories.

sudo aptitude update

sudo aptitude install moto4lin

Once installed, we need to change the configuration file of moto4lin.

cd $HOME/.qt

gedit moto4linrc

We change the old values to this ones. The most important values are, the device, product and vendor values. Those values are for the motorola V3X. Other motorola have different values. I’m sure you may look in web for those values or you may get them inside the moto4lin using inside preferences the update list button. You can activate the auto connect option too.

[device]
cfgACMdevice=/dev/ttyACM0
cfgATproduct=3002
cfgATvendor=22b8
cfgAutoConnect=1
cfgDetachDriver=0
cfgP2Kproduct=3001
cfgP2Kvendor=22b8

[filemanager]
cfgAutoExpandDirTree=0
cfgAutoUpdateFileList=1
cfgGoLastFolder=0
cfgLoadList=0

Now we are going to make a little script in our home directory to load the module and launch moto4lin.

moto4lin you need access from root login to work, so we make a sudo launch.

cd $HOME

gedit motorola

This will be the script:

sudo modprobe cdc_acm

sudo moto4lin

now we only need to allow execution for the script with chmod and we have our script.

chmod 700 motorola

./motorola

If all has gone right we will be able to connect our Motorola V3X by USB.

Tags: , , , ,

View source post

Monitoring Tomcat 5.0 on Ubuntu

November 1st, 2007


View original post


Monitoring Tomcat 5.0 on Ubuntu

This document describes how to set up and enable Hyperic HQ for monitoring
on Ubuntu and Tomcat. The resulting system provides a comprehensive, web-based
Systems Management Software. It’s the next stage of classical monitoring and
able to manage all kinds of operating systems, web servers, application servers
and database servers. The install comes prepared to monitor almost 70 different
technologies natively and provides many detailed features. For brevity sake, I
won’t list all of them here.
Hyperic HQ is available as an open source distribution licensed under the GPL
v2.

Read more…

View source post