mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #1744] Problem mounting s3 using /etc/fstab #895
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#895
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 @korulis on GitHub (Aug 18, 2021).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/1744
Additional Information
I am trying to mount using this content in my
/etc/fstabVersion of s3fs being used (s3fs --version)
Version of fuse being used (pkg-config --modversion fuse, rpm -qi fuse, dpkg -s fuse)
Kernel information (uname -r)
GNU/Linux Distribution, if applicable (cat /etc/os-release)
s3fs command line used, if applicable
/etc/fstab entry, if applicable
s3fs syslog messages (grep s3fs /var/log/syslog, journalctl | grep s3fs, or s3fs outputs)
sudo grep s3fs /var/log/syslog:
journalctl | grep s3fs - no recent messages.
Details about issue
I am aware of this ticket. https://github.com/s3fs-fuse/s3fs-fuse/issues/1018
but when I
sudo apt updateand
sudo apt upgradeor just
sudo apt install s3fs --reinstall, the s3fs package just stays at the same version
s3fs (1.82-1)Indeed if I can read this correctly 1.82-1 is the latest version for s3fs for ubuntu 18.04 https://packages.ubuntu.com/bionic/s3fs.
So how do I install a higher version, like 1.85 or 1.89?
@gaul commented on GitHub (Aug 19, 2021):
Sorry we cannot support old versions. You can try compiling s3fs from source or upgrading your Ubuntu version.
Unfortunately Ubuntu does not backport s3fs versions to older LTS distributions. You can try filing a bug on Launchpad and ask for an SRU.
@korulis commented on GitHub (Aug 19, 2021):
Hi @gaul,
thank you for your prompt answer.
What other info could I provide you?
Do I understand correctly, your suggested solution for me is to upgrade my ubuntu VM from 18.04 to 20.04?
Are there any other paths I can take in order to facilitate consistent continuous sync of files between my VM folder and my S3 bucket?
@korulis commented on GitHub (Aug 19, 2021):
I think I am going to install docker,
use my Ubuntu 18 as volume for an Ubuntu 20 container
and setup fstab inside that Ubuntu 20 container.
@korulis commented on GitHub (Sep 7, 2021):
Apparently the issue was that s3 bucket was somehow misconfigured. I created a new s3 bucket and the sync with fstab config worked like a charm.
BTW. The idea with docker did not work. All the ubuntu docker images I could find were missing valid fstab configuration.. something about virtual devices, I guess?