Guest User

Untitled

a guest
Jul 20th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. * To boot Raspberry pi 3 B+ from SDCard working for Pi 3 B
  2. 1. sudo apt-get update
  3. 2. sudo apt-get install
  4. 3. sudo rpi-update
  5.  
  6. * Enabling SSH on Raspberry Pi 3 B/ B+
  7. 1. Enter sudo raspi-config in a terminal window
  8. 2. Select Interfacing Options
  9. 3. Navigate to and select SSH
  10. 4. Choose Yes
  11. 5. Select Ok
  12. 6. Choose Finish
  13.  
  14. * Resolution Seeting : Application Menu > Preferences > Raspberry Pi Configuration > System > Set Resolution
  15.  
  16. * Remove black borders on the screen to make full screen
  17. 1. sudo cp /boot/config.txt /boot/config.txt.backup
  18. 2. sudo nano /boot/config.txt
  19. 3. Comment all other overscan parameters (check below example)
  20. #overscan_left=10
  21. #overscan_right=10
  22. #overscan_top=15
  23. #overscan_bottom=15
  24. 4. Uncomment the #disable_overscan=1 (Remove the #)
  25. 5. Save and exit. ( CTRL+X followed by Y to save)
  26. 6. Reboot
Add Comment
Please, Sign In to add comment