Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Looking for best and budget friendly object storage?

Suggest the best and budget-friendly object storage or storage box. At least 1 to 2TB

Comments

  • TrKTrK Member
    edited January 2025

    Backblaze b2....... For object storage and go with @labze @host_c @crunchbits @servarica_hani for storage boxes depending on your needs.

    Thanked by 1host_c
  • Backblaze B2, iDrive E2, Hetzner, Cloudflare R2, Wasabi.

    Or you can ship a drive to zfs.rent

  • @TrK said:
    go with @labze @host_c @crunchbits @servarica_hani for storage boxes depending on your needs.

    I'd suggest the same and either install something like MinIO, or just go ahead with a "regular" storage VPS.
    Less complexity, more flexibility.

    Thanked by 1host_c
  • TrKTrK Member

    @DataRecovery said:

    @TrK said:
    go with @labze @host_c @crunchbits @servarica_hani for storage boxes depending on your needs.

    I'd suggest the same and either install something like MinIO, or just go ahead with a "regular" storage VPS.
    Less complexity, more flexibility.

    Instead of minio I guess garage would be better in VMs..... I haven't tried the garage myself.... Might just do it in a VM I got my hands on thanks to @NDTN forgetting to limit the coupon.

    Thanked by 1commercial
  • @TrK said:

    @DataRecovery said:

    @TrK said:
    go with @labze @host_c @crunchbits @servarica_hani for storage boxes depending on your needs.

    I'd suggest the same and either install something like MinIO, or just go ahead with a "regular" storage VPS.
    Less complexity, more flexibility.

    Instead of minio I guess garage would be better in VMs..... I haven't tried the garage myself….

    #!/bin/bash
    
    # Update package list and install dependencies
    sudo apt-get update
    sudo apt-get install -y curl wget gnupg2 software-properties-common
    
    # Install Rust (required for building Garage)
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
    source $HOME/.cargo/env
    
    # Install Garage
    cargo install garage
    
    # Verify installation
    garage --version
    
    # Create a systemd service file for Garage
    cat <<EOF | sudo tee /etc/systemd/system/garage.service
    [Unit]
    Description=Garage S3-Compatible Object Storage
    After=network.target
    
    [Service]
    Type=simple
    ExecStart=/home/$USER/.cargo/bin/garage --config /etc/garage/config.toml
    Restart=on-failure
    User=$USER
    Group=$USER
    
    [Install]
    WantedBy=multi-user.target
    EOF
    
    # Reload systemd and enable Garage service
    sudo systemctl daemon-reload
    sudo systemctl enable garage.service
    
    # Start Garage service
    sudo systemctl start garage.service
    
    echo "Garage installation complete. The service is running."
    
    Thanked by 2TrK host_c
Sign In or Register to comment.