Linux上でシェルコマンドで圧縮をしたり、フル時んですが。簡単にコマンドを整理しました。 zip、tar、tar.gzのファイルを解凍するコマンドを紹介します。
郵便番号
unzipパッケージのインストール
$ sudo apt install unzip
圧縮
-r
オプションは、ターゲットフォルダが含まれているサブフォルダをすべてを圧縮するという意味です。
$ zip -r [output file name] [target folder]
# ex) zip -r abc.zip ./abc
解凍
unzipで解凍することができ、特定のフォルダに緩めたい -d
オプションを使用します。
$ unzip [file name]
$ unzip [file name] -d [target folder]
# ex) unzip abc.zip -d ./myfolder
タール
圧縮
$ tar -cvf [output file name] [target1] [target2] [...]
# ex) tar -cvf abc.tar ./folder1 ./folder2 ./folder3
# c: --create create a new archive
# v: --verbose verbosely list files processed
# f: --file=ARCHIVE use archive file or device ARCHIVE
解凍
$ tar -xvf [file name]
# ex) tar -xvf abc.tar
# e: --extract, --get extract files from an archive
tar.gz圧縮
$ tar -zcvf [output file name] [target] [target2] [...]
# ex) tar -zcvf abc.tar.gz ./folder1
# z: --gzip, --gunzip, --ungzip filter the archive through gzip
tar.gz解凍
$ tar -zxvf [file name]
# ex) tar -zxvf abc.tar.gz
Related Posts
- Linux - Hardware情報を示すコマンド
- Virtualenvインストールとセッティングする方法(Ubuntu)
- Linux - ファイル更新日時 確認
- Vi/Vimから1行または複数行を削除する方法
- UbuntuでGoogleドライブを使用する(ローカルフォルダにマウント)
- Ubuntuで利用可能なテキストエディタの紹介
- Ubuntu(Linux) - RAM(メモリ)サイズの確認
- Ubuntu(Linux)でMicrosoft Edgeブラウザをインストールする方法
- Ubuntu(Linux)からVisual Studio Codeをインストールする
- UbuntuでRight ALTをハンヨンキーに変換する
- Ubuntu - Python 3.9のインストール方法
- Proxy環境でpipを使用する方法
- Linux - IPアドレスを確認
- Linux - MAC Addressを確認する
- Linux - findコマンド
- Ubuntu 20.04 - SSHのインストールと接続方法
- apt remove、purge、autoremoveコマンドの違い
- Ubuntu 20.04 - OpenJDK 11のインストール、削除、
- Ubuntu 20.04 - VLC Playerのインストール
- Ubuntu - kernel更新する方法(manually)
- Bashシェルスクリプトファイルの絶対パスを取得
- Ubuntu18.04のネットワークイーサネットの名前を変更する方法(enp?をeth0に変更)
- Linux - chmodコマンドを使用する方法
- Linuxの - スィベン(Shebang)は何ですか?
- Linuxファイル圧縮コマンドまとめ
- UbuntuのデスクトップにShortcutアイコンを作成する方法
- UbuntuでPythonのバージョンを変更する方法