-
Notifications
You must be signed in to change notification settings - Fork 0
VM configuration
Luca Delucchi edited this page Sep 11, 2018
·
2 revisions
-
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
- mkdir compilated && cd compilated
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
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