How To Install avrdude on Fedora 34
Introduction
In this tutorial we learn how to install avrdude
on Fedora 34.
What is avrdude
AVRDUDE is a program for programming Atmel’s AVR CPU’s. It can program the Flash and EEPROM, and where supported by the serial programming protocol, it can program fuse and lock bits. AVRDUDE also supplies a direct instruction mode allowing one to issue any programming instruction to the AVR chip regardless of whether AVRDUDE implements that specific feature of a particular chip.
We can use yum
or dnf
to install avrdude
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install avrdude.
Install avrdude on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install avrdude
using dnf
by running the following command:
sudo dnf -y install avrdude
Install avrdude on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install avrdude
using yum
by running the following command:
sudo yum -y install avrdude
How To Uninstall avrdude on Fedora 34
To uninstall only the avrdude
package we can use the following command:
sudo dnf remove avrdude
avrdude Package Contents on Fedora 34
/etc/avrdude
/etc/avrdude/avrdude.conf
/usr/bin/avrdude
/usr/lib/.build-id
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/175b1a2ac78541c6e49543256da567acb6706b
/usr/lib/udev/rules.d/70-avrdude_usbprog.rules
/usr/share/doc/avrdude
/usr/share/doc/avrdude/AUTHORS
/usr/share/doc/avrdude/COPYING
/usr/share/doc/avrdude/ChangeLog
/usr/share/doc/avrdude/ChangeLog-2001
/usr/share/doc/avrdude/ChangeLog-2002
/usr/share/doc/avrdude/ChangeLog-2003
/usr/share/doc/avrdude/ChangeLog-2004-2006
/usr/share/doc/avrdude/ChangeLog-2007
/usr/share/doc/avrdude/ChangeLog-2008
/usr/share/doc/avrdude/ChangeLog-2009
/usr/share/doc/avrdude/ChangeLog-2010
/usr/share/doc/avrdude/ChangeLog-2011
/usr/share/doc/avrdude/ChangeLog-2012
/usr/share/doc/avrdude/ChangeLog-2013
/usr/share/doc/avrdude/NEWS
/usr/share/doc/avrdude/README
/usr/share/doc/avrdude/TODO
/usr/share/doc/avrdude/avrdude-html
/usr/share/doc/avrdude/avrdude-html/avrdude.html
/usr/share/doc/avrdude/avrdude-html/avrdude_1.html
/usr/share/doc/avrdude/avrdude-html/avrdude_10.html
/usr/share/doc/avrdude/avrdude-html/avrdude_11.html
/usr/share/doc/avrdude/avrdude-html/avrdude_12.html
/usr/share/doc/avrdude/avrdude-html/avrdude_13.html
/usr/share/doc/avrdude/avrdude-html/avrdude_14.html
/usr/share/doc/avrdude/avrdude-html/avrdude_15.html
/usr/share/doc/avrdude/avrdude-html/avrdude_16.html
/usr/share/doc/avrdude/avrdude-html/avrdude_17.html
/usr/share/doc/avrdude/avrdude-html/avrdude_18.html
/usr/share/doc/avrdude/avrdude-html/avrdude_19.html
/usr/share/doc/avrdude/avrdude-html/avrdude_2.html
/usr/share/doc/avrdude/avrdude-html/avrdude_20.html
/usr/share/doc/avrdude/avrdude-html/avrdude_3.html
/usr/share/doc/avrdude/avrdude-html/avrdude_4.html
/usr/share/doc/avrdude/avrdude-html/avrdude_5.html
/usr/share/doc/avrdude/avrdude-html/avrdude_6.html
/usr/share/doc/avrdude/avrdude-html/avrdude_7.html
/usr/share/doc/avrdude/avrdude-html/avrdude_8.html
/usr/share/doc/avrdude/avrdude-html/avrdude_9.html
/usr/share/doc/avrdude/avrdude-html/avrdude_abt.html
/usr/share/doc/avrdude/avrdude-html/avrdude_toc.html
/usr/share/doc/avrdude/avrdude.pdf
/usr/share/doc/avrdude/avrdude.ps
/usr/share/info/avrdude.info.gz
/usr/share/man/man1/avrdude.1.gz
References
Summary
In this tutorial we learn how to install avrdude
on Fedora 34 using yum and dnf.