Ubuntu Software Help | openGLUG

Pages

Showing posts with label Ubuntu Software Help. Show all posts
Showing posts with label Ubuntu Software Help. Show all posts

Wednesday, 3 April 2013

Synaptic Package Manager

What is Synaptic Package Manager?

Synaptic Package Manager is a graphical front-end for the Ubuntu package management system 'apt'. Synaptic brings a very user friendly software management environment combining the power of 'apt' and the simplicity in usage of graphical user interface. Using Synaptic user can install, remove, configure, or upgrade software packages, browse, sort and search the list of available software packages, manage repositories, or upgrade the whole system. And also can queue up a number of actions before executing them. Synaptic will inform the user about dependencies (additional packages required by the software package you have chosen) as well as conflicts with other packages that are already installed on the system. 



How to get Synaptic Package Manager?

Synaptic Package Manager can be installed from both terminal and from Ubuntu Software Center very easily.
1. To Install it from Terminal:
      Open Terminal and type "sudo apt-get install synaptic"
2. To install it from Software Center:
      i. Search for Synaptic or Synaptic Package Manager
      ii. And install the Synaptic Package Manager


For more information on how to use Synaptic Package Manager, you can refer to the Ubuntu Official Documentation.

Saturday, 30 March 2013

Bless Hex Editor


Hex Editor:

A hex editor or binary file editor or byte editor is a program which allows the users to manipulate binary data which as a whole constitutes to a computer file. The name 'hex' comes from the 'hexadecimal'( A numerical system consisting of 16 fundamental digits).

Bless Hex Editor:

Bless Hex Editor is one such hex editor for ubuntu. It is written in mono/Gtk# and its primary platform is GNU/Linux. However it should be able to run without problems on every platform that mono and Gtk# run. Bless Hex Editor, in addition to all features that a hex editor must have like editing files as a sequence of bytes, allowing read/write, also offers many other features such as search, pattern finding, efficient query-replace, multi-tabbing, customized data-views, plugins etc.


Bless currently provides the following features:
  • Efficient editing of large data files and block devices.
  • Multilevel undo - redo operations.
  • Customizable data views.
  • Fast data rendering on screen.
  • Multiple tabs.
  • Fast find and replace operations.
  • A data conversion table.
  • Advanced copy/paste capabilities.
  • Highlighting of selection pattern matches in the file.
  • Plugin based architecture.
  • Export of data to text and html (others with plugins).
  • Bitwise operations on data.
  • A comprehensive user manual.
System Requirements for Bless Hex Editor:
  • Mono runtime (version 1.1.14 or higher)
  • Gtk#2 (version 2.8 or higher)
Both mono runtime, and Gtk# can be downloaded from Mono-Project site or from Ubuntu Software Center or also from terminal by running command, "sudo apt-get install mono-runtime"

Thursday, 28 March 2013

Installing LAMP on Ubuntu




 LAMP Stands for Linux Apache MySQL and PHP ( Sometimes Perl or Python also)
 LAMP is a package consisting of a elemental components of a general purpose web server.

Installation of LAMP is splitted up into four steps.

Step 1. Installation of Apache HTTP Server 2:
  To install Apache 2 on your system, Open terminal. Then enter the following command.                 
                                                
                                                  'sudo apt-get install apache2'   
                                       
 You have to enter the admin password to install any softwares. So enter your admin password and complete the installation.
To test your apache installation, open any browser of your choice and navigate to 'http://localhost/' or '127.0.0.1' 

Step 2. Installation of PHP 5:
  To install PHP5 on your Ubuntu system, open terminal and enter the following command.

                                    'sudo apt-get install php5 libapache2-mod-php5'
This command will install PHP5 in your system along with the required libraries to work with Apache2.
To activate PHP5 you have to restart the Apache server. To do so, execute the following terminal command.
                   
                   'sudo /etc/init.d/apache2 restart'

Step 3. Installation of MySQL:

 Again, to install MySQL open terminal and run the command given 

                  'sudo apt-get install mysql-server' 

 After finishing all the 3 steps explained above, you have LAMP system on your computer.

MySQL we installed is a console based DataBase Management System which is little difficult to handle. So we need a light weight, easy-to-use utility to do all our DBM(Database Management) jobs. Most commonly used and the recommended one is the phpMyAdmin.

Installation of phpMyAdmin is very easy. All that you need to do is, just execute the command given below via terminal.

          'sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin'