Download .OVA file tar -xvf kartooklab.ova qemu-img convert -O kartooklab.vmdk kartooklab.qcow2 ova to vmdk vmdk to qcow2 vmware vSphere to Qcow2
Category Archives: Unix
Enable SSH (Secure Shell) in Ubuntu 14.04 ( Trusty Tahr) -How-to-Guide This tutorial shows you how to enable SSH in Ubuntu 14.04 ( Trusty Tahr) you may already know, SSH is a secure communication protocol that lets you remotely access to our Linux and Unix based systems. SSH is a replacement for Telnet.Telnet is very […]
I am started install LAMP on FreeBSD 9.1 -64 bit today . Found Error . After a lot of research and logs found a way to fix . Hope this helps Error : 1 When i start Apache 22 httpd: apr_sockaddr_info_get() failed for FreeBSD httpd: Could not reliably determine the server’s fully qualified […]
Apache 2.4 has been out for a while, and now it’s in the FreeBSD ports tree! It’s been a long time coming with many people asking. Well, here it is. One of the main features in Apache 2.4 is performance, enjoy. Update ports tree # portsnap fetch update Install Apache 2.4 port # /usr/ports/www/apache24 # […]
Install Asterisk 1.8 from source on Ubuntu 12.04 New install updating the patches apt-get update apt-get upgrade Verifying kernel headers are installed apt-get install linux-headers-`uname -r` Downloding a packages for building asterisk, dependencies, compilers, etc Compiler apt-get install build-essential sudo apt-get install libssl-dev Required Dev file apt-get install libxml2-dev Termcap dev files apt-get install libncurses5-dev […]
The Asterisk Development Team is pleased to announce the first beta release of Asterisk 11.0.0 (the first Long Term Support release since 1.8). This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk/releases All interested users of Asterisk are encouraged to participate in the Asterisk 11 testing process. Please report any issues found to the […]
How To Install Restricted Extras In Ubuntu 12.04 LTS Installing this package will pull in support for MP3 playback and decoding, support for various other audio formats (gstreamer plugins), Microsoft fonts, Java runtime environment, Flash plugin, LAME (to create compressed audio files), and DVD playback. sudo apt-get install ubuntu-restricted-extras
Install VSFTPD with CentOS $yum install vsftpd Turn on vsftpd auto start with $chkconfig –level 235 vsftpd on Open vsftpd.conf $nano /etc/vsftpd/vsftpd.conf Now Add all this lines below the vsftpd.conf anonymous_enable=NO chroot_local_user=YES listen_port=XXXXX ( Port should be above 1024 ) Restart vsftpd with service vsftpd restart. $service vsftpd restart
The nl command adds line numbers to its input, so you can pipe the output of ping to nl. Example : ping -c3 kartook.com | nl Ping = Command C3 = How many packets need to send kartook.com = which destination you want to ping | = Pipe ( interconnection between ping and […]