Não é possível gerar o arquivo .tar

2

Como eu faço um .tar da árvore de diretórios atual no Win10? Tentando tar -c Archive.tar * e recebendo tar: Failed to open '\.\tape0' .

C:\>tar -h
tar(bsdtar): manipulate archive files
First option must be a mode specifier:
  -c Create  -r Add/Replace  -t List  -u Update  -x Extract
Common Options:
  -b #  Use # 512-byte records per I/O block
  -f <filename>  Location of archive (default \.\tape0)
  -v    Verbose
  -w    Interactive
Create: tar -c [options] [<file> | <dir> | @<archive> | -C <dir> ]
  <file>, <dir>  add these items to archive
  -z, -j, -J, --lzma  Compress archive with gzip/bzip2/xz/lzma
  --format {ustar|pax|cpio|shar}  Select archive format
  --exclude <pattern>  Skip files that match pattern
  -C <dir>  Change to <dir> before processing remaining files
  @<archive>  Add entries from <archive> to output
List: tar -t [options] [<patterns>]
  <patterns>  If specified, list only entries that match
Extract: tar -x [options] [<patterns>]
  <patterns>  If specified, extract only entries that match
  -k    Keep (don't overwrite) existing files
  -m    Don't restore modification times
  -O    Write entries to stdout, don't restore to disk
  -p    Restore permissions (including ACLs, owner, file flags)
bsdtar 3.3.2 - libarchive 3.3.2 zlib/1.2.5.f-ipp
    
por flywire 20.09.2018 / 05:04

1 resposta

1
-f <filename>  Location of archive (default \.\tape0)

Você perdeu -f , então tar usou o local padrão (tratando Archive.tar como um arquivo a ser arquivado). Seu comando deve ser como

tar -cf Archive.tar *

embora eu não conheça as regras de uso do PowerShell de * . Você pode tentar passar -- antes de * para fazer tar parar as opções de análise, espero que seu tar entenda isso. Isto é no caso de * retornar algo cuja parte inicial se parece com opções para tar .

    
por 20.09.2018 / 05:09