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