Last active
October 22, 2024 17:38
-
-
Save unfulvio/1f921b3f356c25414b36e2423f5052da to your computer and use it in GitHub Desktop.
How to change server time on a Vagrant box on Virtualbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Log in into the box | |
vagrant ssh | |
# VirtualBox syncs host time with guest, so we need to shut off VBox Guest Additions first | |
sudo service vboxadd-service stop | |
# Now you can set any date and time | |
sudo date -s "2020-10-01 10:25:00" | |
# Want to sync again with host? Restart Guest Additions | |
# Anyway on the next Vagrant up it will sync again regardless | |
sudo service vboxadd-service start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks... Was a lifesaver for me.