On windows machine there are lots of third party editors available to edit a binary file. I belive there should be some thing similer buildin in the *nix systems as well. any idea how can i edit a binary file on unix?

link|improve this question

60% accept rate
feedback

11 Answers

up vote 8 down vote accepted

You can also try ghex2 GNOME utilities. This give you the automated hex-to-ASCII on the side, as well as the various character/integer decodes at the bottom. ghex2

link|improve this answer
Thanks. it present on my sunos system. any thing on hpux ? – Hemant Jun 10 '09 at 12:39
I don't know what all is on HPux, but since it is open source software you could probably find the source, compile and install it yourself. – Shannon Nelson Jun 20 '09 at 6:22
feedback

In vim You can type :%!xxd to turn it into a hexeditor. :%!xxd -r to go back to normal mode. xxd is shipped in a vim installation.

See here for some remarks about editing binary files with vim (boils down to :set binary to avoid trouble, use only the "R" or "r" command to change text, don't delete characters).

If You are an Emacs fan, see here for a guide on how to edit a binary file with Emacs.

link|improve this answer
Yes, this works, but it is more difficult to use because you need to work at keeping the xxd text formatted properly, and the ASCII decode on the side isn't automatic. – Shannon Nelson May 9 '09 at 4:38
More difficult than what? I'd like to remind that the question was about hexeditors shipped with *nix. Console users don't have much choice. – Reef May 9 '09 at 15:23
feedback

you can check wikipedia.

I prefer BIEW especially.

link|improve this answer
Thanks for the wikipedia link. I liked Hexditor.jar – HRJ Dec 14 '11 at 20:03
feedback

with Vim or Emacs.

link|improve this answer
1  
Vim: see Reef's response. Emacs: use "m-x hexl-mode" or "m-x hexl-find-file" to edit a file in hex-editor mode (or just click the links). – Ogre Psalm33 Jan 6 at 19:50
feedback

There are much more hexeditors on Linux/Unix....

I use hexedit on Ubuntu

sudo apt-get install hexedit
link|improve this answer
feedback

I like KHexEdit, which is part of KDE

Its "Windows style" UI is probably quite quick to learn for most people (compared to Vim or Emacs anyway :)

link|improve this answer
feedback

There's lightweight binary editor, check hexedit. http://www.linux.org/apps/AppId_6968.html. I tried using it for editing ELF binaries in Linux at least.

link|improve this answer
feedback

For small changes, I have used hexedit:

http://rigaux.org/hexedit.html

Simple but fast and useful.

link|improve this answer
feedback

Bless is a high quality, full featured hex editor.

It is written in mono/Gtk# and its primary platform is GNU/Linux. However it should be able to run without problems on every platform that mono and Gtk# run. Main Features Bless currently provides the following features:

  • Efficient editing of large data files and block devices.
  • Multilevel undo - redo operations.
  • Customizable data views.
  • Fast data rendering on screen.
  • Multiple tabs.
  • Fast find and replace operations.
  • A data conversion table.
  • Advanced copy/paste capabilities.
  • Highlighting of selection pattern matches in the file.
  • Plugin based architecture.
  • Export of data to text and html (others with plugins).
  • Bitwise operations on data.
  • A comprehensive user manual.

copied from http://home.gna.org/bless/

link|improve this answer
feedback

I made wxHexEditor, it's open sourced, written with C++/wxWidgets GUI libs and can open even your exabyte sized disk!

http://wxhexeditor.sf.net

Just try.

link|improve this answer
I removed the offensive statement (try to avoid these) and added info about used GUI toolkit (found on your website). Hope it's OK. – Dadam Mar 20 '11 at 22:29
feedback

I've had good experience with wxHexEditor... just make sure if you are hexediting a drive you do it via the menu "Devices -> Open Disk Device -> SCSI Disk Drive Partition #N "

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.