<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Soul Of Free Loop &#187; 十六进制</title>
	<atom:link href="https://zohead.com/archives/tag/hex/feed" rel="self" type="application/rss+xml" />
	<link>https://zohead.com</link>
	<description>Uranus Zhou&#039;s Blog</description>
	<lastBuildDate>Sat, 19 Jul 2025 15:42:46 +0000</lastBuildDate>
	<language>zh-CN</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8</generator>
	<item>
		<title>Raspberry Pi十六进制编辑器wxHexEditor</title>
		<link>https://zohead.com/archives/raspberry-pi-wxhexeditor/</link>
		<comments>https://zohead.com/archives/raspberry-pi-wxhexeditor/#comments</comments>
		<pubDate>Tue, 25 Sep 2012 16:07:34 +0000</pubDate>
		<dc:creator><![CDATA[Uranus Zhou]]></dc:creator>
				<category><![CDATA[工具]]></category>
		<category><![CDATA[树莓派]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wheezy]]></category>
		<category><![CDATA[wxHexEditor]]></category>
		<category><![CDATA[wxWidgets]]></category>
		<category><![CDATA[十六进制]]></category>
		<category><![CDATA[编辑器]]></category>

		<guid isPermaLink="false">http://zohead.com/?p=303</guid>
		<description><![CDATA[本文同步自（最佳显示效果请点击）：https://zohead.com/archives/raspberry-pi-wxhexeditor/ 最近在 Raspberry Pi 编程时需要对文件进行十六进制编辑，原来一直用的 vim 配合 xxd 来实现的，但用起来还是各种不方便，在切换到 X11 界面时，想着能不能直接装个图形的编辑器来方便操作。 简单搜索之后发现 Linux 环境下好用的十六进制编辑器确实太少了，原来用的 Ghex 软件由于必须要 GNOME 环境支持果断放弃，UltraEdit 软件已经移植到 Linux 下，但由于是闭源的只有 X86 下的版本。装了这个 Bless He [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>本文同步自（最佳显示效果请点击）：<a href="https://zohead.com/archives/raspberry-pi-wxhexeditor/" target="_blank">https://zohead.com/archives/raspberry-pi-wxhexeditor/</a></p>
<p>最近在 Raspberry Pi 编程时需要对文件进行十六进制编辑，原来一直用的 vim 配合 xxd 来实现的，但用起来还是各种不方便，在切换到 X11 界面时，想着能不能直接装个图形的编辑器来方便操作。</p>
<p>简单搜索之后发现 Linux 环境下好用的十六进制编辑器确实太少了，原来用的 Ghex 软件由于必须要 GNOME 环境支持果断放弃，UltraEdit 软件已经移植到 Linux 下，但由于是闭源的只有 X86 下的版本。装了这个 <a href="http://home.gna.org/bless/" target="_blank">Bless Hex Editor</a> 软件，是基于 Mono 实现的，但发现有一些非正常退出的 bug，还是弃用之。</p>
<p>最后发现的 wxHexEditor 看起来很不错，基于 wxWidgets 实现，因此实现了 Windows、Linux、Mac OS X 跨平台，而且速度也挺好，不会一下装载整个文件，这对编辑大文件非常有用，填补了 Linux 上缺少好的十六进制编辑器的空白，看看 Linux 上的运行截图：</p>
<p><a href="http://www.wxhexeditor.org/images/screenshot.png" target="_blank"><img class="alignnone" title="wxHexEditor截图" src="http://www.wxhexeditor.org/images/screenshot.png" alt="wxHexEditor截图" width="608" height="441" /></a></p>
<p>想直接在线安装 wxHexEditor 发现有问题了，Raspberry Pi 的默认 Debian Wheezy 发行版中没有这个软件，需要自己来编译了，首先到其官网下载源代码包：<a href="http://www.wxhexeditor.org/" target="_blank">http://www.wxhexeditor.org/</a>。</p>
<p>首先 Raspberry Pi 需要相对完整点的开发环境，gcc、make、g++、autoconf、libtool 等一些开发工具包都是需要安装的。准备好之后使用 <strong><span style="color: #0000ff;">apt-get install libwxgtk2.8-dev</span></strong> 命令先在 Raspberry Pi 系统中安装 wxWidgets 的最新版本的库文件（自动依赖并安装）和开发包。然后进入解压缩出来的 wxHexEditor 源代码目录，运行 <strong><span style="color: #0000ff;">make OPTFLAGS="-fopenmp"</span></strong> 命令就可以进行编译，粗略估计编译需耗时 15 分钟左右（有点汗...）。</p>
<p>不想自己的编译的童鞋欢迎使用我编译好的版本哦，解压缩把 wxHexEditor 文件拷到 /usr/bin 之类的路径即可，要运行此程序最少要安装 wxWidgets 运行库哦（apt-get install libwxgtk2.8-0），需要注意此文件只在 Raspberry Pi 的 Debian Wheezy hardhf 版本系统中可用：</p>
<p><a href="http://miseal.googlecode.com/files/wxHexEditor-v0.20.7z" target="_blank">http://miseal.googlecode.com/files/wxHexEditor-v0.20.7z</a></p>
]]></content:encoded>
			<wfw:commentRss>https://zohead.com/archives/raspberry-pi-wxhexeditor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
