Created
July 11, 2017 02:20
-
-
Save hideshi/499ec15c3e158a4b3e3ae2f43513051b to your computer and use it in GitHub Desktop.
Vagrantでホストとの時刻同期を止める ref: http://qiita.com/hideshi/items/a75f45e4d714708e46e3
This file contains 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
$ date | |
Tue Jul 11 01:39:04 UTC 2017 | |
$ sudo service vboxadd-service stop |
This file contains 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
$ sudo date -s "2017/07/02 01:40:00" | |
$ date | |
Sun Jul 2 01:40:02 UTC 2017 |
This file contains 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
$ sudo service vboxadd-service start | |
$ date | |
Tue Jul 11 01:50:04 UTC 2017 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment