1 Answer
You can set cronjob to do so.
Assume if you need to mount /dev/sda5 disk to /test folder, set cron as follows.
# crontab -e
@reboot mount /dev/sda5 /test
This will mount the disk to test folder automatically when the machine is rebooted.
Your Answer