Até onde eu sei, o comportamento que você está procurando (consultar o arquivo /etc/fstab
e aplicar as opções encontradas lá) só se aplica se você chamar mount
diretamente, ao invés de um dos "ajudantes" "comandos como mount.cifs
, e somente se você especificar o dispositivo ou o ponto de montagem. De man mount
:
If only the directory or the device is given, for example: mount /dir then mount looks for a mountpoint (and if not found then for a device) in the /etc/fstab file. It's possible to use the --target or --source options to avoid ambivalent interpretation of the given argument. For example: mount --target /mountpoint
Então substitua
sudo mount.cifs //192.168.1.2/ext4tb /mnt/ext4tb
por
sudo mount /mnt/ext4tb
ou
sudo mount //192.168.1.2/ext4tb