我正在使用 s3fs 在我的 Ubuntu 服务器上安装一个 s3 存储桶:
sudo apt-get install s3fs
sudo vim /etc/passwd-s3fs // <--put user access key and secret key in this file
sudo chmod 640 /etc/passwd-s3fs // <-- change permission to password file
sudo vim /etc/fuse.conf // uncomment user_allow_other
现在挂载 s3 存储桶:
sudo s3fs -o allow_other s3-bucket-name /home/myuser/s3
我想确保重新启动后自动挂载存储桶,我该怎么做?
您需要添加一行
/etc/fstab
类似于:在此处查看其他示例:
https://github.com/s3fs-fuse/s3fs-fuse#examples