Guest User

Untitled

a guest
Mar 6th, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. ## Configure Wifi
  2.  
  3. 1. Open the RetropPie-Setup Script
  4.  
  5. 3. Configuration/tools > wifi- Configure Wifi
  6.  
  7. ## Open RetroPie-Setup Script
  8.  
  9. sudo ~/RetroPie-Setup/retropie_setup.sh
  10.  
  11. ## Open RetroPie Config
  12.  
  13. sudo raspi-config
  14.  
  15. ## SSH Into RetroPie
  16.  
  17. ssh pi@retropie.local
  18.  
  19. __Hostname:__ retropie
  20. __Username:__ pi
  21. __Password:__ raspberry
  22.  
  23. ## Common Terminal Commands
  24.  
  25. ### Reboot
  26. ```bash
  27. sudo reboot
  28. ```
  29.  
  30. ### Shutdown
  31. ```bash
  32. sudo shutdown -h now
  33. ```
  34.  
  35. ### Change Directory
  36. ```bash
  37. cd /path/to/directory
  38. ```
  39.  
  40. ### Edit Files with Nano
  41. ```bash
  42. sudo nano /path/to/file.txt
  43. ```
  44.  
  45. ### Change owner to Pi
  46. ```bash
  47. sudo chown pi:pi filetobechanged
  48. ```
  49.  
  50. ### Change owner of folder and all files in folder to Pi
  51. ```bash
  52. sudo chown -R pi:pi /folder/to/be/changed
  53. ```
  54.  
  55. ### Make shell script executable
  56. ```bash
  57. sudo chmod +x yourshellscript.sh
  58. ```
Add Comment
Please, Sign In to add comment