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
| sudo systemctl unmask update-engine.service | |
| sudo systemctl start update-engine.service | |
| sudo update_engine_client -check_for_update | |
| sudo journalctl -fu update-engine |
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
| [ | |
| ["w-71a21a78-0435-40e4-80a9-0025e9125049", "27c3dc0d182ac14ee6d665c59bd4bf"], | |
| ["w-a951013a-3aa6-442f-9e4c-4f091fe9a601", "9195bee757503af98c773584d66f37"], | |
| ["w-71ea55ec-ca65-42f7-9605-263901a94d98", "cc13102def7fedebe0b385e0a7bb04"], | |
| ["w-bed696ca-cd17-4ce2-9e2b-9a55d4033cbb", "6f108ee42d4ce80b8353c61ffa2a6b"], | |
| ["w-bf6f59a2-25c5-4b93-a12c-578d72c0b4c8", "c5bbd65e103e9d7c723c4abab3a2ab"], | |
| ["w-9872e266-73fd-42bd-966d-e4b743fd120f", "e7fc07877cf7f880b90badb4349b2a"], | |
| ["w-14d24fa1-3264-47cb-b9f8-4bdddbeae319", "f735dc9440ff457eb7b440c4789d52"], | |
| ["w-bc089bcf-11b5-448a-b9d5-4bc5288e5c8d", "e391070a0af3c3f42023d114bb9e98"], | |
| ["w-fc191dd4-9148-4fd9-a003-4f7b2f854be5", "677c4e854ef5bda7ac84b37f3bf061"], |
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
| --- | |
| definitions: | |
| User: | |
| allOf: | |
| - $ref: '#/definitions/ModelWithTimestamps' | |
| - $ref: '#/definitions/ModelWithID' | |
| - type: object | |
| description: User | |
| required: |
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
| #!/usr/bin/env bash | |
| # Reset routing table on OSX | |
| # display current routing table | |
| echo "********** BEFORE ****************************************" | |
| netstat -rn | |
| echo "**********************************************************" | |
| for i in {0..4}; do | |
| sudo route -n flush # several times |
OlderNewer