Updated on 2025-02-05 GMT+08:00

Downloading and Installing obsfs

obsfs has been taken offline since July 1, 2024. After that, OBS will no longer provide maintenance and customer support for obsfs. If you still want to mount an OBS bucket to your local file system in Linux, use s3fs. We apologize for any inconvenience and appreciate your understanding. For any questions, submit a service ticket for technical support.

Configuring a Runtime Environment

The operating environment of obsfs depends on the software packages such as openssl-devel, fuse, and fuse-devel. Before running obsfs, you need to run commands to configure the dependent environment.

  • obsfs supports libfuse 2.9.7, 2.9.8, or 2.9.9. If your system has a different version of libfuse installed, remove it and install the correct version by referring to libfuse Installation Guide.
  • You can view the libfuse version by running the system's version query command or run the following command:
    find / -name libfuse.so*
  • CentOS 7
    yum install -y openssl-devel fuse fuse-devel
  • Ubuntu 16
    apt-get install -y libfuse-dev libcurl4-openssl-dev