Mehic.info

Category Archives: Actual topics from IT

Actual topics from IT

How to install Node.js on Windows

Node.js is a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. To install it to windows 7 follow these steps : 1. Download .msi file from Node.js […]

Read more

Converting VMware image to VirtualBox

For this purpose I used following commands on my Ubuntu 11.04 machine : First you must install qemu : mickey@mickey:~$ sudo apt-get install qemu Then convert .vdmk to binary mickey@mickey:~$ qemu-img convert image.vmdk image.bin And finally convert it to to .vdi image : mickey@mickey:~$ VBoxManage convertdd image.bin image.vdi Happy coding!

Read more

Install sun-java6-jdk on Ubuntu 10.04

I just had trouble to install the Sun Java6 JDK after updating to Ubuntu 10.04 for my project on Faculty. The problem was that the system couldn’t find the package sun-java6-sdk and apt-get gave me the following message: Package sun-java6-jdk is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or […]

Read more