-Usando barras (/) NÃO corrigiu para mim.
-Além disso, adicionando a opção _netdev
à minha entrada /etc/fstab
NÃO corrigiu para mim.
O que eu fiz para corrigir esse problema (no meu Pi3) é modificar /etc/rc.local
para dormir 20 segundos (chamando sleep 20
) e depois chamar mount -a
. Desta forma, mesmo que a rede NÃO esteja conectada ainda quando o sistema primeiro lê o arquivo fstab, então a montagem falha então, eu forcei o sistema a esperar 20 segundos aqui (dando tempo para a rede se conectar) então eu o forcei a chamar mount -a
novamente para montar todas as unidades no arquivo fstab
.
Aqui está o meu arquivo /etc/rc.local
agora:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
#GS notes: a *minimum* of sleep 10 is required for the mount below to work on the Pi 3; it failed with sleep 5, but worked with sleep 10, sleep 15, and sleep 30
sleep 20
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
mount -a #GS: mount all drives in /etc/fstab
fi
exit 0
Feito! Agora funciona perfeitamente para mim!
Referências: