How to: Tips and Tricks

Easy converting PNG, JPG and other image formats to PDF

Easiest way to convert over 100 image formats to PDF is using ImageMagick. To install type in terminal:

sudo apt-get install imagemagick

Convert image to pdf:

convert source.png target.pdf

Merge all images in folder to one PDF file:

convert *.jpg target.pdf

For more info enter

convert -man

Convert .nrg (Nero image) to .iso file in Ubuntu

If you want to convert .nrg file to .iso file you can use nrg2iso tool to create this. nrg2iso is a program that extracts ISO9660 data from Nero “.nrg” CD-ROM image files.

Install nrg2iso in Ubuntu

sudo apt-get install nrg2iso

More »

4 easiest ways to install LAMP server on Ubuntu

In this guide I will show you the easiest way, how to install a LAMP server. LAMP stands for Linux, Apache, MySQL, PHP. There are many methods to install LAMP, for example the standart one see this howto for ubuntu: Howto: Install LAMP and phpMyAdmin on Ubuntu

Method One (using Terminal)

Under Terminal type command:

sudo tasksel

Select LAMP server and hit OK

Tasksel - select LAMP server

If prompted, insert new root password for the MySQL

Tasksel - root password for MySQL

More »

Easy mounting ISO images in Ubuntu

Gmount-iso is a small tool written using PyGTK and Glade. It allows you to easily mount your cd images. This is a frontend to the mount -o loop -t iso9660 foo.iso /mountpoint command.

To install open terminal and type the following command

sudo apt-get install gmountiso

The application is available from Applications > System Tools > Gmount-iso.

Once it opens, you can specify your .iso file and mountpoint, where you want to mount. Then click on the Mount button. If prompted, enter your password.

Gmount-iso

To unmount, just select your mount point from Mounted Images and click on Unmount.

Disable 60 seconds delay notification in Ubuntu 9.10 (Karmic)

This tutorial shows how to disable 60 seconds delay notification when logout, shutdown and restart Ubuntu 9.10.

First,press Alt+F2 and type gconf-editor. Click Run.

Run application ALT F2

Navigate to apps > Indicator-session. Double click on the only line in right box and set its value to true.

Disable 60 seconds delay notification (apps - indicator-session)

Done.

Quick Setup fresh installed Ubuntu with Ailurus

Ailurus logo

Ailurus is an application which aims at making Linux easier to use.

Features:

  • Help users study some Linux skills
  • Install/remove some applications which are not provided in the official repository
  • Enable/disable some third party repositories
  • Display information about BIOS, motherboard, CPU and battery
  • Show/Hide Computer, Home folder, Trash icon and Network icon on desktop
  • Configure Nautilus thumbnail cache
  • Configure Nautilus context menu
  • Configure Window behavior
  • Configure GNOME auto-start applications
  • Show/Hide GNOME splash screen

Ailurus can be used in:

Fedora 10 – 12
Ubuntu/KUbuntu/XUbuntu 8.04 – 9.10
Mint 5 – 8 More »

Put Home, Computer, Network, Trash icons on Gnome Desktop

To add these icons on Your desktop is simple. Here's how to do it.

Open up the Run dialog box by pressing ALT and F2 keys, then type gconf-editor and click on the Run button (or hit Enter). If prompted, enter your password to proceed.

Run Application dialog: gconf-editor

The Configuration Editor will open up. Navigate to Apps > Nautilus > Desktop from the left menu.

Then on the right hand side place a check against the icons you want to see displayed on the desktop. You can display the Computer, Home, Trash and Network icons from in here. More »

Empty Ubuntu Gnome Trash in command line

If you cannot empty your trash, then open terminal and use this command:

WARNING: this method will delete all the contents without prompt any warning!!!

rm -r ~/.local/share/Trash/files/*

Simple Ubuntu install script

To customise and set Ubuntu's clean installation, add some programs You can create simple script which can do for example:

  • add favorite repositories and PPA
  • uninstall unnecessary software
  • install new programs
  • add network drives in fstab
  • run the VPN client
  • attach drives from fstab
  • do a few fix (umountcifs problem, turn off pc speaker and welcome sound)

More »