RSS
 

Archive for the ‘Tips and Tricks’ Category

Installing Ubuntu 11.04 and Testing Unity

15 Apr

Well, all you guys must be very familiar with the new Unity interface of Ubuntu and some are finding it buggy, unsupportive DE and want to stick to Gnome. Perfect approach ? No, a little wrong coz Unity is now really stable and by the end of April, you will see it as a really good DE to work with. We in this post will cover the basic aspects of Unity and howto get it working on your Ubuntu 11.04 Desktop. Laptops have integrated cards so they might pick it up directly but when it comes to desktops and external Video cards, things get messy. We are going to cover every small bit so that your Ubuntu experience remains better as it was with Gnome 2.32.

Download Ubuntu 11.04 Beta

Read the rest of this entry »

 

Synapse Launcher 0.2.6 for Ubuntu

10 Apr

Synapse is a semantic launcher written in Vala that you can use to start applications as well as find and access relevant documents and files by making use of the Zeitgeist engine. Its similar to ‘Gnome-Do’ but its different, looks better and is really fast. We are glad to announce that the latest release of Synapse 0.2.6 is out. This release brings multiple fixes with the Searches, UI problems, Copy to clipboard action and other bugs.

Installation

Synapse is available via PPA making it a matter of few steps getting it to work.

sudo add-apt-repository ppa:synapse-core/ppa
sudo apt-get update
sudo apt-get install synapse pastebinit

Alright! So now we have Synapse installed. Working on it would be really easy.
Read the rest of this entry »

 

Shutter: Feature-rich Screenshot App for Ubuntu

27 Sep

Shutter is a free & open-source feature-rich screenshot program which has been licensed under GPL v3. It allows user to capture almost everything. It can take a screenshot of a specific area, window, your whole screen, or even of a website – apply different effects to it, draw on it to highlight points, and then upload to an image hosting site, all in one window. Isn’t it awesome ?

Lets take a look at the Features :-

1)Capturing the Desktop :-

  1. Capture a Specific Area:  Select any region of the screen and capture only those parts you really need.
  2. Capture a Window: Simply use your mouse to select the window you want to capture.
  3. Capture the Desktop: It does not only capture all the contents of your desktop, it also supports Multi-monitor settings.
  4. Capture a Website: Shutter uses gnome-web-photo to capture a website without opening a browser window.
  5. Capture a Menu or Tooltip: Capturing menus or tooltips is very easy with Shutter. You select one of the options and a (user-defined) countdown starts. During this time you can open the desired menu or let a specific tooltip come up. Shutter will recognize and capture it. This one is my favourite :)

Read the rest of this entry »

 

ConkyWizard: Edit & Run Conky Easily

14 Sep

ConkyWizard is a wizard to set up Conky on Ubuntu, without knowledge of its use. Currently the program is customized for Ubuntu Lucid & has been written in C++ using Qt 4.6 libraries. This program really makes it simple for you to edit conky without any actual knowledge of its .conkyrc editing thingy.

Download :- ConkyWizard V1.0 beta1

Read the rest of this entry »

 

Securing your files from unauthorised access with Ubuntu

05 Oct

We are all paranoid about our files. Aren’t we? Whether if they contain personal information or classified information, there is a certain degree of concern we have. However with the advent of digital age, it is not that we can simply put them in lockers and guard them. Indeed you can lock your PC and disconnect it from network access, but what’s the point of using a computer to store your documents, use paper then right? Encrytion provides the way by which we can protect our files and folders. It is a method of encoding the files so that they can’t be accessed without being decoded first. For this we need a pass phrase (read: password). Thus the goal to stop the unauthorised individuals from accessing your critical documents is achieved. Ubuntu allows encryption and decryption of files and folders, but Ubuntu (at least the latest versions) have the ability to create an encrypted file store in which files are automatically encrypted and the process is entirely invisible from the user’s perspective.

Create an Encrypted private/ directory

Ubuntu has the ability that allows encryption of files “on the fly”. With this method, only the user who’s home directory the ~/private directory is residing, can access those files. No body else can access those files. That is a certain loophole of users being able to use a Live CD for accessing the files is largely eliminated. Now in order to go further, you need to install the required packages. I would suggest using the terminal since that would be quicker. :p

sudo apt-get install ecryptfs-utils

Now set up the pass phrase such by running this command.

ecrpytfs-setup-private

You would be asked your login password for running this command. Next it will ask you the pass phrase, i.e. the mount pass phrase. Keep in mind that the mount pass phrase is not same as login password and also that you have to remember the passphrase in case you need to unlock the files manually at a future date. Once you have finished running the commands, log out and then log back in again. After logging in, you’ll find on opening the home directory that there’s a new private folder. This private folder will store all the files within itself encrypted and thus the files within it cannot be accessed without authority, i.e. only the original user can access it.

Read the rest of this entry »

 

Unrar and Unzip

07 Sep

For those who are facing problems in extract RAR archives, here is a solution

sudo apt-get install unrar

Unfortunately, RAR is a proprietary archive format. There aren’t very good free and native tools to create RAR archives in Ubuntu. You can try WinRar in Wine though. WinRar actually works flawlessly in Wine.

Similarly, for extracting and creating ZIP archives, you have to do:

sudo apt-get install zip unzip

;)

 

Time Conflicts..!!!

18 Jun

Since many of our users might not have completely migrated from Windows they probably be facing some time issues when they login into Ubuntu & then login back into Windows.
Well thats because Ubuntu treats your default time to be UTC (Universal Time Coordinated or GMT).

Change The Time...!!!

So to adjust the time such that the time remains same in both the cases do the following:

1) Press Alt+F2 (remember the shortcut)
2) Type (else copy paste)

gksu gedit /etc/default/rcS

3) Enter the password and a gedit (almost same as Notepad for windows) window will pop up.
4) Search for UTC and set UTC=yes or UTC=no (or accordingly how you wish)
5) Reboot and you are done..!!!!
Happy Synchronization

Note: sudo or gksu both are for running commands as root. gksu is preferred if you want to use GUI.