Thursday, November 1, 2012

Adding USB support to VirtualBox


Virtualbox is a great software for virtualization, a feature supported is the ability to recognize a USB device on the host computer for later use in the guest OS. It's just that by default VirtualBox on Linux does not directly install this feature. Granted you will not have problems with the USB when using VirtualBox version of Windows. But in Linux, you must install the extension pack in accordance with the version of VirtualBox you use.
I am using Ubuntu 10.04 Lucid, and in this way it should apply universally to all supported versions of Linux VirtualBox. I use VirtualBox version is version 4.0 CloseSource that are downloaded directly from here. This method does not know if it will work for virtualbox-ose version (Open Source Edition) - to my knowledge, there is no version of the Open Source support for USB.

1. Download the appropriate version of the first extension pack virtualbox. You can see it here.

2. Make sure you are in a group username vboxusers, the easiest way is to open a terminal and type:
 

    useradd -G vboxusers username_you

3. Install the extension pack, how to open the VirtualBox Manager, click the File menu - Preferences, go to the Extension tab, and enter the extension pack file that you have downloaded.

4. IMPORTANT! Add your username to the group vboxusers: (use terminal only)

    sudo adduser username_anda vboxusers

5. restart the computer

6. Open VirtualBox manager, right-click the virtual OS that you want to change, click Settings

7. Make sure the USB device is connected to the host, and add a USB device to a virtual OS.

8. When you run a virtual OS, the USB device will be instantly recognizable. Prepare the USB device driver for the guest OS if necessary.




Thursday, June 28, 2012

mario teguh quotes

We judge ourselves of what we think we can do, while others judge us by what we've done. Therefore if you think you can, do it immediately
Instead of slow growth that should you fear. However, you should be more scared to not grow at all. Then cultivate yourself with it at any speed.
If you're right, not too bold, and if you're scared, do not be too scared. Because balance is a determinant of the precision of the attitude of your success journey
Our job is not to succeed. Our job is to try, because in trying to discover and learn why we are building a chance to succeed
You just close to them that you like. And often you do not avoid people who you dislike, but from him that you will recognize a new perspective
People who stop learning will be the owner of the past. People are still learning, will be the future owner
Leave pleasure that hinder the achievement of excellence in the life of desire. And be careful, because some of the fun is way excited to failure
Do not resist change just because you're afraid of losing that has been owned, since doing so you are degrading the value that you can achieve through the change
You will not be a new personal work, if you insist to keep your old ways. You will be called new, but only if you are new ways
The accuracy of the attitude is the foundation of all accuracy. No barrier of success if your attitude right, and no one can help if you have the wrong attitude
Elderly people who are opportunity-oriented young people who never age, but youth-oriented security, has been since a young age
Only people who can dare to be afraid, because courage is doing something that is feared. Then, when felt afraid, you will have the chance to be brave
The greatest power that is able to beat stress is the ability to choose the right mind. You will be more peaceful if you can think of is the way out the problem.
Never tear down a fence without knowing why it was founded. Never ignore the guidance of the good without knowing evil that then you can
Someone who declined to renew the ways it works that no longer produce, act like people who continue to squeeze the straw to get the coconut milk
If you have not menemkan jobs that match your talents, whatever bakatilah your current job. You will appear as bright as a talented
We have more respect for the courage of the poor than the rich who are cowards. Because it actually has clear differences in the quality of the future that would like to achieve
If we only do we already know, when we will get new knowledge? We do not yet know is the door to knowledge
Do not just avoid the impossible. By trying something that is not possible, you will be able to achieve the best of what you might accomplish.
One of the harshest pengkerdilan in life is to let the brilliant minds become a slave to a lazy body, which put the breaks before fatigue.
If you are looking for money, you will be forced to seek the best service.
But if you put a good service, then you are going to look for money
Time, change everything, except us. We may ripen with time, but not necessarily membijak. We who had to change ourselves
All the time is right time to do something good. Do not be a parent who is doing something that should be done when young.
There is no price on time, but time is precious. Pick the time does not make us rich, but to use it well is the source of all wealth

Sunday, March 18, 2012

LEARNING BLOG

LEARNING BLOG

Install Mysql, Apache2, PhpMyAdmin on Ubuntu 10.10

Install  Mysql, Apache2, PhpMyAdmin on Ubuntu 10.10
LAMP
LAMP is an acronym for L inux, Apache, MySQL, PHP. In this post I try to describe how you can install Apache2 webserver on Ubuntu 10.10 server with PHP5 (mod_php) and MySQL support.

1 Getting Started

In the description here I demonstrated using the host server named server1.example.com with IP address 192.168.1.3 These settings may vary with the condition of your server, so you must adjust the IP host and in accordance with the state of your computer.

Open Terminal and run with root privileges / user logged in as root.

sudo su

Please enter your password

2 Installing MySQL 5

First we install MySQL 5 like this:

#apt-get  install mysql-server mysql-client

You will be asked to provide a password for the MySQL root user - this password is valid for the user root @ localhost and root@server1.example.com, so we do not need to specify a MySQL root password manually later on:

The new password for user "root" MySQL: <- yourrootsqlpassword
Repeat password for user "root" MySQL: <- yourrootsqlpassword
 
 
 3 Installing Apache2

Apache2 is available as an Ubuntu package, therefore we can install it like this:

#apt-get install apache2

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

 Standard Apache document root is / var / www on Ubuntu, and the configuration file is / etc/apache2/apache2.conf. Additional configuration is stored in a subdirectory of the / etc/apache2 as / etc/apache2/mods-enabled (for Apache module), / etc/apache2/sites-enabled (for virtual host), and / etc/apache2/conf d .
4 Installing PHP5

We can install PHP5 and Apache PHP5 module as follows:

#apt-get install php5 libapache2-mod-php5

restart Apache

/ etc/init.d/apache2 restart

5 Testing PHP5 / Getting Details About Your Installation PHP5

The document root of the default web site is / var / www. We will now create a small PHP file (info.php) in that directory and call it in the browser. The file will display lots of useful details about our PHP installation, such as PHP versions installed.

  / var / www / info.php

then
sudo gedit / var / www / testing.php

Type the following line:
<? php infophp ()>?

  Now we try to call the file in the browser (eg http://192.168.1.3/info.php):

As you see, PHP5 works, and it is working through Apache 2.0 Handler, as shown in the Server API line. If you scroll down, you will see all modules which are activated in PHP5. MySQL is not listed there which means we do not have MySQL support in PHP5 yet.

6 Getting MySQL Support In PHP5

To get MySQL support in PHP, we can install php5-mysql package. This is a good idea to install some other PHP5 modules as well as you might need for your application. You can search for available PHP5 modules like this:

apt-get search php5

Choose what you need and install it like this:

apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imap php5-Imagick php5-mcrypt php5-memcache php5-mhash php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xsl php5-XMLRPC-json php5

Now restart apache2:

/ etc/init.d/apache2 restart

  Now re-http://192.168.1.3/info.php on your browser and scroll down to the module again. You should now find lots of new modules there, including the MySQL module:



7 phpMyAdmin

phpMyAdmin is a web interface where you can manage your MySQL database. That's a good idea to install it:

apt-get install phpmyadmin

You will see the following questions:

Web server to reconfigure automatically: <- apache2
Configure database for phpmyadmin with dbconfig-common? <- No

  After that, you can access phpMyAdmin under http://192.168.1.3/phpmyadmin/:

Phpmyadmin login page should appear like this:

 Enter your user name and password (default user is 'root')
If it appears at the bottom of the page like this means a successful installation.

 Referral link:
Apache: http://httpd.apache.org/
PHP: http://www.php.net/
MySQL: http://www.mysql.com/
Ubuntu: http://www.ubuntu.com/
phpMyAdmin: http://www.phpmyadmin.net/

Saturday, October 1, 2011

Repository Ubuntu 10.10 Maverick Meerkat

Here are

Saturday, September 24, 2011

how to install opera in Ubuntu 11.04

Opera is a popular web browser, developed by opera Software. Opera web browser is very popular among small devices such as mobile phones, but this post is based on the desktop version of opera web browser. Opera web browser is available free under proprietary license (with some open source components), for all common operating systems such as GNU/Linux distros (e.g Ubuntu 11.04/10.10.., Linux Mint, Fedora, OpenSuse etc), Windows 7, Mac OS X, FreeBSD.

Ubuntu users primarily uses Google Chrome and Mozilla Firefox, but Opera is also a good choice, specifically if you have used or just give it a try (Just for Fun!), you might like some new and exciting features in Opera 11.10 – the latest version of Opera for Linux Distributions. A special features named – ‘Opera Turbo’ seems impressing because it allow you to browse five times faster (5x, it seems cool) than the normal after enabling the opera turbo mode (You can switch to/from Opera Turbo Mode in single click, using the turbo button at bottom of the browser); specifically developed for the users who surf with slower internet connection. In this post, you will learn – how to install opera 11.10 on your freshly installed Ubuntu 11.04 (Natty Narwhal), using Ubuntu Software Center or command line/shell/terminal.


Installing Opera on Ubuntu 11.04

#1 : Download the debian package ‘opera_11.10.2092_i386.deb’.

Download Opera 11.10 for Ubuntu 11.04


#2 : Now, open the downloaded package with Ubuntu Software Center (Right click on the file and select Open with Ubuntu Software Center), then click on install button to start the installation procedure. …..Wait for the installation to complete.

#3 : That’s All..Now go to menu (Top left corner) and search for ‘opera’ to start surfing with Opera.
Alternate way : From Terminal

Open Terminal (CTRL+ALT+T) and enter the commands, probably followed by your login password.
wget http://www.opera.com/download/get.pl?id=33541&location=321¬hanks=yes&sub=marine
sudo dpkg -i opera_11.10.2092_i386.deb

Friday, August 12, 2011

Fasting Tips For People with Diabetes

Questions raised almost as well as many people with diabetes mellitus or diabetes. Consideration of fasting for people with diabetes mellitus (DM) is somewhat more complicated and require medical intervention. Because people with diabetes need to set up a diet and measuring the drug in such a way as to maintain glucose levels in their blood during fasting.

button share

auto link

PR

Check Page Rank of your Web site pages instantly:

This page rank checking tool is powered by Page Rank Checker service