Advertisement
Guest User

Untitled

a guest
May 28th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # On Pi
  2.  
  3. ## Initial Pi Config
  4. ```
  5. sudo raspi-config
  6. ```
  7. 1 Expand partition - use the whole card
  8.  
  9.  
  10. ## Change root password
  11. ```
  12. sudo passwd root
  13. ```
  14. N.B.
  15. default user: pi
  16. default user password: raspberry
  17.  
  18.  
  19.  
  20. ## Get ip address of pi:
  21. ```
  22. ifconfig
  23. ```
  24. result is the wlan0 inet: 192:168:1:235
  25.  
  26. # On laptop
  27. ssh into pi
  28. ```
  29. ssh pi@192.168.1.235
  30. ```
  31. default password: raspberry
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement