About 111,000 results
Open links in new tab
  1. How to open a large file with an .tar.xz extension? - Super User

    While xz can only support one file the convention is to bundle a file that is an archive itself, such as those created by the tar or cpio Unix programs. You need to decompress the outer .xz …

  2. Open xz file from the command line in Windows 10 - Stack Overflow

    Mar 2, 2017 · My colleagues using mac or linux open xz files with this line: xz --decompress --stdout "file.csv.xz" On my pc, with windows 10, I get the following error: 'xz' is not recognized …

  3. Error extracting tar.xz files in Windows using command line

    Aug 3, 2022 · I am able to use 7-zip to open the files, but for this I have to manually unzip each file from .xz first and then untar, and this is a bit of a pain. I have previously been able to use a …

  4. linux - Howto unzip ".xz" file with 7z and lzma - Super User

    4 If you are running Ubuntu, you should have the xz-utils installed by default. I am running Ubuntu 10.04, and to extract .xz files, I use the following command: xz -d path/to/file.xz This will …

  5. compression - How to unpack xz file with python which contains …

    Feb 7, 2017 · I have a file, which I can decompress under linux using the following command: unxz < file.xz > file.txt How can I do the same using python? If I use python3 and the …

  6. Cannot decompress .tar.xz file, getting "xz: Cannot exec: No such …

    Cannot decompress .tar.xz file, getting "xz: Cannot exec: No such file or directory" from tar Ask Question Asked 11 years, 3 months ago Modified 4 years, 4 months ago

  7. linux - Decompressed a .xz file and now it has no extension and is …

    Jun 13, 2023 · xz -dv my_directory.xz my_directory and the resulting file is simply my_directory. It has no extension and it's not a directory, but the size corresponds exactly with what the …

  8. Download and extract archive using PowerShell - Super User

    Dec 3, 2019 · To extract a tar.xz file, invoke the tar command with the --extract (-x) option and specify the archive file name after the -f option: tar -xf .\whatever.xz tar auto-detects the …

  9. python - Open .json.xz files - Stack Overflow

    Apr 20, 2020 · 3 This is probably because the compressed data file you have is incomplete/corrupted. The code you have provided works fine for decompressing json.xz files.

  10. Native .tar extraction in Powershell - Stack Overflow

    I have a .tar.gz file that I need to extract. I've handled the gunzip bit with the GzipStream object from System.IO.Compression, but I couldn't find anything for dealing with tarballs in that names...