# images directory

Published articles for images directory.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## New Chainguard Images July-September 2024: Hardened, minimal containers

DevFeed: [New Chainguard Images July-September 2024: Hardened, minimal containers](<https://devfeed.tech/articles/new-chainguard-images-july-september-2024-hardened-minimal-containers-13178.md>)

Original publisher: [Read original article](<https://www.chainguard.dev/unchained/new-chainguard-images-july-september-2024-hardened-minimal-containers>)

Published: 2024-10-03T00:00:00Z

Content type: release

Language: en

Sources: [Chainguard: Unchained](<https://devfeed.tech/sources/chainguard-unchained.md>)

Topics: [chainguard images](<https://devfeed.tech/topics/chainguard-images.md>), [releases](<https://devfeed.tech/topics/releases.md>), [Containers](<https://devfeed.tech/topics/containers.md>), [GitLab](<https://devfeed.tech/topics/gitlab.md>), [Amazon Elastic Kubernetes Service](<https://devfeed.tech/topics/amazon-elastic-kubernetes-service.md>), [PyTorch](<https://devfeed.tech/topics/pytorch.md>)

Tags: [amazon-eks](<https://devfeed.tech/tags/amazon-eks.md>), [chainguard](<https://devfeed.tech/tags/chainguard.md>), [chainguard-images](<https://devfeed.tech/tags/chainguard-images.md>), [container-images](<https://devfeed.tech/tags/container-images.md>), [container-registry](<https://devfeed.tech/tags/container-registry.md>), [containers](<https://devfeed.tech/tags/containers.md>), [gitlab](<https://devfeed.tech/tags/gitlab.md>), [images-directory](<https://devfeed.tech/tags/images-directory.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [pytorch](<https://devfeed.tech/tags/pytorch.md>), [releases](<https://devfeed.tech/tags/releases.md>)

### AI overview

Chainguard reports approximately 192 new hardened, minimal images released from July through September 2024, including FIPS-enabled images and images for GitLab, Amazon EKS, and PyTorch.

### Source excerpt

Check out Chainguard's new image releases over summer 2024, including container images for GitLab, Amazon EKS, and PyTorch applications.

## How do I unzip multiple / many files under Linux?

DevFeed: [How do I unzip multiple / many files under Linux?](<https://devfeed.tech/articles/how-do-i-unzip-multiple-many-files-under-linux-41941.md>)

Original publisher: [Read original article](<https://www.cyberciti.biz/faq/linux-unix-shell-unzipping-many-zip-files/>)

Author: Vivek Gite

Published: 2024-09-27T19:56:29Z

Content type: tutorial

Language: en

Sources: [nixCraft: Linux Tips, Hacks, Tutorials, And Ideas In Blog Format (RSS/FEED)](<https://devfeed.tech/sources/nixcraft-linux-tips-hacks-tutorials-and-ideas-in-blog-format-rss-feed.md>)

Topics: [Linux](<https://devfeed.tech/topics/linux.md>), [Zip](<https://devfeed.tech/topics/zip.md>), [Bash](<https://devfeed.tech/topics/bash.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Scripting, bash](<https://devfeed.tech/topics/scripting-bash.md>), [Shell](<https://devfeed.tech/topics/shell.md>), [file](<https://devfeed.tech/topics/file.md>)

Tags: [bash](<https://devfeed.tech/tags/bash.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [easy](<https://devfeed.tech/tags/easy.md>), [error](<https://devfeed.tech/tags/error.md>), [files](<https://devfeed.tech/tags/files.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [images-directory](<https://devfeed.tech/tags/images-directory.md>), [linux](<https://devfeed.tech/tags/linux.md>), [shell](<https://devfeed.tech/tags/shell.md>), [suse](<https://devfeed.tech/tags/suse.md>), [unix](<https://devfeed.tech/tags/unix.md>), [wild](<https://devfeed.tech/tags/wild.md>), [zip](<https://devfeed.tech/tags/zip.md>)

### AI overview

A tutorial explains how to extract multiple ZIP archives on Linux and Unix-like systems. It covers why `unzip *.zip` can fail when the shell expands the wildcard, quoting or escaping the wildcard, Bash loops, and a `find`-based method for filenames containing spaces or unusual characters.

### Source excerpt

I have lots of files in a directory called /disk2/images/. All files are in zip file format, so I am using the following command to extract zip files: unzip *.zip The command result into an error which read as follows: caution: filename not matched How do I unzip multiple or many zip files under a Linux/Unix-like system? Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How do I unzip multiple / many files under Linux? appeared first on nixCraft.