strings 本身是 命令行工具(属于 binutils),没有官方 GUI。
不过如果你想在 Ubuntu 上「用图形界面方式看二进制文件里的字符串」,有几种选择:
strings 文件名
或配合 grep:
strings 文件名 | grep -i password
sudo apt install ghex
# 或
sudo apt install bless
sudo apt install cutter
可以用 Python + PyQt / Tk 包一层 strings 命令,几行代码就能做。
✅ 总结:strings 没 GUI,但 Ubuntu 上有很多带界面的工具能看同样内容。
如果你想要,我可以: