how to edit binary file on the unix systems. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:50:36Zhttp://stackoverflow.com/feeds/question/839227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems2how to edit binary file on the unix systems.Hemant2009-05-08T10:33:49Z2009-05-09T15:35:01Z
<p>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?</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/839241#8392414Answer by Francis for how to edit binary file on the unix systems.Francis2009-05-08T10:38:07Z2009-05-08T10:38:07Z<p>you can check <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Fhex%5Feditors" rel="nofollow">wikipedia</a>.</p>
<p>I prefer <a href="http://biew.sourceforge.net/" rel="nofollow">BIEW</a> especially.</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/839249#8392495Answer by dsm for how to edit binary file on the unix systems.dsm2009-05-08T10:40:21Z2009-05-08T10:40:21Z<p>with <a href="http://www.vim.org/htmldoc/editing.html#edit-binary" rel="nofollow">Vim</a> or <a href="http://www.delorie.com/gnu/docs/emacs/emacs%5F464.html" rel="nofollow">Emacs</a>.</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/839273#8392731Answer by eradicus for how to edit binary file on the unix systems.eradicus2009-05-08T10:46:55Z2009-05-08T10:46:55Z<p>There's lightweight binary editor, check hexedit. <a href="http://www.linux.org/apps/AppId_6968.html" rel="nofollow">http://www.linux.org/apps/AppId_6968.html</a>. I tried using it for editing ELF binaries in Linux at least.</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/839549#8395495Answer by Reef for how to edit binary file on the unix systems.Reef2009-05-08T12:24:40Z2009-05-09T15:24:43Z<p>In vim You can type <strong>:%!xxd</strong> to turn it into a hexeditor. <strong>:%!xxd -r</strong> to go back to normal mode. xxd is shipped in a vim installation.</p>
<p>See <a href="http://www.vim.org/htmldoc/editing.html#edit-binary" rel="nofollow">here</a> for some remarks about editing binary files with vim (boils down to <strong>:set binary</strong> to avoid trouble, use only the "R" or "r" command to change text, don't delete characters).</p>
<p>If You are an Emacs fan, see <a href="http://www.delorie.com/gnu/docs/emacs/emacs%5F464.html" rel="nofollow">here</a> for a guide on how to edit a binary file with Emacs.</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/839734#8397340Answer by Brad Gilbert for how to edit binary file on the unix systems.Brad Gilbert2009-05-08T13:15:17Z2009-05-08T13:15:17Z<h1><a href="http://home.gna.org/bless/" rel="nofollow">Bless</a> is a high quality, full featured hex editor.</h1>
<p>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:</p>
<ul>
<li>Efficient editing of large data files and block devices.</li>
<li>Multilevel undo - redo operations.</li>
<li>Customizable data views.</li>
<li>Fast data rendering on screen.</li>
<li>Multiple tabs.</li>
<li>Fast find and replace operations.</li>
<li>A data conversion table.</li>
<li>Advanced copy/paste capabilities.</li>
<li>Highlighting of selection pattern matches in the file.</li>
<li>Plugin based architecture.</li>
<li>Export of data to text and html (others with plugins).</li>
<li>Bitwise operations on data.</li>
<li>A comprehensive user manual.</li>
</ul>
<p><a href="http://home.gna.org/bless/" rel="nofollow">copied from <a href="http://home.gna.org/bless/" rel="nofollow">http://home.gna.org/bless/</a></a></p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/840502#8405020Answer by bitozoid for how to edit binary file on the unix systems.bitozoid2009-05-08T15:49:44Z2009-05-08T15:49:44Z<p>For small changes, I have used hexedit:</p>
<p><a href="http://rigaux.org/hexedit.html" rel="nofollow">http://rigaux.org/hexedit.html</a></p>
<p>Simple but fast and useful.</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/840568#8405682Answer by Jonik for how to edit binary file on the unix systems.Jonik2009-05-08T16:03:39Z2009-05-08T16:20:05Z<p>I like <strong>KHexEdit</strong>, which is part of <a href="http://www.kde.org/" rel="nofollow">KDE</a></p>
<p>Its "Windows style" UI is probably quite quick to learn for most people (compared to Vim or Emacs anyway :) </p>
<p><img src="http://www.kuvaboksi.fi/mediaobjects/orig/pub/2009/05/08/8143010478550149869orig.png" width="350"><br />
(Right click and 'View image' for full-size screenshot)</p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/842660#8426601Answer by Shannon Nelson for how to edit binary file on the unix systems.Shannon Nelson2009-05-09T04:34:56Z2009-05-09T04:34:56Z<p>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.
<img src="http://kmbrandt.googlepages.com/hexeditor.jpg" alt="ghex2" /></p>
http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems/843505#8435050Answer by Osama ALASSIRY for how to edit binary file on the unix systems.Osama ALASSIRY2009-05-09T15:35:01Z2009-05-09T15:35:01Z<p>There are much more hexeditors on Linux/Unix....</p>
<p>I use hexedit on Ubuntu</p>
<pre><code>sudo apt-get install hexedit
</code></pre>