侧边栏壁纸
Linux入门自学网博主等级

每日学一条Linux命令,终成Linux大神

  • 累计撰写 725 篇文章
  • 累计创建 143 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

Linux unarj命令用法详解:如何解压缩.arj文件(附实例教程和注意事项)

Linux unarj命令介绍

Linux unarj命令是用于解压缩.arj文件的工具。.arj文件是一种压缩文件格式,由Robert K. Jung开发,主要用于DOS和Windows平台。unarj命令可以在Linux系统中解压缩.arj文件,还可以查看.arj文件的内容和检查.arj文件的完整性。

Linux unarj命令适用的Linux版本

unarj命令并不是Linux系统的标准命令,需要安装unarj软件包才能使用。不同的Linux发行版可能有不同的安装方法,下面列出了一些常见的Linux发行版的安装命令:

  • Ubuntu/Debian
[linux@bashcommandnotfound.cn ~]$ sudo apt-get install unarj
  • CentOS/RHEL
[linux@bashcommandnotfound.cn ~]$ sudo yum install unarj
  • Fedora
[linux@bashcommandnotfound.cn ~]$ sudo dnf install unarj
  • Arch Linux
[linux@bashcommandnotfound.cn ~]$ sudo pacman -S unarj
  • openSUSE
[linux@bashcommandnotfound.cn ~]$ sudo zypper install unarj

Linux unarj命令的基本语法

unarj命令的基本语法格式如下:

unarj [选项] [.arj压缩文件]

Linux unarj命令的常用选项说明

unarj命令的常用选项说明如下表所示:

选项说明
-e解压缩.arj文件
-l显示.arj文件内所包含的文件
-t检查.arj文件是否正确
-x解压缩时保留原有的路径
-v显示.arj文件的版本信息
-y在解压缩时自动覆盖已存在的文件
-p在解压缩时保留.arj文件的属性
-c在解压缩时转换DOS和UNIX的换行符
-d在解压缩时创建目录
-f在解压缩时只解压缩最新的文件

Linux unarj命令的实例

下面是一些Linux unarj命令的实例:

  • 解压缩test.arj文件到当前目录
[linux@bashcommandnotfound.cn ~]$ unarj e test.arj
  • 解压缩test.arj文件到指定目录
[linux@bashcommandnotfound.cn ~]$ unarj e test.arj /home/linux/test
  • 查看test.arj文件的内容
[linux@bashcommandnotfound.cn ~]$ unarj l test.arj
  • 检查test.arj文件是否正确
[linux@bashcommandnotfound.cn ~]$ unarj t test.arj
  • 解压缩test.arj文件并保留原有的路径
[linux@bashcommandnotfound.cn ~]$ unarj x test.arj
  • 显示test.arj文件的版本信息
[linux@bashcommandnotfound.cn ~]$ unarj v test.arj
  • 解压缩test.arj文件并自动覆盖已存在的文件
[linux@bashcommandnotfound.cn ~]$ unarj e -y test.arj
  • 解压缩test.arj文件并保留.arj文件的属性
[linux@bashcommandnotfound.cn ~]$ unarj e -p test.arj
  • 解压缩test.arj文件并转换DOS和UNIX的换行符
[linux@bashcommandnotfound.cn ~]$ unarj e -c test.arj
  • 解压缩test.arj文件并创建目录
[linux@bashcommandnotfound.cn ~]$ unarj e -d test.arj
  • 解压缩test.arj文件并只解压缩最新的文件
[linux@bashcommandnotfound.cn ~]$ unarj e -f test.arj

Linux unarj命令的注意事项

  • unarj命令只能解压缩.arj文件,不能压缩文件为.arj格式,如果需要压缩文件为.arj格式,可以使用arj命令。
  • unarj命令不支持解压缩多卷的.arj文件,如果需要解压缩多卷的.arj文件,可以使用arj命令。
  • 如果在使用unarj命令时出现bash: unarj: command not found的错误,说明没有安装unarj软件包,需要根据不同的Linux发行版安装unarj软件包。

参考资料

  • 1: Linux unarj命令-unzip the .arj file - Linuxstar
  • 2: Linux unarj命令 | 菜鸟教程
  • 3: unarj(1): Unarchive ARJ files - Linux man page
  • 4: unarj命令 – 解压.arj文件 – Linux命令大全(手册)
  • 5: unarj命令 - Linux命令大全 | linux教程

源: 与必应的对话, 2023/11/23
(1) unarj command-unzip the .arj file - Linuxstar. https://linuxstar.info/unarj/.
(2) Linux unarj命令 | 菜鸟教程. https://www.runoob.com/linux/linux-comm-unarj.html.
(3) unarj(1): Unarchive ARJ files - Linux man page. https://linux.die.net/man/1/unarj.
(4) unarj命令 – 解压.arj文件 – Linux命令大全(手册). https://www.linuxcool.com/unarj.
(5) unarj命令 - Linux命令大全 | linux教程. https://linux265.com/course/linux-command-unarj.html.

0

评论区