mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
562cc9007c
This change is also a complete refactoring of the generation of the vagrant image
15 lines
313 B
Bash
15 lines
313 B
Bash
apt-get update
|
|
apt-get -y upgrade
|
|
apt-get -y install linux-headers-$(uname -r)
|
|
|
|
# Fix locale setup
|
|
locale-gen
|
|
localectl set-locale LANG="en_US.UTF-8"
|
|
|
|
# Allow usage of serial port
|
|
adduser ${SSH_USERNAME} dialout
|
|
|
|
echo '%sudo ALL=(ALL:ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
|
|
echo "UseDNS no" >> /etc/ssh/sshd_config
|