I found this pic on the internet. A wonderful comparison of 1 GB manufactured by IBM 20 years ago and an 1 GB SD Card by Kingston available on market now. Click on the image to see a bigger image.
Tuesday, September 25, 2007
1 GB - 20 years ago and now
Posted by haricharan at 9/25/2007 08:35:00 PM 0 comments
Labels: 1 GB, 20 years, comparison, technology
Thursday, September 06, 2007
Compiling libjingle on Ubuntu Feisty Fawn or Ubuntu Gutsy Gibbon
My first compilation was on Ubuntu 7.04 installed on VMware as guest and i was testing it with Win XP Pro as the host. libjingle worked great for me.
I followed the links given below to compile libjingle on Ubuntu 7.04 (Feisty Fawn)
http://groups.google.com/group/google-talk-open/browse_thread/thread/bf92d054c144f167
http://www.francisrobichaud.com/index.php/2007/05/22/guide-to-compiling-libjingle-040/
Now download the libjingle from Google Code
libjingle-0.4.0
tar zxf libjingle-0.4.0.tar.gz
sudo mkdir /opt/libjingle
cd libjingle-0.4.0
./configure --prefix=/opt/libjingle
The output you get would be like this:
libjingle 0.4.0
Supported Examples: call pcp
Supported Codecs:
Speex: yes
iLBC: yes
MULAW: yes
Continuing with instructions
make
You wud get errors when compiling with gcc other that version 4.0.x. Feisty has version 4.1.2 installed by default and Gutsy would have a higher version i believe. You dont have to install gcc-4.0.0 or gcc-4.0.4 to make libjingle work. You just need to tweak the source code a bit.
make && make check
sudo make install
Testing libjingle
I followed the links given below to compile libjingle on Ubuntu 7.04 (Feisty Fawn)
http://groups.google.com/group/google-talk-open/browse_thread/thread/bf92d054c144f167
http://www.francisrobichaud.com/index.php/2007/05/22/guide-to-compiling-libjingle-040/
- First install all the build tools.
sudo apt-get install build-essential - Install all the dependencies.
sudo apt-get install libexpat1 libexpat1-dev libspeex1 libspeex-dev libssl-dev openssl
sudo apt-get install libasound2-dev
This step is important, otherwise libjingle make would give an error when you want to compile with speex. - Download and install the following packages
- Speex-1.1.11.1
http://downloads.us.xiph.org/releases/speex/speex-1.1.11.1.tar.gz
You might get a dependency error of libogg not found.
sudo apt-get install libogg-dev
tar zxf speex-1.1.11.1.tar.gz
cd speex-1.1.11.1
./configure
make
sudo make install - Ortp-0.7.1 (Only this version works)
http://download.savannah.nongnu.org/releases/linphone/ortp/sources/ortp-0.7.1.tar.gz
You might get a dependency error of glibc not proper version
sudo apt-get install libglib2.0-dev
tar zxf ortp-0.7.1.tar.gz
cd ortp-0.7.1
./configure
make
sudo make install - iLBC
http://download.savannah.gnu.org/releases/linphone/1.7.x/sources/msilbc-2.0.0.tar.gz
tar zxf msilbc-2.0.0.tar.gz
cd msilbc-2.0.0
tar zxf ilbc-rfc3951.tar.gz
cd ilbc-rfc3951
./configure --prefix=/usr
make
sudo make install
- Speex-1.1.11.1
Now download the libjingle from Google Code
libjingle-0.4.0
tar zxf libjingle-0.4.0.tar.gz
sudo mkdir /opt/libjingle
cd libjingle-0.4.0
./configure --prefix=/opt/libjingle
The output you get would be like this:
libjingle 0.4.0
Supported Examples: call pcp
Supported Codecs:
Speex: yes
iLBC: yes
MULAW: yes
Continuing with instructions
make
You wud get errors when compiling with gcc other that version 4.0.x. Feisty has version 4.1.2 installed by default and Gutsy would have a higher version i believe. You dont have to install gcc-4.0.0 or gcc-4.0.4 to make libjingle work. You just need to tweak the source code a bit.
- Change line 272 in talk/base/stringutils.h
inline static const char* Traits::empty_str() { return ""; }
to
inline static const char* empty_str() { return ""; } - Change lines 26 & 27 in talk/base/base64.h
static const std::string Base64::Base64Table;
static const std::string::size_type Base64::DecodeTable[];
to
static const std::string Base64Table;
static const std::string::size_type DecodeTable[]; - Change line 141 in talk/xmpp/xmppclient.h
std::string XmppClient::GetStateName(int state) const {
to
std::string GetStateName(int state) const { - Change line 159 in talk/p2p/base/sessionmanager.h
buzz::XmlElement* SessionManager::CreateErrorMessage(
to
buzz::XmlElement* CreateErrorMessage( - The corrections suggested above would allow you to compile libjingle, but file transfer application will not work without the correction specified next.
The pcp example will not correctly run giving the error (on the file 'receiver'):
File transfer started.
Get temp failed
File transfer failed
session.cc(377): state_ == STATE_RECEIVEDINITIATE @ ChooseTransport
Aborted (core dumped)
Change the following function in talk/base/unixfilesystem.cc
bool UnixFilesystem::GetTemporaryFolderI(Pathname &pathname, bool create,
const std::string *append) {
pathname.SetPathname("/tmp");
if (append) {
pathname.AppendFolder(*append);
if (create)
CreateFolder(pathname);
}
}
to
bool UnixFilesystem::GetTemporaryFolderI(Pathname &pathname, bool create,
const std::string *append) {
pathname.SetPathname("/tmp");
if (append) {
pathname.AppendFolder(*append);
if (create)
CreateFolder(pathname);
}
return true;
}
make && make check
sudo make install
Testing libjingle
- Testing File Sharing Application
To start the receiver
/opt/libjingle/pcp -d
Enter your login details
JID: "gmail address"
Password: "gmail password"
The received files are saved in the directory where you start the program pcp from. Once all the files have been transfered the program quits.
To start the sender
/opt/libjingle/pcp -d "files" "receiver_id"
JID: "gmail address"
Password: "gmail password"
Once all the files have been sent, the program quits.
To test both on the same computer start the sender and receiver from 2 separate directories. You can ignore option -d to avoid messages on terminal. - Testing call application
/opt/libjingle/call
Enter your login details
JID: "gmail address" "gmail password"
Password:
Type the command roster to get the list of friends on google talk.
roster
Roster contains 1 callable
abcd123@gmail.com "status"
To make a call to the person who is on roster use the command
call abcd123@gmail.com
quit
Posted by haricharan at 9/06/2007 07:50:00 PM 3 comments
Labels: feisty, google talk, libjingle, talk, ubuntu
Wednesday, August 15, 2007
Ubuntu Desktop
Posted by haricharan at 8/15/2007 12:44:00 AM 0 comments
Labels: compiz fusion, feisty, screenshot, ubuntu
Subscribe to:
Posts (Atom)