Error importing into Virtualbox

Open visualisation format (OVF) is an open standard for packaging anddistributing virtual appliances. Essentially this is meant to ensureportability of software and virtual machines across differenthypervisors, such as vmware, virtualbox, etc. However, I got an errorwhen importing an OVF file into virtualbox Version 5.0.12 r104815 “Host resource of type “Other Storage Device (20)” is supported withSATA AHCI controllers only, line 47.” Error reading "XXXXXX.ovf": Host resource of type "Other Storage Device (20)" is supported with SATA AHCI controllers only, line 47.

Read More →

.vimrc

set nobackup " do not save ~file set backspace=2 " backspace in insert mode like other editorsset cursorline " location of cursor shown as underscoresyntax on " syntax highlightingset number " line numbersfiletype indent on " activates indenting for filesset autoindent " auto indentingset si " smart indentset expandtab " use spaces instead of tabsset smarttab " use smarts when tabbingset shiftwidth=2 " 1 tab == 2 spacesset tabstop=2set softtabstop=2set textwidth=130 " wrap lines 130 chars, wide-carriage :)set hlsearch " highlight search resultsset incsearch " incremental search to move result while typingset showmatch " show matching brackets

Read More →