Pages

Showing posts with label installation of packages. Show all posts
Showing posts with label installation of packages. Show all posts

Monday, January 16, 2012

Must have apps / software for ubuntu

Ubuntu comes with handful of free applications which satisfies use of a regular user. but for those ones looking for the extra quotient, there are plenty of applications available in the web, as a ubuntu user from 4.10, I am listing some must have software a Ubuntu user must have.

Browsers
As ubuntu is used by netisons, Browsers are the most used application in any linux distro. most of the popular browsers are available for ubuntu too. here is the most used bowsers.

Google chrome:
Firefox is coming with ubuntu. but google chrome is the most preferred  browser, anyone can download chrome from googles download mirrorsfor free of cost.
Opera is the next option for a big number of web users. opera, firefox and chrome are now sharing the market of browsers with huge shares. we can also install Internet explorer in ubuntu using Wine. Wine will be described later in this post.

Wine
Wine is translation layer which is capable of running Windows applications.  Though not all applications can be installed using WINE, yet it is the best choice for some Windows only software to run under Ubuntu.  Learn more about WINE at http://www.winehq.org/download/ubuntu.


Media Players
Everyone needs a fine media player in his machine. for ubuntu, Movie player comes built in but VLC is the Best options Because it does not require any additional plugins to open any files VLC works fine with most of the media formats. click here for more about VLC

SMPlayer another multimedia player for Ubuntu which is available in ubuntu software center for free of cost. SMPlayer is basically a Qt based MPlayer front-end. SMPlayer remembers the settings of all files you play. Smplayer also features a video resume function So, when you restart a video after quitting SMPlayer, it will start from the exact same position. click this link to Install SMPlayer from Ubuntu Software Center.
Media Management
Kino video editor: Kino: Kino is an ideal video editing application on Ubuntu.  It supports firewire to capture video from your camcorder and to transfer videos from them for editing purpose as well. Vfx can also be added, though initially it feels a little hard to work with this.  Definitely a must have for all video editors. Get kino

GIMP Image Editor: GIMP ican do anything adobe photoshop can do,in short GIMP is Adobe Photoshop for in Linux but FREE.    You can  even extend its capabilities with free plug-ins.


Audacity: Audacity is a free, easy-to-use and multilingual audio editor and recorder for Windows, Mac OS X, GNU/Linux and other operating systems.
You can use Audacity to Record live audio, Convert tapes and records into digital recordings or CDs, Edit Ogg Vorbis, MP3, WAV or AIFF sound files, Cut, copy, splice or mix sounds together and Change the speed or pitch of a recording etc. get GIMP



Office suite
OpenOffice.org: OpenOffice is the Linux alternative for Microsoft Office on Windows.  OOo came as the default Office application on Linux till last year.  It is very powerful office suite which includes Word (Word Processor), Excel (Spreadsheet), Presentation, Drawing, Database and other applications.  Other than that you can install add-ons too to make it even more powerful.

Calibre ebook managerCalibre E-book Library Management

Calibre manages your e-book collection for you. Calibre is a free and open source tool as well. It even supports e-book syncing with a variety of popular e-book readers out there.
Install Calibre from Ubuntu Software Center

Calibre manages your e-book collection for you. Calibre is a free and open source tool as well. It even supports e-book syncing with a variety of popular e-book readers out there.Install Calibre from Ubuntu Software Center

Web
Filezilla:

FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface. It is not only easy to use but also boasts load of features like IPv6 support, Drag and drop, pause and resume file transfer and remote file editing etc.
Bluefish : Bluefish is a powerful HTML editor targeted towards programmers and web designers, with many options to write websites, scripts and programming code. Bluefish supports many programming and markup languages, and it focuses on editing dynamic and interactive websites.
KompoZer is a complete web authoring system that combines web file management and easy-to-useWYSIWYG web page editing. KompoZer is designed to be extremely easy to use, making it ideal for non-technical computer users who want to create an attractive, professional-looking web site without needing to know HTML or web coding.



Tuesday, January 10, 2012

How to set up a firewall in ubuntu

To protect your computer against unauthorized access by people on the Internet or your network,you can set up a firewall in your ubuntu. Firewalls block connections to your computer from unknown sources, which helps to prevent security breaches. If you use a router to connect to the Internet, the router may already have a firewall configured which regulates connections from the Internet to your network.


following post briefs the set up procedure of firewalls in ubuntu.

Most users will prefer to use Gufw, which is a graphical user interface program to configure UFW(uncomplicated firewall).

Click the below link to install and enable Gufw:


then the below shown dialogue box appears.

click on launch application and agree to install the package.

Now, to start Gufw, choose System → Administration → Firewall configuration


To enable the firewall, simply check the box next to Enabled under Actual Status.
The default configuration is to deny connections. This means that a program attempting to connect to your computer will be denied. Certain programs or services which use the internet may require you to add an exception.
To add an exception:
  1. Click Add.
  2. You can choose from Preconfigured options for common programs and services, or you can manually add port exceptions in the Simple or Advanced tabs.
  3. To find out what type of exception a particular program requires, you should consult the help for that program.

Monday, January 2, 2012

[Solved] Installing C and C++ compilers in Ubuntu

Definitely you will be in need of a compiler collection if any bit of you is a programmer. Like all Linux flavours, Ubuntu is also enables users with native C and CPP programming facility.

to install the compilers if they are not installed run the following code in Terminal.

sudo aptitude install build-essential


This will install essential compiler collection , usually gcc in your ubuntu installation. Now all you need is to create your C program and compile it. to open a file from terminal, type


vi program1.c and press enter.


you will be provided with the most popular vi editor after typing your code, type


Esc  :  wq and pres enter.


then type


gcc -o out program1.c and press enter


the output executable will be saved as, out and to execute the latter, type


./out and press enter. that's all.


you can also use gedit(GUI text editor) to type in your programs. to compile the same, cd to the directory in which the program is saved and repeat last two steps 







Thursday, December 29, 2011

[SOLVED] DBus error :ipad WITH UBUNTU

While plug in iPad via USB, an error window pop up with “DBus error org.freedesktop.DBus.Error.NoReply: Message did not receive a reply…”


you can fix this isue by geting iPad to sync with gtkpod(Rhythmbox works too) by upgrading “libimobiledevice” to the latest.



Check libimobiledevice version in System -> Administration -> Synaptic Package Manager, it’s recommended to uninstall libimobiledevice0 if installed.


Add ppa:pmcenery/ppa and install the latest libimobiledevice1 package. 

Use the following commands:

sudo add-apt-repository ppa:pmcenery/ppa
sudo apt-get update
sudo apt-get install libimobiledevice1

Now, plug-in your iTouch or iPad device and it should appear in gtkpod(Rhythmbox):

source: ubuntuforums.org

Tuesday, December 6, 2011

Installing Newest version of firefox: the easiest way to run firefox from .tar.bz2 archive



Problem: I have downloaded firefox from mozilla but the file downloaded was of type firefox.tar.bz2 . the eaziest way to run firefox is given below.

Solution: This solution is for absolute beginners, all you have to to is

1. right click on the .tar.bz2 file and choose extract here, this will create a folder named "firefox".
2. Now open Terminal
3.cd to the extracted folder
 -by default the folder will be in the downloads Directory

type cd /home/<username>/Downloads/firefox/ and press enter(Return). give your username in the place of <username>.

4. type ./firefox and press enter thats all.

Now, If you want to creat a shortcut of the new firefox on top pannel,

1. Right click on the pannel, choose Add to pannel.
2. Choose Custom application launcher from the menu.
3.fill the details As shown in the image.

In the command field insert the following command.

/home/<username>/Downloads/firefox/firefox.

thats all your firefox is now just a click away. thank you.



Wednesday, November 30, 2011

[Solved]Ubuntu 11.10 battery indicator missing

If you are using ubuntu 11.xx version , you might be wondered why the battery indicator icon is missing. a number of users reported this missing of battery icon and here is the solution for the problem.
Problem
The Above bug, or the absence of battery indicator on the upper panel is a commonly found issue with ubuntu 11.10 installations. cause of this issue is different machine to machine
Solutions
There are a handful of ways to solve the battery indicator problem. and my solutions are listed below

1.  Purge and re-install indicator-power
     
    sudo apt-get purge indicator-power

     sudo apt-get install indicator-power


2. Change theme to  'Radiance'.or change away from Radiance,
    to  Make sure this is not an icon issue.

3.  Remove revenants from Unity if any,




  1. (get settings, for curiosity's sake)
    gsettings get com.canonical.Unity.Panel systray-whitelist
    
    (should look something like:)
    ['JavaEmbeddedFrame', 'Wine', 'scp=-dbus-service', 'Update-notifier']
    
    (clear whitelist)
    gsettings set com.canonical.Unity.Panel systray-whitelist "['all']"
  4. Try an alternative battery monitor package




Friday, November 18, 2011

No Sound in Ubuntu 11.10 : SOLVED

PROBLEM: Number of users are reporting that after upgrading to ubuntu 11.10 . there is no sound at all.

Solution 1: Many of them solved it by simply updating the OS once. or at most twice. try updating it for solving the issue.

Problem still persists?. here is another solution, which is related to pulse audio.

Solution 2Deleting the /home/username/.pulse directory fixed the problem for another ones


Solution3: If you still can't hear anything from your machine try the following command,



rm -rvf ~/.pulse/



hope your sound issue is fixed

Wednesday, November 16, 2011

UBUNTU 11.10 .deb file installation issues

Problem: Many of new users of ubuntu 11.10 is facing errors while installing downloaded .deb files. i don't know what is the exact issue with ubuntu 11.10, but generally it is behaving rough to .deb files i hope the problem will get fixed soon because already there are so many error reports raised in the ubuntu community. meanwhile we can install software's through ubuntu software center or via synaptic.

thank you

Monday, March 21, 2011

[SOLVED]Requires installation of untrusted packages "The action would require the installation of packages from not authenticated sources."

Requires installation of untrusted packages
"The action would require the installation of packages from not authenticated sources."

These words made me tensed for three more days because this message is often appeared in your software center or with your synaptic. I thought I have too reintall the os to resolve this. but this problem can be solved by  executing a single line command in shell.

go to applications->accesories->terminal


and type the following line and press enter to solve this problem.

 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5

this will replace the broken keys of your authentication part and opens some repositories for getting software