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

Friday, 6 November 2015

Find to Install and Configure Apache, PHP, MySQL and phpMyAdmin on Ubunt 12.04


LAMP is brief for UNIX system, Apache, MySQL, PHP. This tutorial shows however you'll be able to install associate Apache2 webserver on associate Ubuntu eleven.04 server with PHP5 support (mod_php) and MySQL support.
I don't issue any guarantee that this can work for you!

1 Preliminary Note
In this tutorial i exploit the hostname server1.example.com with the informatics address 10.10.10.10. These settings may disagree for you, therefore you have got to switch them wherever acceptable.

I'm running all the steps during this tutorial with root privileges, therefore check that you are logged in as root:
sudo su

2 putting in MySQL five
First we tend to install MySQL five like this:

sudo apt-get install mysql-server mysql-client

You will be asked to produce a word for the MySQL root user - this word is valid for the user root@localhost likewise as root@server1.example.com, therefore we do not ought to specify a MySQL root word manually later on:

New word for the MySQL "root" user: <-- yourrootsqlpassword
Repeat word for the MySQL "root" user: <-- yourrootsqlpassword

3 putting in Apache2
Apache2 is on the market as associate Ubuntu package, thus we will install it like this:
sudo apt-get install apache2

Now direct your browser to http://10.10.10.10, and you ought to see the Apache2 placeholder page (It works!):


Apache's default document root is /var/www on Ubuntu, and therefore the configuration file is /etc/apache2/apache2.conf. extra configurations ar keep in subdirectories of the /etc/apache2 directory like /etc/apache2/mods-enabled (for Apache modules), /etc/apache2/sites-enabled (for virtual hosts), and /etc/apache2/conf.d.

4 putting in PHP5
We can install PHP5 and therefore the Apache PHP5 module as follows:
sudo apt-get install php5 libapache2-mod-php5

We should restart Apache afterwards:
sudo /etc/init.d/apache2 restart

5 Testing PHP5 / obtaining Details regarding Your PHP5 Installation
The document root of the default information processing system is /var/www. we'll currently produce atiny low PHP file (info.php) therein directory and decision it during a browser. The file can show countless helpful details regarding our PHP installation, like the put in PHP version.

sudo vi /var/www/info.php

<?php
phpinfo();
?>
Now we tend to decision that go in a browser (e.g. http://10.10.10.10/info.php):




As you see, PHP5 is functioning, and it's operating through the Apache a pair of.0 Handler, as shown within the Server API line. If you scroll additional down, you'll see all modules that ar already enabled in PHP5. MySQL isn't listed there which implies we do not have MySQL support in PHP5 nevertheless.


6 obtaining MySQL Support In PHP5
To get MySQL support in PHP, we will install the php5-mysql package. it is a sensible plan to put in another PHP5 modules likewise as you would possibly would like them for your applications. you'll be able to explore for on the market PHP5 modules like this:
sudo apt-cache search php5

Pick those you wish and install them like this:
sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl

Now restart Apache2:
sudo /etc/init.d/apache2 restart

Now reload http://10.10.10.10/info.php in your browser and scroll right down to the modules section once more. you ought to currently realize countless new modules there, together with the MySQL module:



7 phpMyAdmin
phpMyAdmin may be a net interface through that you'll be able to manage your MySQL databases. it is a sensible plan to put in it:
sudo apt-get install phpmyadmin

You will see the subsequent questions:

Web server to reconfigure automatically: &lt;-- apache2
Configure info for phpmyadmin with dbconfig-common? &lt;-- No

Afterwards, you'll be able to access phpMyAdmin underneath http://10.10.10.10/phpmyadmin/:


Apache, PHP, MySQL and phpMyAdmin on Ubunt 12.04


LAMP is brief for UNIX system, Apache, MySQL, PHP. This tutorial shows however you'll be able to install associate Apache2 webserver on associate Ubuntu eleven.04 server with PHP5 support (mod_php) and MySQL support.
I don't issue any guarantee that this can work for you!

1 Preliminary Note
In this tutorial i exploit the hostname server1.example.com with the informatics address 10.10.10.10. These settings may disagree for you, therefore you have got to switch them wherever acceptable.

I'm running all the steps during this tutorial with root privileges, therefore check that you are logged in as root:
sudo su

2 putting in MySQL five
First we tend to install MySQL five like this:

sudo apt-get install mysql-server mysql-client

You will be asked to produce a word for the MySQL root user - this word is valid for the user root@localhost likewise as root@server1.example.com, therefore we do not ought to specify a MySQL root word manually later on:

New word for the MySQL "root" user: &lt;-- yourrootsqlpassword
Repeat word for the MySQL "root" user: &lt;-- yourrootsqlpassword

3 putting in Apache2
Apache2 is on the market as associate Ubuntu package, thus we will install it like this:
sudo apt-get install apache2

Now direct your browser to http://10.10.10.10, and you ought to see the Apache2 placeholder page (It works!):


Apache's default document root is /var/www on Ubuntu, and therefore the configuration file is /etc/apache2/apache2.conf. extra configurations ar keep in subdirectories of the /etc/apache2 directory like /etc/apache2/mods-enabled (for Apache modules), /etc/apache2/sites-enabled (for virtual hosts), and /etc/apache2/conf.d.

4 putting in PHP5
We can install PHP5 and therefore the Apache PHP5 module as follows:
sudo apt-get install php5 libapache2-mod-php5

We should restart Apache afterwards:
sudo /etc/init.d/apache2 restart

5 Testing PHP5 / obtaining Details regarding Your PHP5 Installation
The document root of the default information processing system is /var/www. we'll currently produce atiny low PHP file (info.php) therein directory and decision it during a browser. The file can show countless helpful details regarding our PHP installation, like the put in PHP version.

sudo vi /var/www/info.php

<?php
phpinfo();
?>
Now we tend to decision that go in a browser (e.g. http://10.10.10.10/info.php):




As you see, PHP5 is functioning, and it's operating through the Apache a pair of.0 Handler, as shown within the Server API line. If you scroll additional down, you'll see all modules that ar already enabled in PHP5. MySQL isn't listed there which implies we do not have MySQL support in PHP5 nevertheless.


6 obtaining MySQL Support In PHP5
To get MySQL support in PHP, we will install the php5-mysql package. it is a sensible plan to put in another PHP5 modules likewise as you would possibly would like them for your applications. you'll be able to explore for on the market PHP5 modules like this:
sudo apt-cache search php5

Pick those you wish and install them like this:
sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl

Now restart Apache2:
sudo /etc/init.d/apache2 restart

Now reload http://10.10.10.10/info.php in your browser and scroll right down to the modules section once more. you ought to currently realize countless new modules there, together with the MySQL module:



7 phpMyAdmin
phpMyAdmin may be a net interface through that you'll be able to manage your MySQL databases. it is a sensible plan to put in it:
sudo apt-get install phpmyadmin

You will see the subsequent questions:

Web server to reconfigure automatically: &lt;-- apache2
Configure info for phpmyadmin with dbconfig-common? &lt;-- No

Afterwards, you'll be able to access phpMyAdmin underneath http://10.10.10.10/phpmyadmin/:


Find to Install and Configure Apache, PHP, MySQL and phpMyAdmin on Ubunt 12.10


LAMP is brief for UNIX system, Apache, MySQL, PHP. This tutorial shows however you'll be able to install associate Apache2 webserver on associate Ubuntu eleven.04 server with PHP5 support (mod_php) and MySQL support.
I don't issue any guarantee that this can work for you!

1 Preliminary Note
In this tutorial i exploit the hostname server1.example.com with the informatics address 10.10.10.10. These settings may disagree for you, therefore you have got to switch them wherever acceptable.

I'm running all the steps during this tutorial with root privileges, therefore check that you are logged in as root:
sudo su

2 putting in MySQL five
First we tend to install MySQL five like this:

sudo apt-get install mysql-server mysql-client

You will be asked to produce a word for the MySQL root user - this word is valid for the user root@localhost likewise as root@server1.example.com, therefore we do not ought to specify a MySQL root word manually later on:

New word for the MySQL "root" user: &lt;-- yourrootsqlpassword
Repeat word for the MySQL "root" user: &lt;-- yourrootsqlpassword

3 putting in Apache2
Apache2 is on the market as associate Ubuntu package, thus we will install it like this:
sudo apt-get install apache2

Now direct your browser to http://10.10.10.10, and you ought to see the Apache2 placeholder page (It works!):


Apache's default document root is /var/www on Ubuntu, and therefore the configuration file is /etc/apache2/apache2.conf. extra configurations ar keep in subdirectories of the /etc/apache2 directory like /etc/apache2/mods-enabled (for Apache modules), /etc/apache2/sites-enabled (for virtual hosts), and /etc/apache2/conf.d.

4 putting in PHP5
We can install PHP5 and therefore the Apache PHP5 module as follows:
sudo apt-get install php5 libapache2-mod-php5

We should restart Apache afterwards:
sudo /etc/init.d/apache2 restart

5 Testing PHP5 / obtaining Details regarding Your PHP5 Installation
The document root of the default information processing system is /var/www. we'll currently produce atiny low PHP file (info.php) therein directory and decision it during a browser. The file can show countless helpful details regarding our PHP installation, like the put in PHP version.

sudo vi /var/www/info.php

<?php
phpinfo();
?>
Now we tend to decision that go in a browser (e.g. http://10.10.10.10/info.php):




As you see, PHP5 is functioning, and it's operating through the Apache a pair of.0 Handler, as shown within the Server API line. If you scroll additional down, you'll see all modules that ar already enabled in PHP5. MySQL isn't listed there which implies we do not have MySQL support in PHP5 nevertheless.


6 obtaining MySQL Support In PHP5
To get MySQL support in PHP, we will install the php5-mysql package. it is a sensible plan to put in another PHP5 modules likewise as you would possibly would like them for your applications. you'll be able to explore for on the market PHP5 modules like this:
sudo apt-cache search php5

Pick those you wish and install them like this:
sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl

Now restart Apache2:
sudo /etc/init.d/apache2 restart

Now reload http://10.10.10.10/info.php in your browser and scroll right down to the modules section once more. you ought to currently realize countless new modules there, together with the MySQL module:



7 phpMyAdmin
phpMyAdmin may be a net interface through that you'll be able to manage your MySQL databases. it is a sensible plan to put in it:
sudo apt-get install phpmyadmin

You will see the subsequent questions:

Web server to reconfigure automatically: &lt;-- apache2
Configure info for phpmyadmin with dbconfig-common? &lt;-- No

Afterwards, you'll be able to access phpMyAdmin underneath http://10.10.10.10/phpmyadmin/:


Apache, PHP, MySQL and phpMyAdmin on Ubunt 12.10


LAMP is brief for UNIX system, Apache, MySQL, PHP. This tutorial shows however you'll be able to install associate Apache2 webserver on associate Ubuntu eleven.04 server with PHP5 support (mod_php) and MySQL support.
I don't issue any guarantee that this can work for you!

1 Preliminary Note
In this tutorial i exploit the hostname server1.example.com with the informatics address 10.10.10.10. These settings may disagree for you, therefore you have got to switch them wherever acceptable.

I'm running all the steps during this tutorial with root privileges, therefore check that you are logged in as root:
sudo su

2 putting in MySQL five
First we tend to install MySQL five like this:

sudo apt-get install mysql-server mysql-client

You will be asked to produce a word for the MySQL root user - this word is valid for the user root@localhost likewise as root@server1.example.com, therefore we do not ought to specify a MySQL root word manually later on:

New word for the MySQL "root" user: &lt;-- yourrootsqlpassword
Repeat word for the MySQL "root" user: &lt;-- yourrootsqlpassword

3 putting in Apache2
Apache2 is on the market as associate Ubuntu package, thus we will install it like this:
sudo apt-get install apache2

Now direct your browser to http://10.10.10.10, and you ought to see the Apache2 placeholder page (It works!):


Apache's default document root is /var/www on Ubuntu, and therefore the configuration file is /etc/apache2/apache2.conf. extra configurations ar keep in subdirectories of the /etc/apache2 directory like /etc/apache2/mods-enabled (for Apache modules), /etc/apache2/sites-enabled (for virtual hosts), and /etc/apache2/conf.d.

4 putting in PHP5
We can install PHP5 and therefore the Apache PHP5 module as follows:
sudo apt-get install php5 libapache2-mod-php5

We should restart Apache afterwards:
sudo /etc/init.d/apache2 restart

5 Testing PHP5 / obtaining Details regarding Your PHP5 Installation
The document root of the default information processing system is /var/www. we'll currently produce atiny low PHP file (info.php) therein directory and decision it during a browser. The file can show countless helpful details regarding our PHP installation, like the put in PHP version.

sudo vi /var/www/info.php

<?php
phpinfo();
?>
Now we tend to decision that go in a browser (e.g. http://10.10.10.10/info.php):




As you see, PHP5 is functioning, and it's operating through the Apache a pair of.0 Handler, as shown within the Server API line. If you scroll additional down, you'll see all modules that ar already enabled in PHP5. MySQL isn't listed there which implies we do not have MySQL support in PHP5 nevertheless.


6 obtaining MySQL Support In PHP5
To get MySQL support in PHP, we will install the php5-mysql package. it is a sensible plan to put in another PHP5 modules likewise as you would possibly would like them for your applications. you'll be able to explore for on the market PHP5 modules like this:
sudo apt-cache search php5

Pick those you wish and install them like this:
sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl

Now restart Apache2:
sudo /etc/init.d/apache2 restart

Now reload http://10.10.10.10/info.php in your browser and scroll right down to the modules section once more. you ought to currently realize countless new modules there, together with the MySQL module:



7 phpMyAdmin
phpMyAdmin may be a net interface through that you'll be able to manage your MySQL databases. it is a sensible plan to put in it:
sudo apt-get install phpmyadmin

You will see the subsequent questions:

Web server to reconfigure automatically: &lt;-- apache2
Configure info for phpmyadmin with dbconfig-common? &lt;-- No

Afterwards, you'll be able to access phpMyAdmin underneath http://10.10.10.10/phpmyadmin/:


Thursday, 5 November 2015

NetBeans IDE 7.2 on Ubuntu 12.04



install Netbeans IDE 7 .sh file in Ubuntu


NOTE: JDK vi or on top of (JDK 7) is needed for putting in and running the Java SE, Java applied science and every one NetBeans Bundles.
instal JDK
1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal

2.Type the below code in terminal and hit enter.

sudo add-apt-repository ppa:ferramroberto/java

Type your ubuntu word if required and press enter.

3.Then press enter to continue or ctrl-c to cancel adding the ppa.
4.Type below command and hit enter

sudo apt-get update

5.Then sort below command and press enter

sudo apt-get install sun-java6-jdk sun-java6-plugin

6.Type y and hit enter to verify the installation.

7.Select

OK

and press Yes enter

8.To accecpt the DLJ licence choose affirmative and press enter
9.After the palmy installation,to check the put in version sort

java -version

install JDK7
1.Go to Oracle JDK7 transfer page. And transfer the most recent Linux jdk in .tar.gz format.
Here its (32 bit) jdk-7u4-linux-i586.tar.gz.
Link:http://www.oracle.com/technetwork/java/javase/downloads/index.html

2.Copy your JDK .tar.gz file to your Desktop.

3.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal.

4.Type the below code in terminal and hit enter to extract in Home folder.

tar -xvf ~/Desktop/jdk-7u4-linux-i586.tar.gz

5.Next sort below command in terminal to make a brand new folder.

sudo mkdir -p /usr/lib/jvm/jdk1.7.0

Type your ubuntu word if required and press enter.

6.Now sort below command to maneuver files.

sudo mv jdk1.7.0_04/* /usr/lib/jvm/jdk1.7.0/

Note:change this (jdk1.7.0_04) per your jdk version.
Example: for JDK seven update five use jdk1.7.0_05

7.Type below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.7.0/bin/java" 1

8.Then sort below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.7.0/bin/javac" 1

9.Then sort below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/jdk1.7.0/bin/javaws" 1

10.After the palmy installation,to check the put in version sort

java -version

install Netbeans IDE on ubuntu 

1.Go to Netbeans transfer page  and transfer the netbeans Linux (x86/x64)  .sh installer file (like netbeans-7.1.2-ml-linux.sh).
Link:http://netbeans.org/downloads/index.html

2.Copy your Netbeans installer file to your Desktop.

3.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal.

4.Type the below code in terminal and hit enter.

cd Desktop


5.Then sort below code in terminal and hit enter

sudo chmod +x netbeans-*

Type your ubuntu word if required and press enter.

6.Then sort below code and press enter

sudo ./netbeans-*

7.And then install Netbeans from user interface installer window.


After the palmy installation,click the Dash home from unity launcher.And type netbeans within the search field.And click Netbeans IDE to open.

Find to install latest NetBeans IDE 7.2 on Ubuntu 12.04



install Netbeans IDE 7 .sh file in Ubuntu


NOTE: JDK vi or on top of (JDK 7) is needed for putting in and running the Java SE, Java applied science and every one NetBeans Bundles.
instal JDK
1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal

2.Type the below code in terminal and hit enter.

sudo add-apt-repository ppa:ferramroberto/java

Type your ubuntu word if required and press enter.

3.Then press enter to continue or ctrl-c to cancel adding the ppa.
4.Type below command and hit enter

sudo apt-get update

5.Then sort below command and press enter

sudo apt-get install sun-java6-jdk sun-java6-plugin

6.Type y and hit enter to verify the installation.

7.Select

OK

and press Yes enter

8.To accecpt the DLJ licence choose affirmative and press enter
9.After the palmy installation,to check the put in version sort

java -version

install JDK7
1.Go to Oracle JDK7 transfer page. And transfer the most recent Linux jdk in .tar.gz format.
Here its (32 bit) jdk-7u4-linux-i586.tar.gz.
Link:http://www.oracle.com/technetwork/java/javase/downloads/index.html

2.Copy your JDK .tar.gz file to your Desktop.

3.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal.

4.Type the below code in terminal and hit enter to extract in Home folder.

tar -xvf ~/Desktop/jdk-7u4-linux-i586.tar.gz

5.Next sort below command in terminal to make a brand new folder.

sudo mkdir -p /usr/lib/jvm/jdk1.7.0

Type your ubuntu word if required and press enter.

6.Now sort below command to maneuver files.

sudo mv jdk1.7.0_04/* /usr/lib/jvm/jdk1.7.0/

Note:change this (jdk1.7.0_04) per your jdk version.
Example: for JDK seven update five use jdk1.7.0_05

7.Type below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.7.0/bin/java" 1

8.Then sort below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.7.0/bin/javac" 1

9.Then sort below command in terminal and hit enter.

sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/jdk1.7.0/bin/javaws" 1

10.After the palmy installation,to check the put in version sort

java -version

install Netbeans IDE on ubuntu 

1.Go to Netbeans transfer page  and transfer the netbeans Linux (x86/x64)  .sh installer file (like netbeans-7.1.2-ml-linux.sh).
Link:http://netbeans.org/downloads/index.html

2.Copy your Netbeans installer file to your Desktop.

3.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field.And click Terminal.

4.Type the below code in terminal and hit enter.

cd Desktop


5.Then sort below code in terminal and hit enter

sudo chmod +x netbeans-*

Type your ubuntu word if required and press enter.

6.Then sort below code and press enter

sudo ./netbeans-*

7.And then install Netbeans from user interface installer window.


After the palmy installation,click the Dash home from unity launcher.And type netbeans within the search field.And click Netbeans IDE to open.

Install BitDefender Antivirus Scanner for Unices on ubuntu 14.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.7-1.linux-.i586.deb.run” file(for thirty two bit) on your desktop and BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run” file(for sixty four bit) on your desktop
         
3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-i586.deb.run
             Or
sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

BitDefender Antivirus Scanner for Unices on ubuntu 14.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.7-1.linux-.i586.deb.run” file(for thirty two bit) on your desktop and BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run” file(for sixty four bit) on your desktop
         
3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-i586.deb.run
             Or
sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Find to install BitDefender Antivirus Scanner for Unices on ubuntu 14.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.7-1.linux-.i586.deb.run” file(for thirty two bit) on your desktop and BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run” file(for sixty four bit) on your desktop
         
3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-i586.deb.run
             Or
sudo sh BitDefender-Antivirus-Scanner-7.7-1.linux-amd64-86.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Find to install BitDefender Antivirus Scanner for Unices on ubuntu 12.04


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Install BitDefender Antivirus Scanner for Unices on ubuntu 12.04


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Find to install BitDefender Antivirus Scanner for Unices on ubuntu 12.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

BitDefender Antivirus Scanner for Unices on ubuntu 12.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Install BitDefender Antivirus Scanner for Unices on ubuntu 12.10


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

BitDefender Antivirus Scanner for Unices on ubuntu 12.04


To install BitDefender Antivirus Scanner for Unices on ubuntu 

1.Go to BitDefender Antivirus Scanner for Unices license key request page to request a license key and transfer link.
Link:http://www.bitdefender.com/site/Products/ScannerLicense/

2.Once you received the e-mail from BitDefender,click the transfer link and transfer the “BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run” file(for thirty two bit) on your desktop.

3.Oper the terminal and sort

cd ~/Desktop

and hit enter.

4.Type

sudo sh BitDefender-Antivirus-Scanner-7.6-4.linux-gcc4x.i586.deb.run

and hit enter.And type ubuntu secret.

5.press enter key untill it show the 100 percent.

6.Then kind settle for and press enter.

7.Type y and press enter once it raise to put in BitDefender Antivirux Scanner graphical user interface package.

8.After the prosperous installation exit from terminal.

9.Open BitDefender Antivirus Scanner for Unices.To open BitDefender Antivirus Scanner for Unices, click Applications icon from unity launcher. and sort BitDefender within the search applications field.And click BitDefender Antivirus Scanner to open BitDefender Antivirus Scanner.

10. shut tip of the day and click on set new key  button and enter your key and click on set.


11 Update and scan your system.

Install Nanoshot screenshot tool on Ubuntu 12.10

To install Nanoshot on Ubuntu 12.10

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field. and click on Terminal.

2.Type the below code in terminal and hit enter.
sudo add-apt-repository ppa:nanoshot/ppa

3.Then press enter to continue or ctrl-c to cancel adding the ppa.

4.Type below command and hit enter
sudo apt-get update

5.Then kind below command and press enter
sudo apt-get install nanoshot

Nanoshot screenshot tool on Ubuntu 12.04

To install Nanoshot on Ubuntu 12.04

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field. and click on Terminal.

2.Type the below code in terminal and hit enter.
sudo add-apt-repository ppa:nanoshot/ppa

3.Then press enter to continue or ctrl-c to cancel adding the ppa.

4.Type below command and hit enter
sudo apt-get update

5.Then kind below command and press enter
sudo apt-get install nanoshot

Nanoshot screenshot tool on Ubuntu 12.10

To install Nanoshot on Ubuntu 12.10

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field. and click on Terminal.

2.Type the below code in terminal and hit enter.
sudo add-apt-repository ppa:nanoshot/ppa

3.Then press enter to continue or ctrl-c to cancel adding the ppa.

4.Type below command and hit enter
sudo apt-get update

5.Then kind below command and press enter
sudo apt-get install nanoshot

Find to install Nanoshot screenshot tool on Ubuntu 12.10

To install Nanoshot on Ubuntu 12.10

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field. and click on Terminal.

2.Type the below code in terminal and hit enter.
sudo add-apt-repository ppa:nanoshot/ppa

3.Then press enter to continue or ctrl-c to cancel adding the ppa.

4.Type below command and hit enter
sudo apt-get update

5.Then kind below command and press enter
sudo apt-get install nanoshot

Install Nanoshot screenshot tool on Ubuntu 12.04

To install Nanoshot on Ubuntu 12.04

1.Open Terminal.To open terminal click the Dash home from unity launcher.And type terminal within the search field. and click on Terminal.

2.Type the below code in terminal and hit enter.
sudo add-apt-repository ppa:nanoshot/ppa

3.Then press enter to continue or ctrl-c to cancel adding the ppa.

4.Type below command and hit enter
sudo apt-get update

5.Then kind below command and press enter
sudo apt-get install nanoshot