No que diz respeito à remontagem das montagens presentes no seu /etc/fstab
, pode utilizar este método para forçar uma remontagem:
$ sudo mount -a -t cifs
Por man mount
:
-t, --types vfstype
[...]
More than one type may be specified in a comma separated list.
The list of filesystem types can be prefixed with no to specify
the filesystem types on which no action should be taken. (This
can be meaningful with the -a option.) For example, the command:
mount -a -t nomsdos,ext
Em seguida, você poderia marcar um script de shell que forçaria o comando mount -a -t cifs
a ser executado com base em um horário agendado ou apresentasse uma verificação usando inotify
ou algo mais que verificaria o status das montagens e se detectar que eles falharam, execute o comando mount ..
fornecido acima.