Advertisement
Mark2020H

Bash script to install all you need for avr micro on Debian 11

Feb 15th, 2023
2,184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | Source Code | 0 0
  1. #!/bin/sh
  2.  
  3. # Quick and easy  to use script to save you all the typing and remembering what to install for avr gcc , avrdude
  4. # Specifically intended for current tuts on Instagram and Facebook @ these addresses
  5. # Instagram https://www.instagram.com/markukh2021
  6.  
  7. # Face Book https://www.facebook.com/mark.harrington.142892
  8.  
  9. # Still busy with website amongst all the other 1001 tasks I have at hand  but keep eyes on this as this
  10. # will be up and running one of these days https://eliteprojects.x10host.com
  11.  
  12. echo installing avr-gcc and avrdude plus associated libraries
  13.  
  14. echo doing update please wait
  15.  
  16. echo
  17.  
  18. sudo apt-get update
  19.  
  20. echo now installing required packages please wait
  21.  
  22. sudo apt-get -y install avrdude avrdude-doc avrp  avr-libc binutils-avr gcc-avr gdb-avr libavresample4 libsimavr2 simavr
  23. echo
  24.  
  25. echo done !!
  26.  
  27. echo
  28.  
  29. echo Thank you MD Harrington
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement