mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[GH-ISSUE #2207] tar -xvf fails on mounted bucket #1120
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#1120
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @whitepiratebaku on GitHub (Jul 6, 2023).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2207
Additional Information
Version of s3fs being used (
s3fs --version)V1.92 (commit:unknown)
Version of fuse being used (
pkg-config --modversion fuse,rpm -qi fuseordpkg -s fuse)2.9.2
Kernel information (
uname -r)3.10.0-1160.92.1.el7.x86_64
GNU/Linux Distribution, if applicable (
cat /etc/os-release)CentOS Linux 7 (Core)
How to run s3fs, if applicable
[] command line : sudo s3fs bucket_name /opt/minio-bucket -o url=https://minio.example.com -o use_path_request_style -o allow_other
[] /etc/fstab : bucket_name /opt/minio-bucket fuse.s3fs _netdev,allow_other,use_path_request_style,url=https://minio.example.com 0 0
s3fs syslog messages (
grep s3fs /var/log/syslog,journalctl | grep s3fs, ors3fs outputs)Details about issue
Well basicly, I mount minio bucket, copy some folder to it and make tarball of it with "tar -zvf" and another script needs to untar it with "tar -xvf" but gets errors like following.
tar: full-2023-07-05-16-35-21: Cannot utime: No such file or directory tar: full-2023-07-05-16-35-21: Cannot change ownership to uid 0, gid 0: No such file or directory tar: full-2023-07-05-16-35-21: Cannot change mode to rwxr-x---: No such file or directory tar: Exiting with failure status due to previous errorsalso noticed that , when I do ls folders under bucket not visible, but I can do cd folde_name.
@gaul commented on GitHub (Sep 8, 2023):
Can you test again with 1.93? This should address the invisible folder regression and may address the tar problem.