Followers

Powered by Blogger.
Thursday, December 11, 2008

How Did Richard Stallman React for the following???


Hello Friend I have a doubt about "How Did Richard Stallman React for the following??"

1. If you have send a mail to invite Richard Stallman for an International Conference in FreeSoftware and Free Society. My question is that your attached invitation card is made in MICROSOFT WORD ( .doc File) , How will he react????

2. Suppose Richard Stallman is attending an International Conference in FreeSoftware and Free Society , You see, all the talk are about Freedom, and Freesoftware. My question is that, a speaker presenting his freesoftware presentation in MICROSOFT POWERPOINT, How will he react???


3. At last Richard Stallman walking around the conference hall of International Conference in FreeSoftware and Free Society, He saw a Noticeboard which shows “SPEAKERS ATTERNTION PLEASE !! DON'T USE THE WORD PPT FOR YOUR PRESENTATION!! Then How will he react??

mail to panayara@gmail.com

Sunday, December 7, 2008

Howto Clear History From Movie Players in Ubuntu

Some of My friend asked me, how they can clear history from ubuntu movie players, I don't know whay they need it. Any way I will tell you the secret of history clearing.

Almost all of the applications in Gnome store their history in the same place, and it can be cleared by clearing the recent documents on the Gnome menu.

Go to the Menu bar
Places --> Recent Documents --> Clear Recent Documents

You will get a confirmation windows then press clear

Of course we did, and now the list is gone from Movie Player

Simple but useful Linux Trick

How often have you typed in a command and then realized that you forgot to type sudo. This will help you, don/t need to type the long long command.

type the following !! will replace your last command
$ sudo !!

example
$
vi /etc/apt/sources.list
this will open file as read only you need sudo to edit the file

$ sudo !!

this will expand your command automatically to

$ sudo vi /etc/apt/sources.list
Thursday, December 4, 2008

Howto install Skype 2.0 in ubuntu linux

Skype is todays most popular application for voice chat and telephony which is used for internet conversations. The latest Skype release for Linux is 2.0.0.7

Installation in Ubuntu

1. Install the needed dependencies


sudo apt-get install libasound2 libc6 libgcc1 libqt4-core libqt4-gui libsigc++-2.0-0c2a libstdc++6 libx11-6

2. Download the DEB package and install it
Download the package from the official website here . At the time of writing the package is called skype-debian_2.0.0.72-1_i386.deb.


sudo dpkg -i skype-debian_2.0.0.72-1_i386.deb

The Skype is now available in /usr/bin/skype. You can run it by typing ALT+F2 and entering skype in the run dialogue that appears.
Wednesday, December 3, 2008

Howto get your system specification in ubuntu

There is a simple way to find the Hardware specification of your computer.

open a terminal windows and type the following

$lshw this will give the full hardware details in an ugly text format

Now you can try the follwing

$lshw -html > abcd.html

open the abcd.html file in web browser (firefox)

Howto detect Free and Non-free packages installed in ubuntu

VRMS is a tool for finding free and non-free packages installed in your debian-based system like ubuntu. This genius tool provide an explanation of why it is free and non-free.

For Install vrms
$sudo apt-get install vrms

after installation you can run it in a terminal window.

Howto Solve Static IP Problem in Ubuntu 8.10

NetworkManager program provided in Ubuntu 8.10 is mainly aiming to provide a simplified Internet connection. NetworkManager is best for home users and simple internet users. If you want to use a fixed IP address it makes problem, the static IP setting will be work only upto the next restart. After reboot you can't see the Fixed IP. It will reset to DHCP.

Solution for this problem

Uninstall NetworkManager is the only solution
sudo apt-get remove network-manager network-manager-gnome

After that configure manualy the interfaces

Modify the following file: /etc/networks/interfaces.
gksudo gedit /etc/network/interfaces

You can see the following in this file
auto lo
iface lo inet loopback

keep it as such

add the following

auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0

if you have morethan one network card and
you want to set a DHCP in eth1 use the following

auto eth1
iface eth1 inet dhcp

Now Restart the network

sudo /etc/init.d/networking restart

About Me