RSS
 

PPA Fundas

27 Jun

For Software Developers/Providers

Personal Package Archive (PPA) service is provided for Ubuntu by Launchpad via which you can distribute software and updates directly to Ubuntu users. Create your source package, upload it and Launchpad will build binaries and then host them in your own apt repository.
Refer this link for more on how to create your own PPA to distribute software.

For Users (Like Us)

PPA (https://launchpad.net/ubuntu/+ppas) can be easily used to add new sources for software not available in Software Centre.PPAs work like normal Ubuntu archives. You can install software in the usual way — for example, through apt-get or synaptic — and whenever there’s an update Ubuntu will prompt you to install it. Both the x86 & x64 architectures are supported by PPA.

Here is an example, to add the repository:

sudo add-apt-repository ppa: user/ppa-name

So pop up your Terminal and try adding few of them from below

Open Office : sudo add-apt-repository  ppa:openoffice-pkgs/ppa

Google Chrome Browser Beta : sudo add-apt-repository ppa:chromium-daily/beta

ClamAv Antivirus : sudo add-apt-repository ppa:ubuntu-clamav/ppa

Remember to run sudo apt-get update after you are done with above

Here is a look at a successfull addition via PPA


If you still feel you are bit of a Linoob just try using Ubuntu Tweak

Digg It! Tweet It Share On facebook Share On facebook Add to Del.cio.us RSS Feed Add to Technorati Favorites Stumble It! Mixx It! Buzz It Up! Post To MySpace

 

True Combat ELITE

23 Jun

TrueCombat:Elite (TC:E) by ” Team Terminator “  & Studio Groove Six is a modification to first-person shooter Wolfenstein: Enemy Territory. Wolfenstein Enemy Territory is based on World War II & weapons and techniques of that time , TC:E modernizes all aesthetic elements of the game while preserving the fast-paced first person shooter style of gameplay compared to my favourite Counter Strike by Valve Corporation. Also in common with Enemy Territory, True Combat : Elite is cross-platform free software with clients for Linux,Windows & Mac OS X. TC:E remains popular and components of the game including maps and weapons are under continuous development .

TC:E puts you into the role of elite mercenary soldier in the conflicts of two internationally operating forces. Sounds cool ,isnt it :)

Game Modes :-

  1. Objective -Each player is deployed(spawns) once per round. As terrorist,  the main aim is to plant a bomb at a specified bombsite and prevent enemy from defusing it till it detonates or to kill all enemies , all this inside a specified timeline . As a special operative, one aims to prevent the terrorists from achieving their goals by killing all the terrorists or defusing their bomb.
  2. Body Count -Deployment comes in 10 second increments. Players that have been killed prior to a deployment are continuously redeployed. Yes, you can call it a deathmatch (kick ass).
  3. Capture The Flag – CTF simulates the game of capture the flag: teams try to bring a flag back to their base from across the map. Unlikely R-obj (known as Reinforced Objective) the goal is to capture as many areas (marked by flags) as possible before the time limit, or the elimination of either team.

Gameplay :-

The gameplay is multiplayer & entirely online .

Download :-

W:ET Full game : here

& Security patch : here

TC:E Full game : here

& Elite patch : here

Read the rest of this entry »

Digg It! Tweet It Share On facebook Share On facebook Add to Del.cio.us RSS Feed Add to Technorati Favorites Stumble It! Mixx It! Buzz It Up! Post To MySpace

 

Installing Transmission 2 In Ubuntu

20 Jun

Transmission is a leading BitTorrent client in for Unix-Like Operating system(including Ubuntu and MacOSX) powered by GTK+ and Qt GUI that supports features like

  • Magnet Links
  • DHT
  • Encrypted Sessions
  • Remote UI
  • PeerCaching
  • BlockLists and much more

Recent v2  supports Local Peer Discovery which was a much awaited feature making your downloads much faster with improved GUI.

INSTALLATION

sudo  add-apt-repository ppa:transmissionbt/ppa
sudo apt-get update
sudo apt-get install transmission
or for rest of Linux or Max OSX visit this link
Here are few Screenshots

For newbies who don’t know about torrents please refer these
A Beginner Guide to BitTorrent

Digg It! Tweet It Share On facebook Share On facebook Add to Del.cio.us RSS Feed Add to Technorati Favorites Stumble It! Mixx It! Buzz It Up! Post To MySpace

 
 

Geany – A basic programming IDE for Linoobs

09 Jun

While learning Programming we do need tools to make our work simpler. One such tool is Geany which is basically a text editor with IDE like features, and focuses on simplicity rather than features. It supports a variety of languages which include (but not limited to) C, Java, JavaScript, PHP, HTML, CSS, Python, Perl, Ruby, Pascal and Haskell.

Installing Geany

Geany is in Ubuntu repos and can be easily installed via Synaptic, Software Center, and obviously through terminal.

sudo apt-get install geany

The Interface

As it can be seen from the screen shot, Geany has a pretty basic interface and new users won’t really be lost as it is like any other text editor in terms of simplicity.

How it works

Geany works on the file extension principle. When you save a text file of a program code with an extension, Geany corresponds to the appropriate compiler and interpreter and thus serves multiple languages. For example for .c extension it corresponds to gcc, .py for Python, .rb for Ruby, .pl for Perl, etc.
It does not have the advanced features of IDEs like Eclipse or Code::Blocks, but it serves perfectly for learning programming.
Also note that it’s only an IDE and does not have the corresponding compiler or interpreter. For that you need to download and set that separately. For instance you can install C/C++ compiler by:

sudo apt-get install build-essential

Geany having a very simple interface can be easily used for practicing programming or creating basic programs. For instance, you can create a C program like this:

#include<stdio.h>
int main()
{
    printf("Hello, World!");
    return 0;
}

Now you have to save the file with a .c extension, and compile the code by going to Build->Compile or simply pressing F8. To link the code you have to go to Build->Build or press F9. If your program has been compiled and linked correctly, you can simply execute it as Build->Execute or pressing F5.

And in case of Python:

#!/usr/bin/env python
print "Hello, World!"
#

Now in case of Python you simply execute the code by pressing F5, since Python is an interpreted language. You can also “compile” which basically checks for few syntax errors.

Similarly Geany works in plenty of languages and saves a lot of time particularly for beginner programmers since they don’t really have to change to a particular directory and invoke compiler by terminal.

Happy Programming.

Digg It! Tweet It Share On facebook Share On facebook Add to Del.cio.us RSS Feed Add to Technorati Favorites Stumble It! Mixx It! Buzz It Up! Post To MySpace

 
Page 2 of 121234510...Last »