This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install ros kinetic on raspian buster | |
cd ~ | |
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz | |
tar xvzf boost_1_58_0.tar.gz | |
mkdir ~/build | |
cd boost_1_58_0/ | |
sudo ./bootstrap.sh | |
sudo ./b2 install —prefix="../build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" A good writeup of the .vimrc is here: | |
" http://dougblack.io/words/a-good-vimrc.html | |
syntax on | |
colorscheme badwolf | |
" Tab Handling | |
set tabstop=4 | |
set softtabstop=4 |