Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts

Sunday, November 1, 2009

Easy steps to add a digital watermark to image with GIMP

  1. Download watermark plug-in (watermark.scm) for GIMP here.
  2. Go to your home folder and enter key Ctrl+H to view hidden files (or go to  File Browser (Nautilus) menu, and select View -> Show Hidden Files).
  3. In your home folder Go to /.gimp-2.6/scripts directory folder and drop watermark.scm to that folder.
  4. Open GIMP (Applications -> Graphics -> GIMP Image Editor).
  5. You will see Script-Fu menu has been added to your GIMP menu.
  6. Open image file.
  7. To add digital watermark go to menu Script-Fu -> MyScripts -> Watermark. Script-Fu: Watermark window will open.
  8. On Script-Fu:Watermark window you can enter your watermark text, choose font type, font size, location to put watermark text on your image and opacity for watermark text. After finish click OK button.
  9. Now your image has been added digital watermark. Don't forget to save your digital watermark image.

Tuesday, September 1, 2009

Installing Software on Ubuntu - Part 4 (Terminal)

Using terminal command line is the efficient way to install software on Ubuntu. The command line we will use is 'apt-get'. The command-line format of the apt-get command is:
sudo apt-get command

We precede the command with sudo because all software management requires root (administrator) powers. It’s always advisable to get the most up to date list from the software repositories. To do that, type the following command:
sudo apt-get update

To install software we will use the following command (eg: Abiword word processor) :
sudo apt-get install software_name

sudo apt-get install abiword


If any dependencies are required, apt-get lists them and asks whether you want to install them as well.
___________________________________________________________
The apt-get Commands
update
Retrieve package updates for the currently installed packages

upgrade
Install the newest versions available of the currently installed packages

dselect-upgrade
Alter the status field of the specified packages to the specified state

dist-upgrade
Upgrade to the newest Ubuntu distribution

install
Install one or more packages specified on the command line

remove
Remove one or more packages specified on the command line

purge
Remove packages and related files

source
Install source-code files for the packages specified on the command line

build-dep
Install or remove packages to satisfy the dependencies for a specific package

check
Update package cache and check for broken package dependencies

clean
Clear the local cache copies of all installed package files

autoclean
Automatically clear the local cache copies of package files that are no longer supported in the repositories

autoremove
Remove packages that were installed as dependencies and no longer needed

Tuesday, August 18, 2009

Installing Software on Ubuntu - Part 3 (Synaptic Pakage Manager)

Sometime, not all software or packages listed in Add/Remove application. So you can use synaptic package manager.

1. Go to System -> Administration -> Synaptic Package Manager. Enter password and click OK.





















2. Type software name on Quick search box and or you can click Search button for advanced search. Once you've found the software you want, left-click and choose Mark for Installation from pop-up menu.














3. Click Mark button for additional packages.











4. Click Apply button, and click apply again on Summary pop-pup window.













5. Wait for the package files to download and install. Once they've installed, click Close.

Sunday, August 16, 2009

Installing Software on Ubuntu - Part 2 (Add/Remove Applications)

Installing software using Add/Remove Application is the fastest and easiest way in Ubuntu Linux.

1. Select Add/Remove from Application menu and Add/Remove Application will appear. Select all available applications to show all applications available in your repositories.
















2. Select categories and select software or you can search software you want.













3. Click Apply and Ubuntu will ask password, insert password and click OK.

















4. Wait for the package files to download and install. Click Close or Add/Remove More Applications after installation finished.

Wednesday, August 12, 2009

Installing Software on Ubuntu (Introduction) - Part 1

Software Installation on Ubuntu is quite different with Windows.. Actually it's not difficult to install software in Ubuntu. There are 4 basic ways:

1. Using Add/Remove Application















2. Using Synaptic Packages Manager



3. Using Terminal















4. Using DEB packages






To be Continue...