May 2015 - Cloud Network

Networking | Support | Tricks | Troubleshoot | Tips

Buymecoffe

Buy Me A Coffee

Tuesday, May 19, 2015

How to Install Visual studio code in Ubuntu 15.04 - 64Bit

May 19, 2015
How to Install Visual studio code in Ubuntu 15.04 - 64Bit




Hello Everyone,



In this tutorial,



How to Install Visual studio code in Ubuntu 15.04



First Adding PPA

Step1:- sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make



Second Installs Tool

Step2:- sudo apt-get update && sudo apt-get install ubuntu-make



Third Install Visual Studio Code itself

Step2:- umake web visual-studio-code



Website :- https://code.visualstudio.com/





NOTE :- For Any Clarification Please Below



Comment,

Like and

Share  us  and  help us to spread.



####--------------------------------------------------------------------------------------####

Subscribe :-   http://www.youtube.com/user/itcloudnet?sub_confirmation=1

Website    :-   http://www.cloudnetwork.in

Facebook :-   http://facebook.com/itCloudNetwork/

Twitter     :-   http://twitter.com/itcloudnet

Pinterset  :-   http://pinterset.com/itcloudnet

LinkedIn :-   http://in.linkedin.com/pub/itcloudnet

Google+   :-   https://plus.google.com/u/0/107923552480070716949/posts

Skype Id  :-   cloud.network1

E-Mail Id :-   itcloudnet@gmail.com

####----------------------------------------------------------------------------------------####        

               

Thanking You

Hope U Like it........





Comment Policy We’re eager to see your comment. However, Please Keep in mind that all comments are moderated manually by our human reviewers according to our comment policy, and all the links are nofollow. Using Keywords in the name field area is forbidden. Let’s enjoy a personal and evocative conversation.

How to Install WordPress 4.2.2 using (Apache, PhpMyAdmin & MySql) in Linux Mint and Ubuntu 15.04

May 19, 2015
How to Install WordPress 4.2.2 using (Apache, PhpMyAdmin & MySql) in Linux Mint and Ubuntu 15.04




Hello Everyone,



In this Tutorial,



Let us Install WordPress 4.2.2 on Ubuntu 15.04 - 64bit



Server Basic Configurations

Domain name :- localhost  wordpress.lan



Step1 :- sudo nano /etc/hosts

example :- 127.0.0.1     localhost  wordpress.lan



Step2 :- ping wordpress.lan



LAMP  Installation

Step3 :- sudo apt-get install apache2 apache2-utils php5 php5-mysql

              mysql-client mysql-server



Install PhpMyAdmin Web Interface

Step4 :- sudo  apt-get install phpmyadmin

Step5 :- sudo  cp  /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/

Step6 :- sudo  mv  /etc/apache2/conf-available/apache.conf /etc/apache2/conf-available/phpmyadmin.conf

Step7 :- ls  /etc/apache2/conf-available/

Step8 :- sudo  a2enconf  phpmyadmin



Create a Virtual Host on Apache web server

Step9 :- sudo  nano  /etc/apache2/sites-available/wordpress.conf

VirtualHost *:80

        ServerName           wordpress.lan

        ServerAdmin         webmaster@localhost

        DocumentRoot      /var/www/html

        ErrorLog ${APACHE_LOG_DIR}/error.log

        CustomLog ${APACHE_LOG_DIR}/access.log combined

/VirtualHost



Activate the new virtual host

Step10 :- sudo  a2ensite  wordpress.conf

Step11 :- sudo  service   apache2   restart



To avoid that future Apache error concerning Server Name FQDN

Step12 :- Sudo  nano /etc/apache2/apache2.conf

Step13 :- ServerName wordpress.lan

Step14 :- sudo service apache2 restart



 Create WordPress Database

Step15 :- mysql  -u   root   -p

Step16 :- sudo dpkg-reconfigure mysql-server-5.6

Step17 :- sudo mysql_secure_installation



Using PhpMyAdmin

Point your browser to your server IP or virtual domain name and login to PhpMyAdmin using root account



Using Command Line

Step18 :- mysql -u root -p

mysql CREATE DATABASE IF NOT EXISTS wordpress;

mysql CREATE USER cloud@localhost IDENTIFIED BY "your_password_here";

mysql GRANT ALL PRIVILEGES ON wordpress.* TO cloud@localhost;

mysql FLUSH PRIVILEGES;

mysql  quit



Download and Install WordPress

Step19 :- wget http://wordpress.org/latest.tar.gz

Step20 :- sudo tar xvzf latest.tar.gz

Step21 :- sudo cp -r wordpress/*  /var/www/html

Step22 :- sudo service apache2 restart

Step23 :- sudo service mysql restart

Step24 :- sudo chown -R www-data  /var/www/html

Step25 :- sudo chmod -R 755  /var/www/html



http://wordpress.lan/index.php

http://your_server_IP/index.php



Step26 :- sudo chown -R root  /var/www/html



NOTE :- For Any Clarification Please Below



Comment,

Like and

Share  us  and  help us to spread.



####--------------------------------------------------------------------------------------####

Subscribe :-   http://www.youtube.com/user/itcloudnet?sub_confirmation=1

Website    :-   http://www.cloudnetwork.in

Facebook :-   http://facebook.com/itCloudNetwork/

Twitter     :-   http://twitter.com/itcloudnet

Pinterset  :-   http://pinterset.com/itcloudnet

LinkedIn :-   http://in.linkedin.com/pub/itcloudnet

Google+   :-   https://plus.google.com/u/0/107923552480070716949/posts

Skype Id  :-   cloud.network1

E-Mail Id :-   itcloudnet@gmail.com

####----------------------------------------------------------------------------------------####                        



Thanking You



Hope U Like it........



Comment Policy We’re eager to see your comment. However, Please Keep in mind that all comments are moderated manually by our human reviewers according to our comment policy, and all the links are nofollow. Using Keywords in the name field area is forbidden. Let’s enjoy a personal and evocative conversation.

Tuesday, May 12, 2015

How to Install ‘PhpVirtualBox’ to Manage Virtual Machines via Web Browser...

May 12, 2015
How to Install ‘PhpVirtualBox’ to Manage Virtual Machines via Web Browser...


 

 Hello Everyone,

In this tutorial,

How to Install VirtualBox and PhpVirtualBox in Ubuntu 15.04

1. updated system package database and install prerequisites such as Apache, PHP and other needed dependencies.
Step1 :-  sudo apt-get update && apt-get upgrade && apt-get autoremove
Step2 :-  sudo apt-get install apache2
Step3 :-  sudo apt-get install php5 php5-common php-soap php5-gd
Step4 :-  sudo apt-get install build-essential dkms unzip wget
Step5 :-  vi /etc/apt/sources.list
               deb http://download.virtualbox.org/virtualbox/debian raring contrib

2. Download and Add Oracle public key
Step7 :- wget www.virtualbox.org/download/oracle_vbox.asc
Step6 :- apt-key add oracle_vbox.asc

4. restart the Apache service
Step10 :- /etc/init.d/apache2 restart  
Step11 :- systemctl restart apache2.service 

5.  Point your browser to your Private IP Address or your loopback address
Step12 :-
http://ip-address
OR
http://localhost

6. Now it’s time to install VirtualBox.
Step13 :- apt-get install virtualbox-4.3

7. Download and install PhpVirtualBox.
Step14 :- wget http://sourceforge.net/projects/phpvirtualbox/files/phpvirtualbox-4.3-3.zip
Step15 :- unzip phpvirtualbox-4.3-3.zip

8. Next, move the extracted ‘phpvirtualbox-4.3-3‘ folder to the default root folder
Step16 :- mv phpvirtualbox-4.3-3     /var/www/html

9. Rename the directory ‘phpvirtualbox-4.3-3‘ to phpvb or anything
Step17 :- mv /var/www/html/phpvb/config.php-example /var/www/html/phpvb/config.php

9. Create a new user account (or add an existing user) and add it to vboxusers group and change phpvb directory ownership to avi user.
Step18 :- useradd avi
Step19 :- passwd avi
Step20 :- usermod -aG vboxusers avi
Step21 :- chown -R avi:avi /var/www/html/phpvb

10. Now open ‘config.php‘ file and add newly created user and password.
Step22 :- vi / var/www/html/phpvb/config.php

11. Now Download and install virtualbox extension
Step23 :- wget http://download.virtualbox.org/virtualbox/4.3.26/Oracle_VM_VirtualBox_Extension_Pack-4.3.26-98988.vbox-extpack

Step24 :- VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.3.12-93733.vbox-extpack

12. Now start Virtualbox-websrv as the user ‘avi‘ defined in config file.
Step25 :- vboxwebsrv -H 127.0.0.1

Step26 :- /etc/init.d/virtualbox start
# /etc/init.d/vboxdrv  start
# /etc/init.d/vboxweb-service start

Now point your browser to ip_where_phpvirtualbox_is_installed/phpvb or 127.0.0.1/phpvb, if it was installed on the native server.


NOTE :- For Any Clarification Please Below

Comment,
Like and
Share  us  and  help us to spread.

####--------------------------------------------------------------------------------------####
Subscribe :-   http://www.youtube.com/user/itcloudnet?sub_confirmation=1
Website    :-   http://www.cloudnetwork.in
Facebook :-   http://facebook.com/itCloudNetwork/
Twitter     :-   http://twitter.com/itcloudnet
Pinterset  :-   http://pinterset.com/itcloudnet
LinkedIn :-   http://in.linkedin.com/pub/itcloudnet
Google+   :-   https://plus.google.com/u/0/107923552480070716949/posts
Skype Id  :-   cloud.network1
E-Mail Id :-   itcloudnet@gmail.com
####----------------------------------------------------------------------------------------####                       

Thanking You
Hope U Like it........




Comment Policy We’re eager to see your comment. However, Please Keep in mind that all comments are moderated manually by our human reviewers according to our comment policy, and all the links are nofollow. Using Keywords in the name field area is forbidden. Let’s enjoy a personal and evocative conversation.

Saturday, May 2, 2015

How to Upgrade Ubuntu Desktop 14.04/14.10 to Ubuntu 15.04 (Vivid Vervet)...

May 02, 2015
How to Upgrade Ubuntu Desktop 14.04/14.10 to Ubuntu 15.04 (Vivid Vervet)...
 

Hello Everyone,

In this tutorial,

Let Us Install          in                 - 64Bit

You Can also Install in CentOS 7, Oracle Linux, Cloud Linux, Redhat Linux 6,7.




NOTE :- For Any Clarification Please Below

Comment,
Like and
Share  us  and  help us to spread.

####--------------------------------------------------------------------------------------####
Subscribe :-   http://www.youtube.com/user/itcloudnet?sub_confirmation=1
Website    :-   http://www.cloudnetwork.in
Facebook :-   http://facebook.com/itCloudNetwork/
Twitter     :-   http://twitter.com/itcloudnet
Pinterset  :-   http://pinterset.com/itcloudnet
LinkedIn :-   http://in.linkedin.com/pub/itcloudnet
Google+   :-   https://plus.google.com/u/0/107923552480070716949/posts
Skype Id  :-   cloud.network1
E-Mail Id :-   itcloudnet@gmail.com
####----------------------------------------------------------------------------------------####


                       
Thanking You
Hope U Like it........