how to edit binary file on the unix systems. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:50:36Z http://stackoverflow.com/feeds/question/839227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/839227/how-to-edit-binary-file-on-the-unix-systems 2 how to edit binary file on the unix systems. Hemant 2009-05-08T10:33:49Z 2009-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#839241 4 Answer by Francis for how to edit binary file on the unix systems. Francis 2009-05-08T10:38:07Z 2009-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#839249 5 Answer by dsm for how to edit binary file on the unix systems. dsm 2009-05-08T10:40:21Z 2009-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#839273 1 Answer by eradicus for how to edit binary file on the unix systems. eradicus 2009-05-08T10:46:55Z 2009-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#839549 5 Answer by Reef for how to edit binary file on the unix systems. Reef 2009-05-08T12:24:40Z 2009-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#839734 0 Answer by Brad Gilbert for how to edit binary file on the unix systems. Brad Gilbert 2009-05-08T13:15:17Z 2009-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#840502 0 Answer by bitozoid for how to edit binary file on the unix systems. bitozoid 2009-05-08T15:49:44Z 2009-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#840568 2 Answer by Jonik for how to edit binary file on the unix systems. Jonik 2009-05-08T16:03:39Z 2009-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#842660 1 Answer by Shannon Nelson for how to edit binary file on the unix systems. Shannon Nelson 2009-05-09T04:34:56Z 2009-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#843505 0 Answer by Osama ALASSIRY for how to edit binary file on the unix systems. Osama ALASSIRY 2009-05-09T15:35:01Z 2009-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>