Skip to main content

Posts

Showing posts with the label install

How to install skype in ubuntu 10.10 Maverick Meerkat

Skype is a simple software which enable you to make free calls(Audio,video and conference ) over the Internet by using VoIP protocol.It is available for all platform i.e you can use it from Ubuntu,windows or MacOS.It is very simple to use and graphical interface is also very user friendly with a lot of advanced features. The Command Line Way 1. Add the partner repository to the sources.list. sudo gedit /etc/apt/sources.list Uncomment the following lines: deb http://archive.canonical.com/ubuntu maverick partner deb-src http://archive.canonical.com/ubuntu maverick partner If you don’t see the above two lines, then you must add them. Now save and close the file. 2. Now, retrieve the updated package lists from the newly added repositories by issuing the following command: sudo apt-get update 3. Now install skpe sudo apt-get install skype The Graphical Way 1. Go to Applications –> Ubuntu Software Center. 2. Then select Edit –> Software Sources… 3. Select ‘O...

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 ...

How to install Skype on Ubuntu 9.10 Karmic Koala

The two methods  below doesn't work now. Please see http://blog.dipinkrishna.info/2009/11/how-to-download-and-install-skype-for_3060.html for a successfull installation of skype on ubuntu. I have provided two methods. Please do comment which one is successful. Follow these steps to install skype in ubuntu 9.10 (64 bit).         First add:             deb http://packages.medibuntu.org/ karmic free non-free         to your source.list Now open a terminal and type: $ sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list Then do an update: $ sudo apt-get update $ sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring $ sudo apt-get -q update And finally install Skype. $ sudo apt-get install skype Ready ... now start skype with $ skype OR Download the setup 32 -bit 64 -bit Launch the Skype i...

Installing a package from source

Make sure you have all the necessary development tools (i.e. libraries, compilers, headers): sudo apt-get install build-essential sudo apt-get install linux-headers-`uname -r` Note: "uname -r" lists the current kernel you are using Extract the archive that contains the source files: tar xvf sourcefilesarchive .tar.gz Build the package using the package's script (in this case the configure script), compile the package (make), and install the compiled package into your system (make install): cd /path/to/extracted/sourcefiles ./configure sudo make sudo make install Note: typing ./ before a filename in the current folder allows the Linux shell to try and execute the file as an application even if it is not in the path (the set of folders which it searches when you type a command name). If you get a "permission denied" error, the file is not marked as being executable. To fix this: sudo chmod +x filename Example: In the above instructions, configure is th...

Install Remove and Reinstall/Reconfigure/Repair .deb packages

Debian (.deb) packages are the packages that are used in Ubuntu. You can install any .deb package in your system. .deb files can generally be installed from your file manager (Nautilus) merely by clicking on them, since file associations with the default installer is already set in Ubuntu. These instructions are for those who wish to install packages from the command-line terminal (Terminal). Install a downloaded Debian (Ubuntu) package (.deb): sudo dpkg -i packagename .deb Remove a Debian (Ubuntu) package (.deb): sudo dpkg -r packagename Reconfigure/Repair an installed Debian (Ubuntu) package (.deb): sudo dpkg-reconfigure packagename *Example: sudo dpkg-reconfigure mpd

Installing LAMP On Ubuntu

In this guide I will show you how to install a LAMP system. LAMP stands for L inux, A pache, M ySQL, P HP. The guide is intended to help those who have very little knowlegde of using Linux. Install Apache To start off we will install Apache. 1. Open up the Terminal ( Applications > Accessories > Terminal ). 2. Copy/Paste the following line of code into Terminal and then press enter: sudo apt-get install apache2 3. The Terminal will then ask you for you're password, type it and then press enter. Testing Apache To make sure everything installed correctly we will now test Apache to ensure it is working properly. 1. Open up any web browser and then enter the following into the web address: http://localhost/ You should see a folder entitled apache2-default/ . Open it and you will see a message saying "It works!" , congrats to you! Install PHP In this part we will install PHP 5. Step 1. Again open up the Terminal ( Applications > Accessories > T...

How to install Skype on Ubuntu 9.10 Karmic Koala

The two methods  below doesn't work now. Please see http://blog.dipinkrishna.info/2009/11/how-to-download-and-install-skype-for_3060.html for a successfull installation of skype on ubuntu.   I have provided two methods. Please do comment which one is successful. Follow these steps to install skype in ubuntu 9.10 (64 bit).         First add:             deb http://packages.medibuntu.org/ karmic free non-free         to your /etc/apt/source.list Now open a terminal and type: $ sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list Then do an update: $ sudo apt-get update $ sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring $ sudo apt-get -q update And finally install Skype. $ sudo apt-get install skype Ready ... now start skype with $ skype OR Download the setup 32 -bit 64 -bit ...

Install RedHat RHEL 4 AS to the USB Hard Drive

Install RedHat RHEL 4 AS to the USB Hard Drive 1. Install RedHat RHEL 4 AS to the USB Hard Drive Boot RHEL4 Installation CD, enter "expert". Partition your USB Hard drive manually. In my case, I created 1GB /dev/sda1 mounted as /boot and /dev/sda5 mounted as / (root), I also have /dev/sda7 SWAP partition. After installation, boot from the RHEL4 Installation CD again, type "linux rescue", don't let the installer mount the USB hard drive partitions. 2. Mount partitions # mount /dev/sda5 /mnt/source # mount /dev/sda1 /mnt/source/boot # chroot /mnt/source 3. Restore initrd image # cp /boot/initrd-2.6.9-5.EL.img /tmp/initrd.gz # cd /tmp # gunzip initrd.gz # mkdir /tmp/a # cd /tmp/a # cpio -i (Output: 2078 blocks) 4. Edit init script to load USB drivers # vi /tmp/a/init #!/bin/nash mount -t proc /proc /proc setquiet echo Mounted /proc filesystem echo Mounting sysfs mount -t sysfs none /sys echo Creating /dev mount -o mode=0755 -t tmpfs none /dev mknod /dev/console c...

Install HP printers in Linux ( ubuntu 9.04 jaunty, fedora, debian, redhat, Mandrake/Manrivi, openSUSE, Solaris, FREEBSD)

I highly recommend you to follow the post here at hp-printer-installation-wizard.html for an easy and more successful installation of your hp printers. Come back if you are not successful from that. Download and Install the driver Type these at terminal. 1. Download the driver Download it from here 2. Unpack: $ tar zxf hpinlinux.tar.gz $ cd hpinlinux 3. Compile the source: $ make 4. Get .ICM profiles for color correction. Select the model number for your printer: $ ./getweb 1215 # Get HP Color LaserJet CP1215 .ICM files $ ./getweb 1500 # Get HP Color LaserJet 1500 .ICM files $ ./getweb 1600 # Get HP Color LaserJet 1600 .ICM files $ ./getweb 2600n # Get HP Color LaserJet 2600n .ICM files $ ./getweb 1600w # Get Konica Minolta magicolor 1600W .ICM files $ ./getweb 1680 # Get Konica Minolta magicolor 1680MF .ICM files $ ./getweb 1690 # Get Konica Minolta magicolor 1690MF .ICM files $ ./getweb 2480 # Get Konica Minolta magicolor 2480 MF .ICM files $ ./getweb ...

Step by step procedure to set up your BSNL wll (cdma) in ubuntu linux (kubuntu)

Help steps may be help to the users of bsnl wireless phones to connect to the web. Please see the 'Note' it step 6 before starting... 1. Find the product and vendor ids.( You may need to become root). $ lsusb 2. Now load the driver. $ sudo /sbin/modprobe usbserial vendor=0× VVVV product=0× PPPP Where VVVV is the vendor id and PPPP is the product id of your phone. Note: If an error like "usbserial not found" shows up in ubuntu jaunty then please skip this step and do what is said at http://blog.dipinkrishna.info/2009/07/usbserial-not-found-in-ubuntu-jaunty.html and then continue the steps below. 3. Now load the ppp driver $ sudo /sbin/modprobe ppp_generic 4. Check dmesg output $ sudo dmesg I got it as [ 227.271459] /build/buildd/linux-2.6.24/drivers/usb/serial/usb-serial.c: USB Serial support registered for generic [ 227.271485] usbserial_generic 2-1:1.0: generic converter detected [ 227.271616] usb 2-1: generic converter now attached to ttyUSB0 [ 227.27...

Install Android on your system to test it using Google Android LiveCD

Want to try Google Android? Today is no longer necessary to have a mobile phone with Android installed to be able to prove it. Recently released a new version of Google Android LiveCD to test or install on a PC computer. Just download the ISO image of Live-Android that Google released for testing on a PC, burn onto a CD and boot the computer from this CD. Optionally you can also create a virtual machine with the ISO-Live Android, install and test it without rebooting the PC every time you want to use Google's operating system for mobile devices.

How to install CentOS 5 on a USB stick (pendrive) via Windows

Here is the how to install the CentOS 5 Linux distribution on a pen drive (USB) using MS Windows. This will create a CentOS LiveUSB which can be run on any PC that allows booting (boot) from a USB port. That is, a true CentOS Portable. This works just like a LiveCD, the only difference being the boot from a LiveUSB is generally faster than from a LiveCD (if you have USB 2.0). Permanent configuration feature is not taken into account in this tutorial, so the changes you make in shaping the course of using the CentOS LiveUSB will be lost with every boot or reboot. CentOS is a Linux distribution based on RedHat Enterprise Linux and is aimed at businesses. Its use is very popular in web hosting server by its extreme stability. Because CentOS is based on RHEL, you can use the program Fedora LiveUSB Creator to install CentOS on a USB stick. Prerequisites to install CentOS to a USB flash memory: * A computer with Microsoft Windows installed (tested on Windows XP). * A USB pendrive or memory ...

How to install Damn Small Linux on a USB stick from Windows

This turorial shows how to install "DSL (Damn Small Linux) on a pen drive from Windows". "Damn Small Linux" is basically a minimalist Linux distribution based on a miniaturized version of Knoppix, making DSL a perfect pendrive distribution. Based on kernel 2.4, Damn Small Linux is excellent for use on older or slow computers with little RAM (eg., 64MB of RAM). To create a portable version of Damn Small Linux on a USB memory stick, you will need: 1. A pen of at least 64MB of capacity. 2. Any compressed files extractor (Windows XP has native support for ZIP files). 3. Syslinux-XX.zip (where XX is the latest version). 4. dsl-xx-wmbedded.zip (where XX is the latest version) 1. Format the pen drive using the FAT32 file system. FORMAT X: /fs:FAT32 (where X is the drive of your flash memory) 2. Extract the contents of your dsl-embedded.zip in USB memory. 3. Extract the contents of Syslinux.zip to a folder called syslinux on the root directory of Win...

How to install Google Desktop on Ubuntu Linux

Although Google Desktop is not the only search and indexing herrmamienta available on the web, it takes a large company behind it to make it very popular. Well, Linux version of this tool (which uses the same algorithms that a version for web) and are available packages for Debian 4, Fedora 6, Ubuntu 9.04, SUSE 10.1 and Red Hat 5 and works for both KDE and Gnome. The only disadvantage of the project is not yet available for systems with AMD64 architectures, only x86. To install Ubuntu Linux follow these steps: 1. Download the file. Deb of Google Desktop from http://desktop.google.com/es/linux/install.html?dl=deb 2. Run the file. Deb download 3. Restart X (CTRL + ALT + Backspace) That will have at your disposal to Google Desktop on Linux.

HOWTO setup Squid Proxy & DansGuardian Internet Content Filter in ubuntu and fedora

For Ubuntu Installing Apache $ sudo aptitude install apache2 Setting a Static IP Address Now make sure that you have a static IP address $ sudo vi /etc/network/interfaces And change the following (bold) to match your network # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 Press Esc then :wq to save and exit. After saving the file, you must now restart the networking process $ sudo /etc/init.d/networking restart Installing and Configuring Squid Install the Squid Proxy Server $ sudo aptitude install squid If you want to change the default port that squid listens on [3128], change the http_port tag using vi, making a backup copy first $ sudo cp /etc/squid/squid.conf /etc/squid/squid.conf_backup $ sudo vi /etc/sq...

How to install iceweasel 3.5 in Debian Lenny stable

To install iceweasel 3.5 in debian lenny you need to do the following steps: Iceweasel 3.5 installation on debian lenny 1. Add the debian repositories testing and experimental: # echo deb http://ftp.fr.debian.org/debian testing main > /etc/apt/sources.list.d/testing.list # echo deb http://ftp.fr.debian.org/debian experimental main > /etc/apt/sources.list.d/experimental.list 2. Leaving the stable distribution on by default: # echo 'APT::Default-Release "stable";' > /etc/apt/apt.conf.d/default 3. Update repositories: # aptitude update 4. Install iceweasel 3.5 units # aptitude install -t testing libstartup-notification0 libsqlite3-0 libnss3-1d libhunspell-1.2-0 libasound2 5. Install iceweasel 3.5: # aptitude install iceweasel/experimental

Install and test grub2

"Grub2" is a replacement for grub, which has been claiming to be the replacement for it for some years. Switching to "grub2" would bring support for newer systems, internationalisation, updates and bug fixes etc. So it's clear we would like to switch the default bootloader to grub2...lets try "install and test grub2". Testing grub2 If you are running Jaunty Jackalope or later, grub2 can be installed in parallel with, and as a chainloaded sub-bootloader of, your existing grub installation. This allows you to boot actually with grub and then select grub2 from the menu. Then you can confirm grub2 works correctly before electing to switch to it formally. Note: If you do this from Jaunty YOUR MACHINE WILL NOT BOOT. Read the instructions about changing "root" to "uuid" below. Though it is unlikely you will have any issues it is always recommend taking precautions before attempting a bootloader update. It is recommended that you have an up...

Quick USB Ubuntu 8.04.1 install from Windows (non Persistent)

Ubuntu 8.04 USB Live installation from Windows : This simple tutorial covers how to install, boot and then run Ubuntu 8.04.1 (Hardy Heron) from a USB flash drive. Upon completion of this tutorial, Ubuntu 8.04 can be run from the portable flash device in the same fashion (but much faster) than it would from the Live CD. This specific tutorial does not cover a Ubuntu 8.04.1 persistence (persistent) feature option. Hence the user cannot save changes back to the USB device using this tutorial. Note: This is a QuicknEasy install. If you would like to perform a more advanced persistent install, saving and restoring changes on subsequent boots, please use the Persistent USB Ubuntu 8.04.1 install tutorial Ubuntu 8.04.1 running from USB screenshot: USB Ubuntu 8.04.1 creation essentials: Windows PC to perform conversion Ubuntu 8.04.1 ISO 1GB or larger USB flash drive Ub8convert2.exe HP USB Format tool Easy Ubuntu 8.04.1 USB flash drive installation tutorial: Download the HP USB format ...

How to install Google Earth on Ubuntu

Some people who use ubuntu, could not know that Google Earth, exists in Ubuntu version! Here is a simple "HowTo" to install it: - Download Google Earth for Linux - GoogleEarthLinux.bin saved on your Desktop - Open the terminal and enter these commands in sequence: cd Desktop chmod +x GoogleEarthLinux.bin ./GoogleEarthLinux.bin