如何查看 .CAB 文件的内容?

Mar*_*k B 13 windows archive nautilus

我将尝试从 Simple Accounting 迁移,并且需要以某种方式提取 Windows CAB 文件的内容,这正是 Simple 用于备份的内容。

在 Ubuntu 上打开 CAB 文件的最佳方法是什么?

and*_*ing 15

安装包cabextract: sudo apt-get install cabextract

从命令行,您现在可以执行 cabextract file.cab

您还可以配置存档管理器 GUI 以在安装 cabextract 后打开 cab 文件。

双击 cab 文件。您会被告知它无法显示,但实际上并非如此。按Select Application

替代文字

选择Archive Manager从“打开方式”对话框,选中“记住这个应用程序”复选框。

替代文字

现在您可以处理 cab 文件,如 zip 或 rar 文件。您可以使用“在此处提取”右键单击选项或双击在存档管理器中打开。

  • 通过命令行使用 cabextract 有效,但存档管理器对我不起作用。我必须做什么才能告诉它使用 cabextract? (2认同)

小智 9

我必须安装并使用“unshield”来提取一些显然“受保护”的cab文件的内容......

kimberly@kimberly-desktop:~/Downloads/M12PlusV4302World$ cabextract -l *.cab | grep -i \.fw
data1.cab: WARNING; found InstallShield header. This is probably an InstallShield file. Use unshield (from the unshield package) to unpack it.
data1.cab: no valid cabinets found


root@kimberly-desktop:/usr/share/sane/gt68xx# apt-get install unshield
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following package was automatically installed and is no longer required:
  libexiv2-10
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libunshield0
The following NEW packages will be installed:
  libunshield0 unshield
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 28.9kB of archives.
After this operation, 156kB of additional disk space will be used.
...


kimberly@kimberly-desktop:~/Downloads/M12PlusV4302World$ unshield -d temp x *.cab
Cabinet: data1.cab
  extracting: temp/_Support_Spanish_String_Tables/StringTable-000a-Spanish.ips
  extracting: temp/Twain-P/TWAIN_32.RDL
  extracting: temp/Twain-P/Ds.chm
  extracting: temp/AM32-E/SCANRes.dll
  extracting: temp/AM32-E/StartRes.dll
  extracting: temp/AM32-E/Language.ini
  extracting: temp/_Support_English_Files/_IsRes.dll
...
Run Code Online (Sandbox Code Playgroud)