In order for BeDrive to perform some scheduled tasks (like deleting temporary files and expired shareable links), you will need to set up a CRON job on your server.

You can usually create CRON jobs from your hosting's Cpanel. You should create a CRON job that calls the command below every minute:

php /path/to/bedrive/folder/artisan schedule:run >> /dev/null 2>&1

Important:
Replace "path/to/bedrive/folder" in the command above with path to bedrive folder on your own server.
Note:
Most tasks will only be performed once a day, regardless of how often CRON job runs.
If "No scheduled commands are ready to run." message is returned by CRON job it means all tasks were already ran for current day.