您最喜欢的 HexEditor 是什么?

您最喜欢的 HexEditor 是什么?

Ubuntu LTS 14.04 桌面上最常用的开源 GUI 十六进制编辑器有哪些?我在 OS X 上运行 HexEdit,正在寻找类似的东西。也许更现代一点,功能好,稳定性高,易于安装和集成。这是一个适合初学者学习 Linux 和检查代码的系统。您如何比较:Ghex、Bless 和 wxHex?欢迎提出任何建议。

答案1

保佑是一款高品质、全功能的十六进制编辑器。

Bless 目前提供以下功能:

  • 高效编辑大型数据文件和块设备。
  • 多级撤消—重做操作。
  • 可定制的数据视图。
  • 屏幕上快速呈现数据。
  • 多个标签。
  • 快速查找和替换操作。
  • 高级复制/粘贴功能。
  • 突出显示文件中的选择模式匹配。
  • 导出为文本和 html(其他带有插件的)。
  • 通过插件实现扩展。

您可以比较十六进制编辑器这里

安装:

Ctrl++打开终端并运行AltT

sudo apt-get install bless

或者 点击此关联

答案2

我一直在使用 wxHexEditor——功能齐全/稳定+源代码!

轻松处理大型文件(仅受 RAM 限制)

sudo apt-get install wxhexeditor  #  then launch using  wxHexEditor

___ 或者 ___

git clone https://github.com/EUA/wxHexEditor.git 
cd wxHexEditor
make -j$(nproc)
sudo make install
wxHexEditor

在编译 wxHexeditor 之前,您需要在系统上安装 wxWidgets 和 autoreconf...只需安装这些库:

sudo apt-get build-dep  wxhexeditor   

如果make出现此错误

make: *** No rule to make target '-lgomp', needed by 'src/HexEditorGui.o'.  Stop.

然后编辑文件Makefile并删除此行

LIBS += -lgomp

详情请参阅https://github.com/EUA/wxHexEditor/issues/150

然后我做

sudo ln -s /usr/local/bin/wxHexEditor /usr/local/bin/wxhexeditor

所以我可以用小写字母启动它 wxhexeditor

相关内容