Showing posts with label Linux. Show all posts
Showing posts with label Linux. Show all posts

Monday, January 26, 2009

IM in your Linux Distro

Google any IM client for Linux. E.g., http://pidgin.im/ which I am using on my Fedora codre 8.

Download pidgin and save it in /etc/yum.repos.d/
Then Run the installation

$ yum install pidgin

This should help.

To confgure the pidgin for google talk,
the following link may be useful
http://www.google.com/support/talk/bin/answer.py?answer=24073

Install VLC on your Fedora

I have always wanted to do this for quite a long time. My creaky CPU fan and the dwindling HD memory made me think of upgrading my system. Thats when I thought why not re install the Xp and the fedora.
This may not be helpful to my readers, yet this is for me :) i tend to forget things where i keep, esp the help files.

install VLC on Fedora 8
***********************

[deepu@localhost ~]$su -
[deepu@localhost ~]$yum update

You must be connected to internet to for the below two commands.

[deepu@localhost ~]$rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm

[deepu@localhost ~]$yum install vlc


else get the source from http://download.videolan.org/pub/videolan/vlc/0.9.8a/vlc-0.9.8a.tar.bz2

$ bunzip2 vlc-0.9.8a.tar.bz2
$ tar -xvf vlc-0.9.8a.tar
$ cd vlc-0.9.8a
$ ./configure
$ make
$ make install

In case of any dependancy errors, install the dependancy first and try installing the vlc again. Anyhow, yum is the best way if you are connected to internet.