Resnodesigns Blog
Setting up a Virtual Machine on Ubuntu without KVM
I recently took a foray into the world of virtual machines on my Ubuntu server. I decided that since I could not use the well known KVM (my cpu does not have the proper extensions) I could use virtualbox. After installing it, I next learned how to mange the VirtualBox headless.
Main Installation Method
- Create a vm with the name ubuntu
VBoxManage createvm -name ubunutu -register
- Using the vm we just created limit its ram usage to 256MB, boot off the dvd and set the network interface card to use nat.
VBoxManage modifyvm ubuntu -memory "256MB" -acpi on -boot1 dvd -nic1 nat
- Create a virtual hard disk drive, at that location.
VBoxManage createvdi -filename "/var/vbox/ubuntu.vdi" -size 5000 -register
- Add the previouly created hard disk drive to the actual virtual machine.
VBoxManage modifyvm ubuntu -hda "/var/vbox/ubuntu.vdi"
- Register the ISO with the virtual machine.
VBoxManage registerimage dvd /var/vbox/ubuntu-10.04-server-i38.iso
- Modifying the virtual machine to use the ISO.
VBoxManage modifyvm ubuntu -dvd /var/vbox/ubuntu-10.04-server-i38.iso
- Finally, we start the vm and the real fun begins.
VBoxHeadless -startvm ubuntu
Your new virtual machine is now running, however we need an application that can allow us to install the actual operating system. On my Ubuntu desktop, I use gnome-rdp, you retrieve the ipaddress of the virtual machine, and type in port and after confirming, you will see the new OS booting from your server.
Alternate Installation Methods
Additionally, there are two other methods I came across that allow configuring a virtual machine easier with the use of a gui or web manager. The first is enabling X Server forwarding through ssh and the other is PHP Virtual Box. PHP Virtual Box is a a web based application which uses Virtual Boxes built-in api to interact with virtual box.
Posted in Helpful Tips | No Comments »
Developers vs Graphic Designers
With some many webdevelopers/ designers/ graphics people all making websites how is a company or anyone for that matter to find someone to make their site?
1. Assuming a WYSIWYG editor can create a great website
Using a program to code your site will only result in jarbled code that no [...] Continue Reading…
Posted in Helpful Tips, Interesting | 1 Comment »
Quick Post: Django vs Grails
Coming from the Django world, I can already see big similarities. They both provide database abstraction for example, they allow the developer to essentially create a database and minimize the amount of SQL code needed. From what I can tell, the two are very similar, and this does excite [...] Continue Reading…
Tags: database abstraction, first impression, frameworks, intro, php, programming, server-side
Posted in
Coding |
1 Comment »
Tech Misfits Podcast
Some friends and I recently started our own tech podcast. We are going to be talking about everything having to do with technology, from phones, to latest gear to suggestions you give us!
Posted in News | No Comments »
About Isset()
According to php.net PHP Isset is:
Determine if a variable is set and is not NULL.
If a variable has been unset with unset(), it will no longer be set. isset() will return FALSE if testing a variable that has been set to NULL. Also note that a NULL byte (“\0″) [...] Continue Reading…
Posted in PHP Script | No Comments »
Tracking Your Site’s Users
I have recently started using userfly, a great tool for measuring your site’s usability. Uusefly, actually allows your to playback a video of a user navigating your website. If the user clicks anywhere on a page, you see an indication as such.
Is userfly useful?
The benefit of userfly, is you [...] Continue Reading…
Posted in Site Design | No Comments »
Simple Login Script
After creating a database named users, a table named users and two fields username and password, you can begin making this login script.
The basic form
Create a page named index.php, and inside that page add the following code.
Username
Passwod
[...] Continue Reading…
Tags: login help, login script, php
Posted in
PHP Script |
No Comments »
How to measure your site’s success
New websites are being created every single day. You want your website highly revered, but with so many tools and methods for measuring your sites success what is a site owner to do? Other the next few posts, I will be highlighting several tools, measurements and tools to examine [...] Continue Reading…
Posted in Helpful Tips | No Comments »
4 Ways to Reduce Bounce
Bounce rates are quickly becoming the metric people value the most.
What does “Bounce Rate” Measure?
photo credit: loungerie
By logging into any analytics software like Google Analytics or Piwik, you will find a wealth of information. One such piece of information is the Bounce Rate. The Bounce Rate, measures how [...] Continue Reading…
Tags: analytics, bounce rate, measuring site success, SEO
Posted in
Helpful Tips |
1 Comment »
Unique Skin Care
This featured project was creating a website for a small business. The website was created with the owners style and flair in mind. It promotes her skin care business and keeps her clients informed about different products and services she offers and soon helpful tips to get and [...] Continue Reading…
Posted in Portfolio | No Comments »





