gDesklets is a system for bringing mini programs (desklets), such as weather forecasts, news tickers, system information displays, or music player controls, onto your desktop, where they are sitting there in a symbiotic relationship of eye candy and usefulness. The possibilities are really endless and they are always
there to serve you whenever you need them, just one key-press away. The system is not restricted to one desktop environment, but currently works on most of the modern Unix desktops (including GNOME, KDE, Xfce).
(...)
Read the rest of Howto install and configure gDesklets in Ubuntu hardy (174 words)
© admin for Ubuntu Geek, 2008. |
Permalink |
4 comments |
Add to
del.icio.us
digg
Who's linking ?
Technorati
BlogPulse
Google
Want more on these topics ? Browse the archive of posts filed under General.
Ubuntu: Ubuntu Geek - Ubuntu Tutorials,Howto's,Tips and Tricks
LXDE is a new project aimed to provide a new desktop environment which is lightweight and fast. It’s not designed to be powerful and bloated, but to be usable and slim enough, and keep the resource usage low. Different from other desktop environments, we don’t tightly integrate every component. Instead, we tried to make all components independent, and each of them can be used independently with few dependencies.
(...)
Read the rest of LXDE - Lightweight X11 Desktop Environment for Ubuntu (184 words)
© admin for Ubuntu Geek, 2008. |
Permalink |
11 comments |
Add to
del.icio.us
digg
Who's linking ?
Technorati
BlogPulse
Google
Want more on these topics ? Browse the archive of posts filed under General.
Ubuntu: Ubuntu Geek - Ubuntu Tutorials,Howto's,Tips and Tricks
gestikk provides mouse gestures for you, supporting many linux window managers. With gestikk, you can easily control your PC by drawing gestures with the mouse: mouse gestures. Gestikk allows to define an infinite number of gestures, which start applications or simulate key presses. Versions >= 0.5 uses PyGTK for GUI and python-virtkey for keypresses.
(...)
Read the rest of Gestikk - mouse gesture recognition in Ubuntu (237 words)
© admin for Ubuntu Geek, 2008. |
Permalink |
3 comments |
Add to
del.icio.us
digg
Who's linking ?
Technorati
BlogPulse
Google
Want more on these topics ? Browse the archive of posts filed under General.
Ubuntu: Ubuntu Geek - Ubuntu Tutorials,Howto's,Tips and Tricks
In around 15 minutes, the time it takes to install Ubuntu Server Edition, you can have a LAMP (Linux, Apache, MySQL and PHP) server up and ready to go. This feature, exclusive to Ubuntu Server Edition, is available at the time of installation.
The LAMP option means you don't have to install and integrate each of the four separate LAMP components, a process which can take hours and requires someone who is skilled in the installation and configuration of the individual applications. Instead, you get increased security, reduced time-to-install, and reduced risk of misconfiguration, all of which results in a lower cost of ownership.New pre-configured installation options have been added to the Ubuntu Server. Mail Server, File Server, Print Server, and Database Server options join existing LAMP and DNS options for pre-configured installations, easing the deployment of common server configurations.
Ubuntu LAMP server Install the following Versions
Ubuntu Gutsy Gibbon 7.10
Apache 2.2.4
Mysql 5.0.45
PHP 5.2.3
First you need to download server version of Ubuntu version from here after that you create a CD and start booting with the CD Once it starts booting you should see the following screen in this you need to select second option "Install to the Hard disk Option" and press enter

Choose you language and press enter you can see we have selected english in the follwoing screen

Choose your location and press enter you can see we have have selected United Kingdom in the follwoing screen

If you want to try to have your keyboard layout detected by pressing a series of keys you need to select yes option and if you don't want that and you want to choose from a list click no in this example we have selected no and press enter

Select Origin of keyboard and press enter

Select keyboard layout and press enter

Detecting hardware to find CD-ROM Drivers in progress

Scanning CD-ROM in Progress

Loading additional components progress bar

Configures the network with DHCP if there is a DHCP server in the network

Enter the Hostname of the system so in this example i enter here as ubuntulamp

Detecting Disks and Hardware in progress

Startingup the partitioner in progress

you have to partition your hard disk in this example i have selected use entire disk option if you want to edit manually you can choose manual and press enter

Warning message about data lost on your hard disk
Creating partitions in your harddisk
Write the changes to disk option here you need to select yes and press enter

Creating ext3 filesystem in progress

Configuring the clock option here if you want to leave UTC Select yes otherwise no and press enter

You need enter the Full name of the user you want to create for your server in this example i have created administrator user select continue and press enter

username for your account in this i have entered test select continue and press enter

Entered the password for test user select continue and press enter

Confirm the password for test user select continue and press enter

Installing the base system in progress

Configuring package mirror this will be related to your country option

Now it will start Installing software and here you need to select the server options here i have selected as LAMP for our LAMP server installation

Software Installation in Progress

At the time of software installation it will prompt for mysql server root password enter root password of your choice and select continue

Installing GRUB Boot loader in progress

Installation complete message here you need to remove your CD select continue and press enter it will reboot your server

After rebooting you can see the following screen prompt for username

This will complete the Ubuntu LAMP Server Installation and your server is ready for installing applications which supports apache,mysql and php.
Configuring Static ip address in Ubuntu server
Ubuntu installer has configured our system to get its network settings via DHCP, Now we will change that to a static IP address for this you need to edit Edit /etc/network/interfaces and enter your ip address details (in this example setup I will use the IP address 172.19.0.10):
sudo vi /etc/network/interfaces
and enter the following save the file and exit
# The primary network interface
auto eth0
iface eth0 inet static
address 172.19.0.10
netmask 255.255.255.0
network 172.19.0.0
broadcast 172.19.0.255
gateway 172.19.0.1
Now you need to restart your network services using the following command
sudo /etc/init.d/networking restart
You need to setup manually DNS servers in resolv.conf file when you are not using DHCP.
sudo vi /etc/resolv.conf
You need to add look something like this
search domain.com
nameserver xxx.xxx.xxx.xxx
Install SSH Server
If you want to access your server remotely through SSH you need to install SSH server for this you need to run the following command
sudo apt-get install ssh openssh-server
You will be prompted to insert the installation CD again and this will complete SSH server in your Gutsy lamp server.This is really simple and easy server installation for new users and who wants a quick server.
GUI Installation for Ubuntu LAMP Server
Option1
If you are a new user and not familiar with command prompt you can install GUI for your ubuntu LAMP server for this you need to make sure you have enabled Universe and multiverse repositories in /etc/apt/sources.list file once you have enable you need to use the following command to install GUI
sudo apt-get update
sudo apt-get install ubuntu-desktop
The above command will install GNOME desktop if you want to install KDE desktop use the following command
sudo apt-get install kubuntu-desktop
Optio2
Installing Webmin in Ubuntu Gutsy Gibbon
Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely.
You can install webmin for your server web interface to configure apache,mysql servers.Now we will see how to install webmin in Ubuntu 7.10
Preparing your system
First you need to install the following packages
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
Now download the latest webmin using the following command
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.370_all.deb
Now we have webmin_1.370_all.deb package install this package using the following command
sudo dpkg -i webmin_1.370_all.deb
This will complete the installation.
Ubuntu in particular don't allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges.
Now you need to open your web browser and enter the following
Now you should see similar to the following Screen

Once you enter into the webmin you should see similar to the following screen

If you want to configure Apache,Mysql server you need to click on Servers on your lefthand side you should many servers are ready to configure

This is very Easy to configure most of the servers and Enjoy your new Ubuntu Gutsy Gibbon LAMP Server
In around 15 minutes, the time it takes to install Ubuntu Server Edition, you can have a LAMP (Linux, Apache, MySQL and PHP) server up and ready to go. This feature, exclusive to Ubuntu Server Edition, is available at the time of installation.
The LAMP option means you don't have to install and integrate each of the four separate LAMP components, a process which can take hours and requires someone who is skilled in the installation and configuration of the individual applications. Instead, you get increased security, reduced time-to-install, and reduced risk of misconfiguration, all of which results in a lower cost of ownership.New pre-configured installation options have been added to the Ubuntu Server. Mail Server, File Server, Print Server, and Database Server options join existing LAMP and DNS options for pre-configured installations, easing the deployment of common server configurations.
Ubuntu LAMP server Install the following Versions
Ubuntu Gutsy Gibbon 7.10
Apache 2.2.4
Mysql 5.0.45
PHP 5.2.3
First you need to download server version of Ubuntu version from here after that you create a CD and start booting with the CD Once it starts booting you should see the following screen in this you need to select second option "Install to the Hard disk Option" and press enter

Choose you language and press enter you can see we have selected english in the follwoing screen

Choose your location and press enter you can see we have have selected United Kingdom in the follwoing screen

If you want to try to have your keyboard layout detected by pressing a series of keys you need to select yes option and if you don't want that and you want to choose from a list click no in this example we have selected no and press enter

Select Origin of keyboard and press enter

Select keyboard layout and press enter

Detecting hardware to find CD-ROM Drivers in progress

Scanning CD-ROM in Progress

Loading additional components progress bar

Configures the network with DHCP if there is a DHCP server in the network

Enter the Hostname of the system so in this example i enter here as ubuntulamp

Detecting Disks and Hardware in progress

Startingup the partitioner in progress

you have to partition your hard disk in this example i have selected use entire disk option if you want to edit manually you can choose manual and press enter

Warning message about data lost on your hard disk
Creating partitions in your harddisk
Write the changes to disk option here you need to select yes and press enter

Creating ext3 filesystem in progress

Configuring the clock option here if you want to leave UTC Select yes otherwise no and press enter

You need enter the Full name of the user you want to create for your server in this example i have created administrator user select continue and press enter

username for your account in this i have entered test select continue and press enter

Entered the password for test user select continue and press enter

Confirm the password for test user select continue and press enter

Installing the base system in progress

Configuring package mirror this will be related to your country option

Now it will start Installing software and here you need to select the server options here i have selected as LAMP for our LAMP server installation

Software Installation in Progress

At the time of software installation it will prompt for mysql server root password enter root password of your choice and select continue

Installing GRUB Boot loader in progress

Installation complete message here you need to remove your CD select continue and press enter it will reboot your server

After rebooting you can see the following screen prompt for username

This will complete the Ubuntu LAMP Server Installation and your server is ready for installing applications which supports apache,mysql and php.
Configuring Static ip address in Ubuntu server
Ubuntu installer has configured our system to get its network settings via DHCP, Now we will change that to a static IP address for this you need to edit Edit /etc/network/interfaces and enter your ip address details (in this example setup I will use the IP address 172.19.0.10):
sudo vi /etc/network/interfaces
and enter the following save the file and exit
# The primary network interface
auto eth0
iface eth0 inet static
address 172.19.0.10
netmask 255.255.255.0
network 172.19.0.0
broadcast 172.19.0.255
gateway 172.19.0.1
Now you need to restart your network services using the following command
sudo /etc/init.d/networking restart
You need to setup manually DNS servers in resolv.conf file when you are not using DHCP.
sudo vi /etc/resolv.conf
You need to add look something like this
search domain.com
nameserver xxx.xxx.xxx.xxx
Install SSH Server
If you want to access your server remotely through SSH you need to install SSH server for this you need to run the following command
sudo apt-get install ssh openssh-server
You will be prompted to insert the installation CD again and this will complete SSH server in your Gutsy lamp server.This is really simple and easy server installation for new users and who wants a quick server.
GUI Installation for Ubuntu LAMP Server
Option1
If you are a new user and not familiar with command prompt you can install GUI for your ubuntu LAMP server for this you need to make sure you have enabled Universe and multiverse repositories in /etc/apt/sources.list file once you have enable you need to use the following command to install GUI
sudo apt-get update
sudo apt-get install ubuntu-desktop
The above command will install GNOME desktop if you want to install KDE desktop use the following command
sudo apt-get install kubuntu-desktop
Optio2
Installing Webmin in Ubuntu Gutsy Gibbon
Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely.
You can install webmin for your server web interface to configure apache,mysql servers.Now we will see how to install webmin in Ubuntu 7.10
Preparing your system
First you need to install the following packages
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
Now download the latest webmin using the following command
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.370_all.deb
Now we have webmin_1.370_all.deb package install this package using the following command
sudo dpkg -i webmin_1.370_all.deb
This will complete the installation.
Ubuntu in particular don't allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges.
Now you need to open your web browser and enter the following
Now you should see similar to the following Screen

Once you enter into the webmin you should see similar to the following screen

If you want to configure Apache,Mysql server you need to click on Servers on your lefthand side you should many servers are ready to configure

This is very Easy to configure most of the servers and Enjoy your new Ubuntu Gutsy Gibbon LAMP Server
Automatix is a graphical interface for automating the installation of the most commonly requested applications in Debian based Linux operating systems.
Before installing Automatix2, make sure that the non-free and contrib directories in your primary debian repository in /etc/apt/sources.list are enabled. Automatix2 depends on one or more packages from these directories. Your primary debian repository should look like something as follows
deb http://ftp.us.debian.org/debian/ etch main non-free contrib
Install Automatix2 in Debian Etch
Open terminal do the following enter each line and press enter
echo “deb http://www.getautomatix.com/apt etch main” | sudo tee -a /etc/apt/sources.list
wget http://www.getautomatix.com/keys/automatix2.key
gpg --import automatix2.key
gpg --export --armor E23C5FC3 | sudo apt-key add -
Now you need to update your source list using the following command
#apt-get update
Install Automatix2 Using the following command
#apt-get install automatix2
This will complete the installation and now if you want to open the application you need to go to Applications—>System Tools—>Automatix you can see in the following screen

This will prompt for root password and enter your root password and click ok

Multimedia codecs License information just click on yes

Automatix2 is loading

Automatix2 is Updating Source list

Now you should see the following screen this is having different softwares in different categories

“Burning and Ripping” this contains the following applications
Brasero - CD Burning tool for the GNOME Desktop
GnomeBaker - The Best GTK2 CD/DVD Burning Software
Ripper and Tuner - Streamripper and Streamtuner
xDVDshrink - Linux CounterPart of DVDshrink

“Chat Clients” contains the following applications
AMSN 0.95 - MSN Client With Webcam Support
Gaim 2.0 Beta5 and extras - Install Gaim 2.0 Beta5 and extras
Gyachi - Yahoo Messanger With Voice,Webcam and lots of other features
Skype - A free Voice over IP Software
XChat - Install XChat

“Codecs and Plugins” contains the following applications
AUD-DVD Codecs - NON-FREE Audio and DVD codecs
Flash Player - Installs the adobe Flash Player Plugin for firefox
Mplayer and FF Plugin - Mplayer and Firefox 2.0 plugin
Multimedia Codecs - Commonly needed audio and video codecs
SUN Java 1.5 JRE - Sun’s Version 1.5 JRE and the firefox plugin
Swiftfox Plugins - Installs commonly used Swiftfox Plugins,MS Fonts

“Commercial Software” contains the following applications
Crossover Office Professional 6.0-1 - Install and Run Windows applications like MS Office and Adobe Photoshop
Crossover Office Standard 6.0-1 - Install and Run Windows applications like MS Office and Adobe Photoshop

“Drivers” contains the following applications
ALSA Sound Configuration - Runs Module assistant to correctly compile and configure ALSA
Lightscribe for Linux - LaCie LightScribe Labeler for Linux
NDISWrapper - A driver wrapper that allows you to use windows drivers for network cards
Nvidia Driver - Installs nVidia drivers on select nVidia cards
fooz2js drivers - Installs the drivers for the printers
spca5xx webcam drivers - Installs drivers for USB Webcams

“Email Clients” contains the following applications
Checkgmail - Gmail checker which sits in your system tray
Icedove 1.5 - Installs Icedove 1.5

“Eyecandy” contains the following applications
Gdesklets - Installs Gdesklets

“File Sharing” contains the following applications
Azures - Installs Azureus bittorrent client
Bittornado - A GTK Bittorent Client for GNOME
DCPP - Linux DC++ client
Frostwire - Install Frostwire P2P client
aMule - Latest version of a P2P file sharing client

“Media Players and Editors” contains the following applications
Audacity - A Versatile audio editor
Avidemux - Video Editing Tool
Beep Media Player - A classic winamp style audio player
DVD Ripper - Installs a GTK based DVD ripper
Democracy Player - Internet TV Platform
Easytag - A Versatile mp3 tag editor
Kino - A Versatile Video editor
Listen Media Manager - Latest Version of a new media manager and player for GNOME
RealPlayer - Installs RealPlayer
Songbird - Music Manager
VLC Media Player - Another Versatile media player
iLinux - iLife Alternative and Ipod programs and libraries

“Miscellaneous” contains the following applications
Automatix read/write NTFS and FAT32 Mounter - Automatically mounts all local FAT32 and NTFS Partitions and makes them writable
Ctrl-Alt-Del - This Configures Ctrl-Alt-Del to Open Gnome System Monitor
Debian Menu - Shows all installed applications on your system
Extra Fonts - Additional fonts and msttcorefonts
Nautilus Scripts - Open Nautilus, and any file with gedit with a right click, as root (GNOME ONLY)
Slab - Installs Novell’s “Slab” menu used in SLED 10

“Office” contains the following applications
Acrobat Reader - Adobe Acrobat Reader and plugin for Firefox 2.0
GnuCash - Money management software for GNOME
Google Earth - Satellite Earth imagery application from Google
Google Picasa - Photo editing application from Google
OpenOffice Clipart - clipart in OpenOffice

“Programming Tools” contains the following applications
Anjuta - C/C++ Development enviroment
Bluefish - HTML Editor
Gambas - Gambas is a free development environment based on Basic interpreter like Visual Basic
SUN Java 1.5 JDK - Sun’s Version 1.5 JDK
Screem - Gnome website development environment
Scribus - Desktop publishing software
Stanis Python Editor - A powerful python IDE

“Utilities” contains the following applications
Archiving Tools - Additional archiving tools (rar, unrar, ace, and 7zip)
Backup and Restore - A graphical backup and restore solution for Ubuntu (GNOME)
Beagle - A Mono-based desktop search program
Boot-up Manager - Easy configuration of startup and shutdown scripts and services
GFTP - FTP client for GNOME with ssh capability
Glipper - Clipboard Manager for Gnome
Gnome Security Suite - ClamAV Antivirus and Firestarter Firewall
GnomePPP - Graphical dialup connection tool
Network Manager - A Program and menu applet that allows you to easily change networks

“Virtualization” contains the following applications
VirtualBox - Runs virtual operating systems
Wine - Installs wine

“Web Browsers” contains the following applications
Opera Browser - Installs Opera Web Browser
Swiftfox Browser - Installs Swiftfox browser for your specific CPU

Example
Now we will see one example how to install Opera web browser using automatix first you need to check the tick box option available next to opera browser application

Now if you want to start installation you need to click on start button available at the top panel

Opera Web Browser installation in progress

Uninstall applications Using Automatix
If you want to uninstall any application which you installed using automatix you need to click on uninstall tab select the application you want to uninstall and click on start button on top

Automatix2 is having new feature when you can check your automatix activitylog, change log, Errors and Information and Source list

Sample Activitylog Report

Sample Changelog Report

If you want to see KDE Applications click on Show KDE apps

Tags: automatix debian, automatix2 configuration debian, automatix2 debian, automatix2 debian etch, automatix2 screenshots, install automatix2 debian etchautomatix debian, automatix2 configuration debian, automatix2 debian, automatix2 debian etch, automatix2 screenshots, install automatix2 debian etch
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
install
Debian
configuration
screenshots
General
automatix
Etch
GnuCash is personal and small-business financial-accounting software, freely licensed under the GNU GPL and available for GNU/Linux, *BSD, Solaris and Mac OSX.
Designed to be easy to use, yet powerful and flexible, GnuCash allows you to track bank accounts, stocks, income and expenses. As quick and intuitive to use as a checkbook register, it is based on professional accounting principles to ensure balanced books and accurate reports.
Install Gnucash In Debian
If you want to install gnucash in debian use the following command as root
#apt-get install gnucash
This will install all the required packages for gnucash.Now if you want to open this application go to Application –—> Office—>GnuCash Finance Management

Here you can see the GnuCash application is loading

Once it loaded fully you can see the following screen here you can select the create a new set of accounts option click ok and follow the on screen options

Once it opens complete you should see the following screen

GnuCash Version details

Tags: accounting software debian, gnucash debian, gnucash debian etch, gnucash screenshots, install gnucash debianaccounting software debian, gnucash debian, gnucash debian etch, gnucash screenshots, install gnucash debian
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Software
install
Debian
accounting
screenshots
General
GnuCash
Automatix is a graphical interface for automating the installation of the most commonly requested applications in Debian based Linux operating systems.
Install Automatix2 in Ubuntu Feisty Fawn
Open terminal from Applications—>Accessories—>Terminal From terminal do the following enter each line and press enter
echo “deb http://www.getautomatix.com/apt Feisty main”¦sudo tee -a /etc/apt/sources.list
wget http://www.getautomatix.com/apt/key.gpg.asc
gpg --import automatix2.key
gpg --export --armor E23C5FC3 sudo apt-key add -
Now you need to update your source list using the following command
sudo apt-get update
Install Automatix2 Using the following command
sudo apt-get install automatix2
This will complete the installation and now if you want to open the application you need to go to Applications—>System Tools—>Automatix you can see in the following screen

This will prompt for root password and enter your root password and click ok

Multimedia codecs License information just click on yes

Automatix2 is loading

Automatix2 is Updating Source list

Now you should see the following screen this is having different softwares in different categories

“Burning and Ripping” this contains the following applications
Brasero - CD Burning tool for the GNOME Desktop
GnomeBaker - The Best GTK2 CD/DVD Burning Software
Ripper and Tuner - Streamripper and Streamtuner
xDVDshrink - Linux CounterPart of DVDshrink

“Chat Clients” contains the following applications
AMSN 0.97 - MSN Client With Webcam Support
Gaim 2.0 Beta6 and extras - Install Gaim 2.0 Beta6 and extras
Gyachi - Yahoo Messanger With Voice,Webcam and lots of other features
Skype - A free Voice over IP Software
XChat - Install XChat

“Codecs and Plugins” contains the following applications
AUD-DVD Codecs - NON-FREE Audio and DVD codecs
Flash Player - Installs the adobe Flash Player Plugin for firefox
Mplayer and FF Plugin - Mplayer and Firefox 2.0 plugin
Multimedia Codecs - Commonly needed audio and video codecs
SUN Java 1.6 JRE - Sun's Version 1.6 JRE and the firefox plugin
Swiftfox Plugins - Installs commonly used Swiftfox Plugins,MS Fonts

“Commercial Software” contains the following applications
Crossover Office Professional 6.0-1 - Install and Run Windows applications like MS Office and Adobe Photoshop on Ubuntu
Crossover Office Standard 6.0-1 - Install and Run Windows applications like MS Office and Adobe Photoshop on Ubuntu

“Drivers” contains the following applications
Lightscribe for Linux - LaCie LightScribe Labeler for Linux
NDISWrapper - A driver wrapper that allows you to use windows drivers for network cards
Nvidia Driver - Installs nVidia drivers on select nVidia cards

“Email Clients” contains the following applications
Checkgmail - Gmail checker which sits in your system tray
Thunderbird 1.5 - Installs Thunderbird 1.5

“Eyecandy” contains the following applications
Gdesklets - Installs Gdesklets

“File Sharing” contains the following applications
Azures - Installs Azureus bittorrent client
Bittornado - A GTK Bittorent Client for GNOME
DCPP - Linux DC++ client
Frostwire - Install Frostwire P2P client
aMule - Latest version of a P2P file sharing client

“Media Players and Editors” contains the following applications
Audacity - A Versatile audio editor
Avidemux - Video Editing Tool
Beep Media Player - A classic winamp style audio player
DVD Ripper - Installs a GTK based DVD ripper
Easytag - A Versatile mp3 tag editor
Exaile - Amarok like music manager for Gnome
Kino - A Versatile Video editor
Listen Media Manager - Latest Version of a new media manager and player for GNOME
RealPlayer - Installs RealPlayer
Songbird - Music Manager
Totem Xine - A media player
VLC Media Player - Another Versatile media player
iLinux - iLife Alternative and Ipod programs and libraries

“Miscellaneous” contains the following applications
Automatix read/write NTFS and FAT32 Mounter - Automatically mounts all local FAT32 and NTFS Partitions and makes them writable
Ctrl-Alt-Del - This Configures Ctrl-Alt-Del to Open Gnome System Monitor
Debian Menu - Shows all installed applications on your system
Extra Fonts - Additional fonts and msttcorefonts
Nautilus Scripts - Open Nautilus, and any file with gedit with a right click, as root (GNOME ONLY)
Slab - Installs Novell’s “Slab” menu used in SLED 10

“Office” contains the following applications
Acrobat Reader - Adobe Acrobat Reader and plugin for Firefox 2.0
GnuCash - Money management software for GNOME
Google Earth - Satellite Earth imagery application from Google
Google Picasa - Photo editing application from Google
OpenOffice Clipart - clipart in OpenOffice

“Programming Tools” contains the following applications
Anjuta - C/C++ Development enviroment
Bluefish - HTML Editor
Gambas - Gambas is a free development environment based on Basic interpreter like Visual Basic
Monodevelop - C#/Boo/Java/Nemerle/lLasm Development enviroment
Screem - Gnome website development environment
Scribus - Desktop publishing software
Stanis Python Editor - A powerful python IDE

“Utilities” contains the following applications
Archiving Tools - Additional archiving tools (rar, unrar, ace, and 7zip)
Backup and Restore - A graphical backup and restore solution for Ubuntu (GNOME)
Beagle - A Mono-based desktop search program
Boot-up Manager - Easy configuration of startup and shutdown scripts and services
GFTP - FTP client for GNOME with ssh capability
Glipper - Clipboard Manager for Gnome
Gnome Security Suite - ClamAV Antivirus and Firestarter Firewall
GnomePPP - Graphical dialup connection tool
Liferea - A RSS reader for GNOME
Network Manager - A Program and menu applet that allows you to easily change networks

“Virtualization” contains the following applications
VMware Player - Runs virtual operating systems
VirtualBox - Runs virtual operating systems
Wine - Installs wine

“Web Browsers” contains the following applications
Opera Browser - Installs Opera Web Browser
Swiftfox Browser - Installs Swiftfox browser for your specific CPU

Example
Now we will see one example how to install Opera web browser using automatix first you need to check the tick box option available next to opera browser application

Now if you want to start installation you need to click on start button available at the top panel
Opera Web Browser installation in progress

Uninstall applications Using Automatix
If you want to uninstall any application which you installed using automatix you need to click on uninstall tab select the application you want to uninstall and click on start button on top

Automatix2 is having new feature when you can check your automatix activitylog, changelog, Errors and Information and Source list

Sample Activitylog Report

Sample Changelog Report

Automatix2 Version details

Downloader for X is a powerful graphical download manager. It supports both HTTP(S) and FTP protocols and has nice
graphical user interface, though some actions can also be performed using the command line.
Among others, its key features include proxy and SOCKS5 support, recursive downloading, wildcard matching, download
scheduler, multiple download queues and more.
Install d4x in Ubuntu
sudo apt-get install d4x
This will complete the installation.If you want to open the application you need to Applications -> Internet ->Downloader for X

Once it open the application you should see the following screen

d4x version details
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
KDE is a powerful Free Software graphical desktop environment for Linux and Unix workstations. It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.
If you install debian etch by default it will install gnome desktop.If you want to install KDE desktop environment you need to follow the following procedure
Install the KDE login manager and core KDE Components
#apt-get install kdm kde-core
at the time of installation it will promt you for which login manager you want to use as default one kdm or gdm select one of your choice and press enter this will complete the installation.
Now you need to logout from the existing desktop session to login KDE session.
Once you logout you should see similar to the following screen to login here you need to click on session

once it opens the session menu you need to select KDE and click on change session

Now you need to enter username and password to login and click on ok you should see the following screen here you need to select you want make this is your default session or only for this session

Now you should see the following screen to start configuring your KDE desktop first screen you need to select your country and language and click on next

Next one is system behaviour and click on next

Select Eyecandy-o-meter and click on next

Select your KDE desktop theme and click on next

The following screen shows you finish the setup by clicking on finish

KDE 3.5 is loading

Once it loaded fully you should see similar to the following screen as your KDE Desktop
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
bsc (BeeSoft Commander) is a graphical file manager (similar to the midnight commander) that displays two directories
at once for easier copying and moving of files.
#apt-get install bsc
Install bsc in Ubuntu
sudo apt-get install bsc
This will complete the installation if you want to open this application go to Applications—>Accessories—>bsc

Once it opens you should see the following screen

bscommander version details

bsc Screenshots
Now we will see some of the screenshots which is useful for users
Help (F1)

Permissions (F2)

View (F3)

Edit (F4)

Copy (F5)


Rename (F6)

Make Directory (F7)

Delete (F8)

Pack (F9)
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
KDE is a powerful Free Software graphical desktop environment for Linux and Unix workstations. It combines ease of use, contemporary functionality, and outstanding graphical design with the technological superiority of the Unix operating system.
If you install debian etch by default it will install gnome desktop.If you want to install KDE desktop environment you need to follow the following procedure
Install the KDE login manager and core KDE Components
#apt-get install kdm kde-core
at the time of installation it will promt you for which login manager you want to use as default one kdm or gdm select one of your choice and press enter this will complete the installation.
Now you need to logout from the existing desktop session to login KDE session.
Once you logout you should see similar to the following screen to login here you need to click on session

once it opens the session menu you need to select KDE and click on change session

Now you need to enter username and password to login and click on ok you should see the following screen here you need to select you want make this is your default session or only for this session

Now you should see the following screen to start configuring your KDE desktop first screen you need to select your country and language and click on next

Next one is system behaviour and click on next

Select Eyecandy-o-meter and click on next

Select your KDE desktop theme and click on next

The following screen shows you finish the setup by clicking on finish

KDE 3.5 is loading

Once it loaded fully you should see similar to the following screen as your KDE Desktop
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Downloader for X is a powerful graphical download manager. It supports both HTTP(S) and FTP protocols and has nice
graphical user interface, though some actions can also be performed using the command line.
Among others, its key features include proxy and SOCKS5 support, recursive downloading, wildcard matching, download
scheduler, multiple download queues and more.
Install d4x in Ubuntu
sudo apt-get install d4x
This will complete the installation.If you want to open the application you need to Applications -> Internet ->Downloader for X

Once it open the application you should see the following screen

d4x version details
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Debian: Debian Admin Step By Step Tutorials and articles with screenshots