have this on /etc/fstab
LABEL=BackupData /Backup/Data hfs rw,noauto 1 2
CODE
bash-3.2# mount /Backup/Data
mount_hfs: No such file or directory
same when mounting by LABEL
CODE
bash-3.2# mount LABEL=BackupData
mount_hfs: No such file or directory
actually i'm emulating this with
CODE
diskutil list | grep BackupData | awk '{ print $6 }'
it returns diskXsY and i can mount it with `mount' or `diskutil mount'
but this is just a dirty hack
in FreeBSD i'm just adding this to fstab
/dev/ufs/BackupData /Backup/Data .....
then simply
mount /Backup/Data
does just what it is expected to do
thanks for any suggestions
