mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 14:31:13 +00:00
Added medium syndication metadata
This commit is contained in:
parent
79329aae66
commit
387dd491b1
30 changed files with 175 additions and 134 deletions
|
@ -1,10 +1,12 @@
|
|||
---
|
||||
title: "Mount Object Storage Locally using S3 Fuse"
|
||||
date: 2022-02-04T23:39:25-05:00
|
||||
date: 2022-02-04 23:39:25-05:00
|
||||
draft: false
|
||||
tags: ["Storage"]
|
||||
math: false
|
||||
medium_enabled: true
|
||||
medium_post_id: a6add7081378
|
||||
tags:
|
||||
- Storage
|
||||
title: Mount Object Storage Locally using S3 Fuse
|
||||
---
|
||||
|
||||
On most cloud providers, object storage is cheaper than paying for the equivalent size in block storage. Using FUSE, we can mount S3 compatible object storage with the command `s3fs`. Do note, that there are a few downsides with mounting object storage as documented on their [README](https://github.com/s3fs-fuse/s3fs-fuse/blob/master/README.md):
|
||||
|
@ -61,5 +63,4 @@ To mount automatically during reboot, add the following to `/etc/fstab`:
|
|||
bucketname /mnt/mountpoint fuse.s3fs _netdev,allow_other,url=https://us-east-1.linodeobjects.com 0 0
|
||||
```
|
||||
|
||||
After editing `/etc/fstab` you can run `sudo mount -a` in order for it to load and mount any new entries.
|
||||
|
||||
After editing `/etc/fstab` you can run `sudo mount -a` in order for it to load and mount any new entries.
|
Loading…
Add table
Add a link
Reference in a new issue