惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
The Cloudflare Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
F
Fortinet All Blogs
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
小众软件
小众软件
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Tar Files Created on macOS Display Errors When Extracting...
2026-04-30 · via Hacker News

I use my MacBook as my development machine and Debian / Ubuntu / Red Hat Linux at work and on this website. I occasionally create tarballs, or tar.gz and tgz files on Mac, which are then deployed on Linux servers. When I untar the tar.gz file on the Linux server, it may throw errors or warnings.

How to exclude ._ files in tar.gz created on  macOS

Creating tar files

I create tar.gz files the regular way. For example, if I want to create a tar.gz file of a directory pix containing pictures.

tar -cvzf pix.tar.gz pix

That command will create a tar gzipped file pix.tar.gz.

SCP to Linux server

I will scp this tar.gz to myserver.tld as user and under the /tmp directory

scp pix.tar.gz user@myserver.tld:/tmp/

Now, I will extract this gzipped tar file on the Linux server.

cd /tmp
tar -xzvf pix.tar.gz 

Output (snippet):

...
pix/TODO/._IMG_3110.jpeg
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.quarantine'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'
pix/TODO/IMG_3110.jpeg
pix/TODO/._IMG_3113.jpeg
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.quarantine'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'
pix/TODO/IMG_3113.jpeg
pix/TODO/._IMG_3115.jpeg
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.quarantine'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'
pix/TODO/IMG_3115.jpeg
pix/TODO/._IMG_3114.jpeg
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.quarantine'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'
pix/TODO/IMG_3114.jpeg
...

Warnings and errors when extracting tar.gz or tgz files

As we can see, the tar file contained several new files starting with ._. These appear to be duplicates of existing files.

You may or may not see errors and warnings when extracting files that were tarred on macOS.

On one occasion, I saw warnings like this:

tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemTextContentLanguage'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseVersion'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseLabels'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseConfidences'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'

Another time, I got these warnings:

tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.quarantine'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.lastuseddate#PS'

And then, this:

tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemTextContentLanguage'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseVersion'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseLabels'
tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.metadata:kMDItemKeyphraseConfidences'

For some reason, the default BSD tar program on macOS seems to create and add these new files. There are two ways to get create a clean tar file.

Solution 1: Use --no-xattrs while creating the tar

While creating the tar file, you can add the attribute --no-xattrs. Doing this will prevent the extra files from getting added.

Previously, we did this:

tar -cvzf pix.tar.gz pix

Now, we will do this:

tar -cvzf --no-xattrs pix.tar.gz pix

This is the simplest way.

Now, SCP it to your Linux server and untar / gunzip it. You should not find the extra files or any errors or warnings.

tar -xzvf pix.tar.gz

Solution 2: Use --disable-copyfile while creating the tar

Similar to the previous solution, in this case, we will use the --disable-copyfile option.

tar -cvzf --disable-copyfile pix.tar.gz pix

Now, SCP the pix.tar.gz file to your Linux server and extract it. You should not find the extra files or any errors or warnings.

tar -xzvf pix.tar.gz

Solution 3: Install and use gnu-tar instead of bsdtar

This is more of a permanent solution, in that you don't have to remember to type the extra optional arguments.

On your macOS, run this command to verify that you are using bsdtar. You should get something like this.

$ tar --version
bsdtar 3.5.3 - libarchive 3.5.3 zlib/1.2.12 liblzma/5.4.3 bz2lib/1.0.8 

Check in which directory bsdtar is installed:

$ which tar
/usr/bin/tar

Install gnu-tar

Now, install gnu-tar using Homebrew.

$ brew install gnu-tar

After a few minute, gnu-tar will be installed in your macOS. It will get installed in this location:

/usr/local/opt/gnu-tar/libexec/gnubin/tar

Verify gnu-tar installation

You can verify gnu-tar by running this:

$ /usr/local/opt/gnu-tar/libexec/gnubin/tar --version
tar (GNU tar) 1.35
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.

Make gnu-tar your default tar

Now, you can make that your default by setting the path to gnu-tar earlier than bsdtar in your ~/.bash_profile file.

Edit your ~/.bash_profile file.

If you are using a Mac with an Intel processor, add this line:

export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"

If you are using a Mac with an Apple Silicon M1, M2, M3 or M4 processor, add this line:

export PATH="/opt/homebrew/opt/gnu-tar/libexec/gnubin:$PATH"

Save and quit your editor and restart your Terminal session.

Check that gnu-tar is default tar, and tar again

Test and see if tar --version returns GNU tar instead of BSD tar.

$ tar --version
tar (GNU tar) 1.35
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.

If you get a similar response, then recreate the tar file the regular way.

tar -cvzf pix.tar.gz pix

SCP it to your Linux server and untar / gunzip it. You should not find the extra files or any errors or warnings.

Conclusion

I hope the steps in this blog post worked for you. This post will be updated whenever there is anything relevant. Feel free to contact me if you have any questions or suggestions.

Related Posts

If you have any questions, please contact me at arulbOsutkNiqlzziyties@gNqmaizl.bkcom. You can also post questions in our Facebook group. Thank you.

Disclaimer: Our website is supported by our users. We sometimes earn affiliate links when you click through the affiliate links on our website.

Last Updated: December 06, 2024.     This post was originally written on December 05, 2024.