this post was submitted on 27 Dec 2022
0 points (50.0% liked)

Linux

47362 readers
907 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I often make a lot of little cheat sheets that I often use as a quick reminder of the tools I use often enough that they can find there way into my daily workflow, but sometimes I need a little refresher.

Today's refresher: tar

top 3 comments
sorted by: hot top controversial new old
[–] simsymbiote@midwest.social 1 points 2 years ago

Love this! I find myself doing this a lot as well but usually just searching for pages like yours.

Small feedback, I think it may be useful to have a full recap of the commands listed again at the end so they aren't scattered throughout the page only but otherwise I think this was a great read!

[–] dressupgeekout@lemmy.ml 1 points 2 years ago (1 children)

Mmmpf, tar czf archive.tar.xz directory is Just Wrong to me. The "z" means gzip! Use "J" if you meant to use xz compression!

[–] Helix@feddit.de 1 points 2 years ago* (last edited 2 years ago)

Or use tar caf to have it autodetect the type based on the filename.