On Red Hat-based systems, you generally need the vim-common package.
The "xxd command not found" error is almost always solved by installing the or xxd package through your system's package manager. Once installed, you'll have full access to hex dumping and binary manipulation features. xxd command not found
: If you have Python installed, you can use a one-liner. On Red Hat-based systems, you generally need the
Usage: python3 -c "import sys; print(sys.stdin.read().hex())" < filename On Red Hat-based systems
xxd is a command-line utility that creates a hex dump of a given file or standard input. It can also convert a hex dump back into its original binary form. While it is technically a standalone tool, it is almost always distributed as part of the text editor package. How to Fix it on Linux