无法打开 AR 存档文件!

无法打开 AR 存档文件!

我使用 Ubuntu 14.04 上的“存档管理器”压缩了几个文件和文件夹(大部分是照片)。在压缩过程中,我选择的文件类型为应收账款从下拉选择器中。

现在,当我尝试使用“存档管理器”解压缩该 *.AR 文件时,它仅解压缩根文件夹中的文件。但是,AR 文件大小显示与压缩期间完全相同。

有人能帮我正确解压缩 AR 文件吗?

谢谢。

答案1

您正在寻找应收账命令。它安装在任何 Ubuntu 版本上。

维基百科

归档程序(也称为 ar)是一种 Unix 实用程序,它将多组文件维护为单个归档文件。如今,ar 通常仅用于创建和更新链接编辑器或链接器使用的静态库文件;它可用于创建任何用途的归档,但除了静态库之外,它已在很大程度上被 tar 取代。ar 的实现包含在 GNU Binutils 中。

在 Linux 标准库中,ar 已被弃用,预计将在该标准的未来版本中消失。理由是“LSB 不包括软件开发实用程序,也没有指定 .o 和 .a 文件格式。”


列出内容:

ar -t

gnu 归档器 (ar) 的 -t 选项将归档的目录写入标准输出。写入的列表中仅包含文件操作数指定的文件。如果未指定文件操作数,则将按归档的顺序包含归档中的所有文件。


当您输入“ar”时,会出现“用法”中的所有选项:

~$ ar
Usage: ar [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
       ar -M [<mri-script]
 commands:
  d            - delete file(s) from the archive
  m[ab]        - move file(s) in the archive
  p            - print file(s) found in the archive
  q[f]         - quick append file(s) to the archive
  r[ab][f][u]  - replace existing or insert new file(s) into the archive
  s            - act as ranlib
  t            - display contents of archive
  x[o]         - extract file(s) from the archive
 command specific modifiers:
  [a]          - put file(s) after [member-name]
  [b]          - put file(s) before [member-name] (same as [i])
  [D]          - use zero for timestamps and uids/gids
  [U]          - use actual timestamps and uids/gids (default)
  [N]          - use instance [count] of name
  [f]          - truncate inserted file names
  [P]          - use full path names when matching
  [o]          - preserve original dates
  [u]          - only replace files that are newer than current archive contents
 generic modifiers:
  [c]          - do not warn if the library had to be created
  [s]          - create an archive index (cf. ranlib)
  [S]          - do not build a symbol table
  [T]          - make a thin archive
  [v]          - be verbose
  [V]          - display the version number
  @<file>      - read options from <file>
  --target=BFDNAME - specify the target object format as BFDNAME
 optional:
  --plugin <p> - load the specified plugin
 emulation options: 
  No emulation specific options
ar: supported targets: elf64-x86-64 elf32-i386 elf32-x86-64 a.out-i386-linux pei-i386 pei-x86-64 elf64-l1om elf64-k1om elf64-little elf64-big elf32-little elf32-big pe-x86-64 pe-bigobj-x86-64 pe-i386 plugin srec symbolsrec verilog tekhex binary ihex

相关内容