web-dev-qa-db-ja.com

シェルでファイルを.rar圧縮するにはどうすればよいですか?

.Zip(p7Zip-full)、. rar(unrar-free)など、シェルを介してさまざまな種類の拡張機能を解凍する必要がありました。

しかし、その反対(圧縮)については、適切なコマンドを見つけるのに苦労しています。 RARについては、候補者はいないと述べています。

$ Sudo apt install -y --install-recommends rar       
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package rar is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'rar' has no installation candidate

そして、p7Zip-rarをインストールするためにインストール中にp7Zip-fullが私に提案したように

$ Sudo apt install -y --install-recommends p7Zip-full
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  p7Zip-rar
The following NEW packages will be installed:
  p7Zip-full
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 993 kB of archives.
After this operation, 3,943 kB of additional disk space will be used.

それから私もそれをインストールしようとしました。

$ Sudo apt install -y --install-recommends p7Zip-rar 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package p7Zip-rar is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'p7Zip-rar' has no installation candidate

驚いたことに、候補者もいない。

RARはプライベートな拡張機能です。圧縮する適切なコマンドを見つけるのが難しいのはなぜですか。そして、それがそうであるなら、どうすればシェルでファイルを.rar圧縮できますか?

編集:1 PS:@steeldriverに回答します。ここでは、sources.listの状態 enter image description here

マルチバース参照がありませんか?

1
xiscode

最近、コマンドrarを使用してシェルでファイルを圧縮することができました。 Dunnoは、パッケージの更新期間が原因で使用できなくなった場合。

ありがとう NoviceRAR Archive Ubuntu。 ガイド

0
xiscode