Skip to content

VM configuration

Luca Delucchi edited this page Sep 11, 2018 · 2 revisions

Configuration

  • Added Italian and Norwegian keyboard

  • Software update and installation

    sudo apt-get update && sudo apt-get dist-upgrade

    sudo apt-get install libboost-system-dev libboost-thread-dev libboost-filesystem-dev libboost-program-options-dev libboost-iostreams1.65 cmake-curses-gui

Installing new software

  • mkdir compilated && cd compilated

laszip for liblas 2.0.1 is required

wget -c https://github.com/LASzip/LASzip/archive/2.0.1.tar.gz
tar xzf 2.0.1.tar.gz
cd LASzip-2.0.1/ && mkdir build && cd build
# With ccmake it create Make file
ccmake ..
make
sudo make install

liblas

wget -c http://download.osgeo.org/liblas/libLAS-1.8.1.tar.bz2
tar xjf libLAS-1.8.1.tar.bz2
cd libLAS-1.8.1/ && mkdir build && cd build
# With ccmake it create Make file
ccmake ..
make
sudo make install
Clone this wiki locally