Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Anyone affected by Google Chrome stopping .dev URLs from working: as a quick fix do this
  2.  
  3. Create an overwriting google-chrome executable at:
  4.  
  5. sudo nano /usr/local/bin/google-chrome
  6.  
  7.  
  8. Make the content this:
  9.  
  10. #!/bin/bash
  11. /usr/bin/google-chrome --ignore-certificate-errors
  12.  
  13. (The "/usr/bin/google-chrome" part may be different depending on your machine. Use "whereis google-chrome" to confirm it)
  14.  
  15. Then make it executable
  16.  
  17. sudo chmod 777 /usr/local/bin/google-chrome
  18.  
  19.  
  20. Then you can pretty much just write "google-chrome" in the command window and you're away (some people can also do it with Alt+F2 for quicklaunch)
Add Comment
Please, Sign In to add comment