Archive for the 'howto' category
Getting Started with Ubuntu
August 22, 2008 8:43 amMultimedia
Because Ubuntu is a free operating system, they are not technically allowed to give people the codecs used decode certain media types with the system. A multimedia codec is a small piece of software which allows you to watch videos or listen to music of a specific format. There are many different multimedia formats and so you may need to install several codecs. Ubuntu includes many codecs by default, but not all of them (the proprietary codecs).
In order to play different media types (including mp3 and DVDs), follow the simple instructions below.
1. Open a terminal window from the accessories menu (under applications)
2. Install java and other add-ons by copying and pasting the following into the terminal window and executing (your password is the password that you set when you installed the system) sudo
apt-get install ubuntu-restricted-extras
The sudo command lets you preform an action as a computer administrator. If you do not use the sudo command, the terminal will not let you preform installations. This is so that regular users to not harm their systems.
The apt-get command is a program that searches installed repositories for software. The format something like this.
apt-get install software package name
In this case, it installing the package ubuntu-restricted extras. Because Ubuntu uses Debian’s package management system, the program will fetch all the necessary components for you.
3. Add Medibuntu to your sources.list, as well as its GPG key to your keyring by copying and pasting the following into the terminal window and executing
sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list
This command adds the Medibuntu repository to your system. Once installed, your package manager will search through the added repository. This repository contains the codecs to play protected file formats.
4. Then, add the GPG Key:
sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update
This adds adds the key to use the software repository.
5. Add the proprietary codecs to play DVDs and mp3’s
sudo apt-get install libdvdcss2 w32codecs
This command installs the libdvdcss2 and the w32codecs software from the medibuntu repository.
This should get DVDs and mp3 to work properly. You may need to restart your system for all changes to take place.
Other Cool Stuff
Google software repository
To add the Google software repository (Ubuntu uses the Debian software repository model to install/uninstall software. Once you have added a software repository, installing/uninstalling software is as easy as checking a box and clicking apply in the Synaptic package manager).
Download the Google Repository key at:
http://www.google.com/linuxrepositories/aboutkey.html
Save it as the file on your desktop
Goto System -> Administration -> Software sources
Goto the authentication tab
Click the “Import Key File…” button and select the “linux_signing_key.pub” file you downloaded previously(on your desktop), then click “OK”.
You should now see the “Google, Inc. Linux Package Signing Key” in the list.
In the “Software Sources” application, click the “Third-Party Software” tab, then click the “Add…” button.
Enter deb http://dl.google.com/linux/deb/ stable non-free for the APT line:, then click “Add Source”.
It may now want to reload. Let it.
Now you can go to System -> Administration -> Synaptic Package Manager
Search for Google You can also find Picasa, Google Earth, Google Desktop (for indexing your computer)
getdeb
Software for you computer in .deb file formats. Download the *.deb file to your computer
It works almost exactly like an .exe file.
http://www.getdeb.net/
Documentation for your System
The following websites offer some great documentation on the operating system.
Official Documentation
https://help.ubuntu.com
Community Support via Web Forum
http://ubuntuforums.org
Cool things you can do with your operating system
http://www.ubuntugeek.com
Categories: computers, howto, linux, ubuntu
No Comments »
Converting Ogg file format to AVI file format
May 16, 2008 8:09 amAnother reason why I love Linux. Having created a screen capture in the OGG file format, I needed to give it to a friend who prefers to work with AVI formats. After a few minutes of searching, voila… a simple and elegant answer was found thanks to liquidat.
The short sweet answer:
Make sure you have the MPlayer’s Movie Encoder installed (sudo apt-get mencoder). It is available from the Medibuntu repository.
Then go to the command line and enter:
mencoder video.ogg -ovc lavc -oac mp3lame -o video.avi
where video.ogg is the original OGG file and video.avi is your desired ouput file
That should be it. Let me know if you have an questions.
Categories: howto, linux
No Comments »

