Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
documentation at
Please provide a description of the documentation issue, the URL for the
page in which it exists, and a copy of the text or code that contains the
issue.
sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
There are two problems with above instructions.
1. Fedora doesn't use yum any more. dnf is the new package manager.
sudo dnf install...
2. It's missing libgcc.i686 without which mksdcard won't work.
$ ./mksdcard
bash: ./mksdcard: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
The updated install instruction for Fedora 25 and above should be.
sudo dnf install zlib.i686 ncurses-libs.i686 bzip2-libs.i686 libgcc.i686