Sunday, November 29, 2009

Change in name from "Ubuntu Netbook Remix" to "Ubuntu Netbook Edition"


Ubuntu Netbook Remix is a custom user interface for the popular Ubuntu Linux distribution designed to play well with laptops with small screens. Instead of dealing with a panel and a series of drop down menus, Ubuntu Netbook Edition has a series of categories on the left side. Click on Accessories, Games, Internet, Office, or another category to bring up a series of large icons for accessing the associated programs and settings. It’s also tweaked with optimizations for Intel Atom processors.




According to this blueprint, folks at Canonical are getting ready to help "Ubuntu Netbook Remix" change to "Ubuntu Netbook Edition" status.
It seems that the they have removed the blueprint. Here is the link to the cached copy by google.

It says "Ubuntu Netbook Remix has now been a part of the Ubuntu cycle for two releases now, and it should drop the Remix, and become Ubuntu Netbook Edition. This spec is about what changes are needed to enable that."
Read the full post

Sunday, November 22, 2009

How to Install Google's Go language on Ubuntu Linux


Go is an open source project, distributed under a BSD-style license. This document explains how to check out the sources, build them on your own machine, and run them.

First of all you need to set some Environment variables

The Go compilation environment depends on three environment variables that you should set in your .bashrc or equivalent, plus one optional variable:

$GOROOT

The root of the Go tree. Typically this is $HOME/go but it can be any directory.

$GOOS and $GOARCH

The name of the target operating system and compilation architecture. Choices for $GOOS are linux, darwin (Mac OS X 10.5 or 10.6), and nacl (Native Client, an incomplete port). Choices for $GOARCH are amd64 (64-bit x86, the most mature port), 386 (32-bit x86), and arm (32-bit ARM, an incomplete port). The valid combinations are linux/amd64, linux/arm, linux/386, darwin/amd64, darwin/386, and nacl/386.

$GOBIN (optional)

The location where binaries will be installed. If you set $GOBIN, you need to ensure that it is in your $PATH so that newly built Go-specific command such as the compiler can be found during the build. The default, $HOME/bin, may already be in your $PATH.

Note that $GOARCH and $GOOS identify the target environment, not the environment you are running on. In effect, you are always cross-compiling.

Set these variables in your .bashrc. For example:

$ export GOROOT=$HOME/go
$ export GOARCH=amd64 (replace amd64 with your system architecture eg: arm, 386)
$ export GOOS=linux
$ export GOBIN=$HOME/go/bin
$ export PATH=$PATH:$GOBIN
Add the PATH variable to the .bashrc file only if you are planning to use go regularly.

Double-check them by listing your environment.

$ env | grep '^GO'

Install Pre-requisites

$ sudo apt-get install bison gcc libc6-dev ed make 
$ sudo apt-get install python-setuptools python-dev 
$ sudo apt-get install mercurial

Fetch the repository

$ hg clone -r release https://go.googlecode.com/hg/ $GOROOT

Install Go

$ cd $GOROOT/src
$ ./all.bash

Now wait for some time. The compilations will proceed and will be
completed with the following message

--- cd ../test
N known bugs; 0 unexpected bugs
 
Test Go

Create the following program in your favourite editor and save it as hello.go
package main

import "fmt"

func main() {
     fmt.Printf("hello, world\n")
}
  
compile it using
$ 6g hello.go

6g is the Go compiler for amd64; it will write the output in hello.6. The ‘6’ identifies files for the amd64 architecture. The identifier letters for 386 and arm are ‘8’ and ‘5’. That is, if you were compiling for 386, you would use 8g and the output would be named hello.8.

To link the file, use
$ 6l hello.6

6l is the Go linker for amd64; it will write the output in 6.out. The ‘6’ identifies files for the amd64 architecture. The identifier letters for 386 and arm are ‘8’ and ‘5’. That is, if you were linking for 386, you would use 8l and the output would be named 8.out.

to run it
$ ./6.out ( or ./8.out )



To build more complicated programs, you will probably want to use a Makefile. There are examples in places like $GOROOT/src/cmd/godoc/Makefile and $GOROOT/src/pkg/*/Makefile.
Read the full post

How to download and Install Skype on Fedora 12


 These are the Requirements specified by Skype on Linux Beta 

Hardware requirements
  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47



Download the skype for fedora 12 from here http://www.skype.com/go/getskype-linux-beta-fc10
Read the full post

Thursday, November 19, 2009

Access different terminals to shut down (kill) programs that have frozen in Ubuntu


You might have had experience with your ubuntu system hang up due to some applications (this happens sometimes with Firefox and some games).

You can actually login to one of your other terminals and stop the applications which is causing problems.

1. Use Alt + Ctrl and any function key F1 through F7. Where F7 is the default xwindows terminal.
2. Log in and then use the command "top" from the command line to find the process id (pid) of the frozen or run away application which is causing problems.
$ top
3. After finding the pid number, type
$ kill -kill PID (where PID is the process id of the application).

Now go back to terminal 7 with "Alt+Ctrl+F7" to find the troublesome application gone.
Read the full post

Now find the property you want on Google Maps


Google have been working on a particularly interesting project that combines Google Maps and search technology - they have been trying to work out if our search query in Google Maps means we are interested in having current real estate listings returned to us.

Now, simply searching for "real estate" on google maps will return, well, real estate (try it)! You could also try "homes for sale sydney" or "homes for rent adelaide". Or while you're at it, check out "apartments for sale brisbane", or "homes for rent near perth". The idea is to make it really easy for you guys - you tell us what you want, and we get it back to you! Of course, we'll continue to work to return the best results for all your Google Maps queries, whether you're looking for local businesses, geographic features, or your perfect home.

For more info see  http://google-au.blogspot.com/2009/11/making-it-easier-to-find-property-you.html
Read the full post

Wednesday, November 18, 2009

How to download and install skype for linux on OpenSUSE 11+


These are the Requirements specified by Skype on Linux Beta 

Hardware requirements


  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47


Get your Skype for OpenSUSE from here
OpenSUSE 11+
For other Linux distros see 
http://www.skype.com/download/skype/linux/choose/
Read the full post

How to download and install skype for linux on Fedora 9 and 10+


These are the Requirements specified by Skype on Linux Beta 

Hardware requirements

  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47


Get your Skype for fedora from here

For other Linux distros see 
http://www.skype.com/download/skype/linux/choose/
Read the full post

How to download and install skype for linux Beta on Ubuntu


These are the Requirements specified by Skype on Linux Beta 

Hardware requirements

  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47


Get your Skype for Ubuntu from here
For Ubuntu 9.04 and 9.10 you can use the versions for 8.10.


For other Linux distros see 
http://www.skype.com/download/skype/linux/choose/
Read the full post

How to download and install skype for linux on Debian Lenny


These are the Requirements specified by Skype on Linux Beta 

Hardware requirements
  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47


Get your Skype for debian Lenny from here
http://www.skype.com/go/getskype-linux-beta-deb

For other Linux distros see 
http://www.skype.com/download/skype/linux/choose/
Read the full post

How to Download and Install Skype for Linux Beta (ubuntu, debian, fedora, opensuse)


These are the Requirements specified by Skype on Linux Beta 

Hardware requirements
  • 1 Ghz processor or faster.
  • 256 MB RAM.
  • 20 MB free disk space on your hard drive.
  • Microphone and speakers or headset.
  • Internet connection – broadband is best (GPRS is not supported for voice calls).
  • Video card driver with Xv support.

Software requirements
  • Qt 4.2.1+
  • D-Bus 1.0.0
  • libasound2 1.0.12
  • PulseAudio 0.9.10+ (optional)
  • PulseAudio 0.9.15+ (optional recommended)
Technical details
Version 2.1.0.47


Get you Skype from Here
http://www.skype.com/download/skype/linux/choose/
 
Read the full post

Saturday, November 14, 2009

GNOME 3.0 to be released only in September 2010


GNOME 3.0 will be released in September 2010, and in the meantime, they will release GNOME 2.30 in March 2010, continuing their long-standing tradition of six-months releases.

Note that this release date for 3.0 doesn't mean that 2.30 will be less stable than usual. On the contrary, this will help them integrate the changes that are ready for 2.30, while leaving the parts that are still rough on the edges outside of GNOME, as used daily by the users, until after 2.30 is out. This will solidify both 2.30 and 3.0 releases.

The idea of doing GNOME 3.0 was first seriously discussed in 2008, before focus areas were defined in 2009, alongside a plan to reach 3.0. Those focus areas include revamping the user experience, streamlining the platform and improving the promotion of GNOME. Compared to GNOME 3.0, GNOME 2.30 will see the iterative improvements and bug fixes that people have now come to expect from our 2.x branch, in addition to some preliminary work needed for GNOME 3.0.
Read the full post

Lets have a look at GNOME 2.28


GNOME 2.28 is the latest version of the GNOME Desktop: a popular, multi-platform desktop environment for your computer. GNOME's focus is ease of use, stability, and first-class internationalization and accessibility support. GNOME is Free and Open Source Software and provides all of the common tools computer users expect of a modern computing environment, such as email, groupware, web browsing, file management, multimedia, and games. Furthermore, GNOME provides a flexible and powerful platform for software developers, both on the desktop and in mobile applications.
The GNOME Desktop is released every six months and contains many new features, improvements, bug fixes, and translations. GNOME 2.28 continues this tradition.
GNOME 2.28 includes all of the improvements made in GNOME 2.26 and earlier.

What's New For Users

1. GNOME 2.28 includes the first release of the GNOME Bluetooth module to help users manage their Bluetooth devices. GNOME Bluetooth supports hundreds of Bluetooth devices, including mice, keyboards and headsets. GNOME Bluetooth includes PulseAudio integration for Bluetooth headsets and headphones.

GNOME Bluetooth also includes support for Internet access through your mobile phone. After pairing your mobile phone with GNOME Bluetooth, Network Manager will include an entry to use your mobile phone for Internet access.

2. The Time Tracker applet, which helps you track your time and tasks, includes a number of new improvements.

An all-new Overview screen is now included, which merges the category and period graphs to present a cleaner overview to the user. Colors are also used for the first time, making it easy to view the proportion of time used to complete tasks.

Other feature updates include improved autocomplete support allowing you to update the start time on the fly, improved support for late-night workers, and the ability to add earlier tasks that have been completed. Lastly, the export functionality has a number of improvements, including the ability to filter activities by category and date prior to export, and new simple export types: iCal to import into Evolution, Google Calendar and other clients, XML, and TSV (tab separated values), which works well with spreadsheets.

3. GNOME's instant messaging and communication application, Empathy, built on the Telepathy communications framework, has gained a number of new and important features to help users communicate.

The contact list has been improved in a number of ways. You can set your status directly by entering it as text, or set it from a previously set status. Reorganizing your contacts has been made easier as dragging and dropping a contact will move it, instead of copying it. A View menu is now included, giving you quick access to sorting contacts, viewing offline contacts, and changing your contact list size preferences.
The conversaton dialog now supports a number of new themes, including Adium message styles. "Users" in the user list now have a tooltip; the user list in chat rooms can be hidden; the Contact menu has been removed from the Conversation menu; and if your name is mentioned in a chat room or conversation, that tab's text will become red.

Audio and video chats can now be made fullscreen, and if a contact does not have video, their avatar will be displayed. A redial feature has also been added, making it easier to reconnect.

Users are now able to share their desktop with Empathy contacts using the GNOME Remote Desktop Viewer, Vino.

Geolocation support using Geoclue has been added for XMPP contacts, such as Jabber and Google Talk. You can view a contact's location by hovering your mouse over their contact name in the contact list, in the information dialog or in the Map View. Empathy also supports a reduced accuracy mode for users who wish additional privacy. Google Talk users can view a contact's location, but cannot publish their location as Google does not use PEP.

Empathy also includes all-new documentation focused on helping users to learn how to perform specifics tasks within Empathy.

4. The GNOME Web Browser, Epiphany, has switched to Webkit from Gecko for its rendering engine. With the exception of some performance enhancements, this change should be invisible. Long-term, the switch to WebKit will have significant benefits to Epiphany users. Switching to WebKit also fixes a number of long standing bugs in Epiphany due to the old Gecko-based backend. You are encouraged to test this new version to confirm if your older problems have been solved.

One bug users may experience in Epiphany due to the change to Webkit, is not being able to save logins and passwords in forms. This bug will be fixed during the 2.30 development cycle.

5. DVD playback in GNOME's Media Player has been improved with the ability to navigate DVD menus and resume playback from the last position. The YouTube plugin has also seen some speed improvements.

6. Cheese, a webcam photo and video application, features numerous improvements. Cheese has an updated user interface, and has added a "Burst" mode for taking multiple pictures at a time. You can choose the number of pictures Cheese should take and the time delay between pictures. Cheese also supports the ability to manually take a picture using a webcam's "Capture" button.

Cheese's user interface has also been optimized for smaller screens, such as netbooks, by moving the image thumbnail bar to the right. The below screenshot shows Cheese in its new wide mode optimized for Netbooks using Burst mode.

7. The Evince document viewer has added the ability to edit and save text annotations that have a popup window associated. Evince now also recovers documents that were being viewed after a crash.

Evince has also been ported to and is available for Microsoft Windows® platforms.

8. GNOME Volume Control has added the ability for you to control a subwoofer and channel fading. Also new is when changing settings, changes are now instantly applied.

9. Some small additions and tweaks that happen in every GNOME release.
  • GNOME menus and buttons have been standardized across all applications to not display icons by default. Menu items with dynamic objects, including applications, files or bookmarks, and devices are the exception and can display an icon. This change will standardize the look and feel of menus and present a cleaner interface to users.
  • Tomboy Notes has moved the location of stored notes and configuration files to conform to Freedesktop.org specifications.
  • GNOME Power Manager now has support for laptops with multiple batteries and has added disk spindown support for DeviceKit disks.
  • The GTK+ file and lpr print backends support printing multiple pages per sheet.
  • Gedit has been ported to Mac OS® X.
  • Text rendering has been improved in Pango using a new OpenType engine, which uses less memory and has improved support for broken fonts.
  • Due to improvements in VTE, GNOME Terminal users will notice much less memory is used.
  • Brasero, the GNOME CD/DVD Burner, now supports the ability to burn data across multiple discs and has added a graphical display to show space used on discs before burning.
For more info and to see what's new In Accessibility, For Developers see http://library.gnome.org/misc/release-notes/2.28/index.html.en
Read the full post

Sunday, November 8, 2009

How to Pronounce Linux




L
I
N
U
X

P
O
L
L



How do you pronounce "Linux"


Lee-nooks

Lie-nuks

Lin-ucks

Lin-icks


There are three common pronunciations of Linux. All three are quite acceptable.

The only proper pronunciation is the one used by Linus Torvalds himself. The name Linux is a derivative of his name, and thus is pronounced like his name. Linus pronounces his name "Lee-noos", so Linux is properly pronounced "Lee-nooks". 

A linguistically acceptable pronunciation is based on the Anglicized pronunciation of Linus, which is "Lie-nus". Hence, an acceptable Anglicized pronunciation of Linux is "Lie-nuks".

However, there is a third common pronunciation of Linux, which is "Lin-icks" (or sometimes "Lin-ucks"). This pronunciation has no basis as a linguistic derivative. It does, however, sound more like "Unix", which is probably the reason it came about.
Read the full post

How to play multimedia files(install codecs) in ubuntu 9.10


You can find many applications for windows to play many kind of codecs.

Some of the windows applications are windows media player, real player, vlc, mplayer

Ubuntu equivalent : vlc, mplayer, helix player

To have Ubuntu playing all kinds of stuff, you need to install many codecs.

Add the new repository and update your system.
$ sudo wget http://dl.dropbox.com/u/1402212/karmic.sources.list --output-document=/etc/apt/sources.list.d/full.list
$ sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 2EBC26B60C5A2783 0DA7581859566E92 D739676F7613768D 43BB102C405A15CB 6AF0E1940624A220 2ED6BB6042C24D89 632D16BB0C713DA6 A6DCF7707EBC211F F9A2F76A9D1A0061 5A9BF3BB4E5E17B5 A040830F7FAC5991 FA3A1271 7FB8BEE0A1F196A8 0CC1223EE2314809 7889D725DA6DEEAA 28A8205077558DD0 2D79F61BE8D31A30 6E871C4A881574DE 66D5C734F6EFB904 DCF9F87B6DFBCBAE 2A8E3034D018A4CE F0876AC9 978228591BD3A65C 6298AD34413576CB FC6D7D9D009ED615 4FEC45DD06899068 2A423FD95416E75D
$ sudo apt-get update && sudo apt-get upgrade


Installing vlc and mplayer (plays almost everything):
sudo apt-get install vlc mplayer


Common packs
sudo apt-get install non-free-codecs libxine1-ffmpeg gxine mencoder mpeg2dec vorbis-tools id3v2 mpg321 mpg123 libflac++6 ffmpeg libmp4v2-0 totem-mozilla icedax tagtool easytag id3tool lame nautilus-script-audio-convert mozilla-helix-player helix-player libmad0 libjpeg-progs libmpcdec3 libquicktime1 flac faac faad sox ffmpeg2theora libmpeg2-4 uudeview flac libmpeg3-1 mpeg3-utils mpegdemux liba52-dev


Gstreammer 0.10
sudo apt-get install gstreamer0.10-ffmpeg gstreamer0.10-fluendo-mp3 gstreamer0.10-gnonlin gstreamer0.10-pitfdll gstreamer0.10-sdl gstreamer0.10-plugins-bad-multiverse gstreamer0.10-schroedinger gstreamer0.10-plugins-ugly-multiverse totem-gstreamer


More programs
sudo apt-get install gstreamer-dbus-media-service gstreamer-tools ubuntu-restricted-extras


Enable dvd support
sudo aptitude install libdvdcss2 && sudo /usr/share/doc/libdvdread4/./install-css.sh


Flash
sudo apt-get install gsfonts gsfonts-x11 flashplugin-nonfree


Read the full post

Create a larger casper-rw loop file for your live usb from Linux


A larger casper-rw loop file is particularly useful for those who have performed a linux install to a large thumb drive using a Windows USB tutorial and need more persistent storage space for saving changes. The default casper-rw loop file might be low.
Boot from the Live CD and then (once the system is up and running) insert the USB drive that contains your Linux install and small casper-rw.

Creating a NEW larger casper-rw loop file

The following method will create a NEW casper-rw file that will replace the old one. If you want to resize an existing image see the next section.

1. After you have booted up and running in Linux, insert the flash drive that contains your casper-rw loop file
2. Now open up a terminal
3. Type the following into the terminal window and press enter


dd if=/dev/zero of=casper-rw bs=1M count=1024


(replacing 1024 with the "size in MB" you wish to use for saving changes persistently)
4. Type the following into the terminal and press enter


mkfs.ext3 -F casper-rw


5. Copy the new casper-rw file to your USB flash drive
6. Restart your computer, booting from the USB flash drive and enjoy using the larger casper-rw loop block file you have just created.

Resize an existing casper-rw loop file

The following method will allow you to resize your existing casper-rw image (expand casper-rw). You should create a backup just in case before proceeding.

1. After you have booted up and running in Linux, insert the flash drive that contains your casper-rw loop file
2. Open a terminal and change directory (CD) to the location of your casper-rw file
3. Type the following into the terminal window and press enter


dd if=/dev/zero bs=1M count=1024 >> casper-rw


(replacing 1024 with the size in MB you wish to increase the original size by)
4. Type the following into the terminal window and press enter


resize2fs casper-rw


If all goes well, you should now have a larger casper-rw loop file to use for saving your persistent changes.
Read the full post

Mic not working with skype on Ubuntu 9.10 karmic koala


After installing skype 2.1 in your ubuntu 9.10 you might have seen that there is only one option in skype's audio properties: "pulse audio server" and Nothing else. 
But most of you might had used "HDA Intel hd:0" option in their previous versions and it was working.


To solve this problem you will just need to install "padevchooser" on your Ubuntu. 'pavechooser' will help you configure your Pulseaudio and select the proper Mic input.
Install it via command line or synaptic.
Or get it from here http://packages.ubuntu.com/hardy/sound/padevchooser


Or try installing the skype version 2.0 and select "HD Intel (hw:0)" option.
Download the version 2.0 from http://download.skype.com/linux/skype-debian_2.0.0.72-1_i386.deb
If you have already installed Skype 2.1 you will have to uninstall skype-common via synaptic, as well as skype, or else the Skype 2.0 package will not install via GDebi.
Read the full post

Install Video and Music Players for ubuntu 9.10 karmic koala


Most current video multimedia players play many video formats, including the Flash video .flv format.

MPlayer Multimedia Player
Mplayer is a video player with a wide range of formats supported (including RealMedia and Windows-codecs) and a wide variety of outputs.
sudo apt-get install mplayer

SMPlayer
SMPlayer is an enhanced frontend for MPlayer.
sudo apt-get install smplayer

Dump a video stream to disc
You can dump a video stream to disc using Mplayer:
mplayer -dumpstream streamurl

VLC Multimedia Player
VLC is a cross-platform multimedia player that supports many formats without need for additional codecs. It can not only receive video streams (also see here to convert it to mp4), but can act as a server for video streams, as well. It is one of the only players that can view and backup almost any DVD format, no matter which copy protection is used. See these tips for using VLC to backup/rip encrypted DVDs.
sudo apt-get install vlc vlc-plugin-pulse

VLC plugins
There are many VLC plugins. You will likely only need to install a few of them, however, depending on your hardware and input/output configuration:
sudo apt-get install vlc-plugin-ggi vlc-plugin-jack vlc-plugin-pulse vlc-plugin-sdl vlc-plugin-svgalib mozilla-plugin-vlc vlc-plugin-esd

Xine-UI Multimedia Player
Xine UI is a multimedia player based, of course, on the xine platform. It can also play streamed video from the Internet and supports most formats, including some uncommon ones.
sudo apt-get install xine-ui

Kaffeine Video Player
Kaffeine is the default video player in Kubuntu. Install:
sudo apt-get install kaffeine

RealPlayer 11 Multimedia Player
The Linux Realplayer is actually based on the open-source Helix player. These instructions are to install the proprietary version of RealPlayer only.
Download Real Player official linux player
Open a terminal and cd to the directory you have downloaded realplayer's .bin file. Then issue the following commands
chmod +x RealPlayer11GOLD.bin
sudo ./RealPlayer11GOLD.bin
When it asks for installation path enter /usr/local/RealPlayer
For all other questions just choose default by pressing enter.
If you have installed mozilla-mplayer package you will need to delete the mplayer firefox plugin for real player videos. Other wise all real player files will open with mplayer. For that please do this
cd /usr/lib/firefox/plugins
sudo rm mplayerplug-in-rm.*


Please remember to restart firefox and when ever you click on a real player video choose the option open with and use /usr/bin/realplay
Read the full post

Sunday, November 1, 2009

How to play video dvd in ubuntu 9.10 karmic Koala


Follows the steps below to play DVD in your ubuntu 9.10 karmic Koala

1. Become root
$ sudo su -
2. Add medibuntu repositories to your sources.list.
# wget http://www.medibuntu.org/sources.list.d/karmic.list --output-document=/etc/apt/sources.list.d/medibuntu.list

Now add the GPG Key:
# apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update
3.Update your system.
# apt-get update
4. Now install the libdvdcss library.
# apt-get install libdvdcss2
# cd /usr/share/doc/libdvdread4/
# ./install-css.sh
Read the full post
 

Linux Tips Copyright © 2010 Dipin Krishna @ Linuxense