Sarajevo, Bosnia and Herzegovina

Category Archives: Actual topics from IT

Actual topics from IT

Configuring Sendmail SMTP Server On CentOS & Scientific Linux

Sendmail is the default SMTP (Simple mail transfer protocol) server installed on CentOS and although it can be slightly more complicated for beginners to learn than similar alternatives such as Postfix, it can be quite powerful and useful to learn. Sendmail by itself as the name suggests is a MTA (Mail transfer agent) which is useful for sending […]

Read more

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