Archives For November 30, 1999

Getdeb is an unofficial project which provides the latest open-source and freeware applications for Ubuntu Linux, and PlayDeb provides games. As Ubuntu based Linux distribution, Linux Mint users are available to install software from this repository.

Objectives:

  • Install / add / enable GetDeb & PlayDeb repository on Linux Mint
  • Enjoy!

To get started, go to Start menu, search and open Software Sources

software-sources

Navigate to Additional repositories, check the box where it says ‘archive getdeb.net’. Click ‘update the cache’ button to update package lists.

enable getdeb repository

That’s it!

If it is not there in your Linux Mint edition, click ‘Add a new repository’ and type in

deb http://archive.getdeb.net/ubuntu raring-getdeb apps games

In the line, change raring to yours based Ubuntu release code name.

Linux Mint 14 Nadia based on Ubuntu 12.10 quantal
Linux Mint 13 Maya based on Ubuntu 12.04 precise
Linux Mint 12 Lisa based on Ubuntu 11.10 oneiric
Linux Mint 11 Katya based on Ubuntu 11.04 natty
Linux Mint 10 Julia based on Ubuntu 10.10 maverick
Linux Mint 9 Isadora based on Ubuntu 10.04 lucid

And get the key by running below commands in terminal (Ctrl+Alt+T):

wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

Enjoy!

office2010
This brief tutorial will show you how to install Microsoft Office suite 2010 on Ubuntu 13.04 Raring Ringtail and Linux Mint using Wine.

Wine is a free and open-source software that allows to run Windows applications on Ubuntu Linux. Now Microsoft Office is running good through Wine.

To get started:

1.) Press Ctrl+Alt+T to open a terminal window, and run commands to install wine:

sudo add-apt-repository ppa:ubuntu-wine/ppa

add-wine-ppa

sudo apt-get update; sudo apt-get install wine1.5

install-wine

2.) After wine is installed, you may log out and back in. Run command below to configure wine:

winecfg

Under Libraries tab, scroll down and select Riched20 library from the list and click add it. When done, click OK.

wine-configuration

3.) For better performance, run below 2 commands to force Wine to run in 32bit process:

export WINEPREFIX=$HOME/wine32 
export WINEARCH=win32

4.) Now, insert your Office CD/DVD or navigate to the Office Setup.exe on your computer. Right-click on it and select “Open With Wine Windows Program Loader”.

run-setup-with-wine

5.) Follow the wizard and you’re done!

This simple tutorial will show you how to convert PNG to JPG in Ubuntu, so that it reduce the memory size and speed up loading image time.

1.) Install the required package by running below command in terminal:

sudo apt-get install imagemagick

2.) Then you can convert an .png image to .jpg format via below command. It takes “ubuntuhandbook.png” in the current directory and creates a JPEG image from it.

convert ubuntuhandbook.png ubuntuhandbook.jpg

You can also specify a compression level for JPEG images.

convert ubuntuhandbook.png -quality 90 ubuntuhandbook.jpg

3.) To convert all PNG files into JPEG files with that same filename but a different suffix. However be warned that if existing file with the same name will be over-written.

mogrify -format jpg *.png