Skip to content
Topic

General

178 notes.

General Nov 8, 2009 1 min read

How to Pronounce Linux

function VoteWindow() {url="http://vote.sparklit.com/wait.html";options="toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,";options+="resizable=yes,width=469,height=520";window.open(url,"…

General Nov 8, 2009 1 min read

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, mplayerUbuntu equivalent : vlc, mplayer,…

General Nov 8, 2009 1 min read

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…

General Nov 8, 2009 1 min read

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…

General Nov 8, 2009 2 min read

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 PlayerMplayer is a video player with a wide range of formats supported…

General Nov 1, 2009 1 min read

How to play video dvd in ubuntu 9.10 karmic Koala

Follows the steps below to play DVD in your ubuntu 9.10 karmic Koala1. Become root$ sudo su -2. Add medibuntu repositories to your sources.list.# wget…

General Oct 27, 2009 1 min read

Seahorse – Encryption Made Easy

Seahorse is a GNOME application for managing encryption keys. It also integrates with nautilus, gedit and other places for encryption operations. With seahorse you can... Create and manage…

General Oct 17, 2009 1 min read

How to download torrent files from command line(Linux Terminal)

This can be achieved by using the ultra-lightweight text-based BitTorrent client "rTorrent".If you are using Ubuntu, you can install rTorrent via Synaptic Package Manager, or with this command:$…

General Oct 13, 2009 3 min read

Recover deleted files in linux using Photorec easily

PhotoRec is file data recovery software designed to recover lost files including video, documents and archives from Hard Disks and CDRom and lost pictures (thus, its 'Photo Recovery'…

General Oct 12, 2009 1 min read

Create deb file of packages installed in your system

You can create .deb file of any installed package on your system.For this you will need the package dpkg-repack.So install this package by:apt-get install dpkg-repack Now run by typing…

General Oct 11, 2009 1 min read

How to create an ISO disk image of a CD or DVD from command line

The attempt to copy the entire disk image using cp may omit the final block if it is an unexpected length; dd will always complete the copy if…

General Oct 9, 2009 1 min read

Duplicate one hard disk partition to another hard disk

Using dd to duplicate one hard disk partition to another hard disk:dd if=/dev/sda2 of=/dev/sdb2 bs=4096 conv=notrunc,noerrorReplace /dev/sda2 and /dev/sdb2 with your partitios.Note that notrunc means…