Error importing into Virtualbox

Open visualisation format (OVF) is an open standard for packaging and distributing virtual appliances. Essentially this is meant to ensure portability of software and virtual machines across different hypervisors, such as vmware, virtualbox, etc. However, I got an error when importing an OVF file into virtualbox Version 5.0.12 r104815

“Host resource of type “Other Storage Device (20)” is supported with SATA 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.





Result Code: 

VBOX_E_FILE_ERROR (0x80BB0004)

Component: 

ApplianceWrap

Interface: 

IAppliance {XXXXXX}

Fixed it by following the instructions on the forum[1]

[Read More]

.vimrc

set nobackup " do not save ~file

set backspace=2         " backspace in insert mode like other editors

set cursorline          " location of cursor shown as underscore

syntax on               " syntax highlighting

set number              " line numbers



filetype indent on      " activates indenting for files

set autoindent          " auto indenting

set si                  " smart indent



set expandtab           " use spaces instead of tabs

set smarttab            " use smarts when tabbing

set shiftwidth=2        " 1 tab == 2 spaces

set tabstop=2

set softtabstop=2



set textwidth=130       " wrap lines 130 chars, wide-carriage :)



set hlsearch            " highlight search results

set incsearch           " incremental search to move result while typing

set showmatch           " show matching brackets
gvim  _vimrc  .vimrc  vimrc  vim