C_DRIVE /C_DRIVE vboxsf uid=acizmeli 0 0
or
Documents /home/me/Host vboxsf uid=1000,gid=1000,nodev,noexec,nosuid,auto,rw 0 0
(http://ericgazoni.wordpress.com/2011/03/25/mounting-virtualbox-osx-share-on-ubuntu-guest/)
Nothing fancy. Just a scratchboard for Open Source Geospatial manipulations. Involves (although not limited to) Linux, R, gdal, Quantum GIS, Geoserver etc.
C_DRIVE /C_DRIVE vboxsf uid=acizmeli 0 0
From http://grass.osgeo.org/wiki/Compile_and_Install_Ubuntu First of all, do NOT install the following grass/ogr Ubuntu packages as they are often broken :gdal-bin libgdal1-dev. Instead, install grass/ogr from source code (recommended) : http://midyetavablog.blogspot.com/2009/11/compiling-gdal-on-ubuntu-karmic-910.html To build grass install the following packages in Ubuntu : sudo apt-get install build-essential flex bison libncurses5-dev zlib1g-dev \ libjpeg62-dev libgdal1-dev libtiff4-dev libgcc1 tcl8.5-dev tk8.5-dev \ gettext fftw3-dev libfreetype6-dev libavcodec-dev libavformat-dev libxmu-dev make python-dev \ swig libavutil-dev libavutil49 libgl1-mesa-dev libglu1-mesa-dev libcairo2-dev \ libblas-dev liblapack-dev libglw1-mesa-dev To build the wxphython GUI, install the following Ubuntu packages : sudo apt-get install libwxbase2.8-0 libwxbase2.8-dbg libwxbase2.8-dev \ libwxgtk2.8-0 libwxgtk2.8-dbg libwxgtk2.8-dev \ python-wxgtk2.8 wx2.8-doc wx2.8-examples \ wx2.8-headers wx2.8-i18n python-numpy We are ready to configure the system and start building : ./configure \ --with-tcltk-includes=/usr/include/tcl8.5 \ --with-wxwidgets=/usr/bin/wx-config \ --with-postgres-includes=/usr/include/postgresql --with-postgres=yes \ --with-cairo --with-blas --with-lapack --with-python \ --with-proj-share=/usr/share/proj make sudo make install I was not able to make work the following flags : --with-ffmpeg --with-ffmpeg-includes=/usr/include/libavcodec --with-glw
$ file Exported\ Items.bib
Exported Items.bib: Unicode text, UTF-8
$ file -i Exported\ Items.bib
Exported Items.bib: text/plain; charset=utf-8But not so with ascii files:$ file broken.bib
broken.bib: BibTeX text file
$ file -i broken.bib
broken.bib: text/plain; charset=us-asciiChanging the file to UTF-8 w/ BOM:$ uconv --add-signature broken.bib >fixed.bib && file fixed.bib
fixed.bib: Unicode text, UTF-8
$ file -i fixed.bib
fixed.bib: text/plain; charset=utf-8leads to successful import (as does importing from the clipboard).