This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:3dprinting:anycubic_i3_mega:replacing_atmega2560 [2022/02/04 12:27] – [Install avrdude] admin | projects:3dprinting:anycubic_i3_mega:replacing_atmega2560 [2022/02/04 12:40] (current) – [Install avrdude] admin | ||
---|---|---|---|
Line 28: | Line 28: | ||
==== Install avrdude ==== | ==== Install avrdude ==== | ||
* [[http:// | * [[http:// | ||
- | |||
<code bash> | <code bash> | ||
# Dependencies | # Dependencies | ||
sudo apt-get update | sudo apt-get update | ||
- | sudo apt-get install | + | sudo apt-get install build-essential bison flex automake libelf-dev libusb-1.0-0-dev libusb-dev libftdi-dev libftdi1 |
- | gunzip | + | mkdir -p $HOME/ |
- | cd avrdude-6.0 | + | cd !$ |
+ | wget http:// | ||
+ | tar xzf avrdude-6.4.tar.gz | ||
+ | # See here https:// | ||
+ | # for an explanation about word designaters in bash | ||
+ | cd !$:r:r | ||
./configure | ./configure | ||
make | make | ||
- | su root -c 'make install' | + | sudo make install |
</ | </ | ||