Raspberry Pi - Iniciando

Baixe a ultima versão do Raspbian

Faça a atualização usando os comandos:

sudo rpi-update

sudo apt-get install matchbox-keyboard

matchbox-keyboard

Para que o Raspberry adote um IP estático caso não obtenha um IP através de servidor DHCP, devemos editar o arquivo

/etc/dhcpcd.conf

Acresentar no fim do arquivo, o seguinte:

# define static profile
profile static_eth0
static ip_address=192.168.111.20/24
static routers=192.168.111.1
static domain_name_servers=192.168.1.1 8.8.8.8
# fallback to static profile on eth0
interface eth0
fallback static_eth0