this post was submitted on 18 Sep 2023
822 points (98.0% liked)

Linux

47231 readers
1239 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
 
(page 3) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 11 months ago (1 children)

I just use atool (archive tool) instead. It works the same for any common compression format (tar, gzip, zip, 7zip, rar, etc) and comes with handy aliases like apack and aunpack obsoleting the need to memorize options.

[–] [email protected] 2 points 11 months ago (2 children)
[–] [email protected] 2 points 11 months ago

ouch stands for Obvious Unified Compression Helper.

great name

[–] [email protected] 0 points 11 months ago (1 children)
[–] [email protected] 2 points 11 months ago (1 children)

It seems like it supports LZMA files which I believe is what 7z files are?

[–] [email protected] 0 points 11 months ago* (last edited 11 months ago)

Lzma is a compression algorithm, not (just) a file format

.7z files support lzma compression, but do not use it exclusively

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago)

I've written a CLI tool in Rust as a front end to tar with gzip called Targez.

It can definitely just be done with an alias instead, but you can give it a try if you prefer something installable.

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago)

Or -I 'compress-command' -cf ... if not supported.

[–] [email protected] 2 points 11 months ago

Nowaday I have ChatGPT spew me command. I usually do a quick validation before running. Nevertheless, most of simple operations are correct so I don't need to.

I then note the command to my persional gist cheatsheet. Next time, since the command is "cached", I'll be able to be productive quicker.

So much better than googling.

[–] [email protected] 2 points 11 months ago (2 children)

So a serious question from someone who can't remember console commands ever despite using them constantly.

Why are so many linux CLI commands set up with defaults that no one ever uses? Like if you pretty much always need -f, -v is often used, and --auto-compress is needed to recognize type by extension. Why aren't those the defaults to just using tar?

A lot of applications I find are like this too, they don't come with defaults that work or that anyone would ever use.

load more comments (2 replies)
[–] [email protected] 2 points 11 months ago

Damn, I'm using the "tape archiver" (this is what tar means) since I installed HPUX8 in the 90s, from tape, yes...

[–] [email protected] 2 points 11 months ago

OMG always assumed that -c always stands for "compress" and I always placed .gz at the end to remember to place -x when extracting

[–] [email protected] 2 points 11 months ago (2 children)

I always use tldr for these things, super handy to have.

load more comments (2 replies)
[–] [email protected] 1 points 1 year ago

great, now how do I use it together with the 'feather' command?

[–] [email protected] 1 points 11 months ago (1 children)

Don't you have to specify the compression algorithm when extracting? I always use tar -xzf for gzip files and if I remove -z it just fails.

[–] [email protected] 2 points 11 months ago

I've been using only xf for a long time now. Don't remember ever getting an error from it in the last years. Maybe tar can now check the magic number or something to figure out what the format is?

[–] [email protected] 1 points 1 year ago

Do more like this (・へ・)

load more comments
view more: ‹ prev next ›