Updated on 2022-05-17 GMT+08:00

Downloading and Installing obsfs

For common Linux distributions, such as CentOS 7 and Ubuntu 16, there are obsfs installation packages available for download. After downloading obsfs, configure the Linux environment and then use the mount command to mount the parallel file system.

Downloading obsfs Software Packages

Installing obsfs

  1. On a PC running Windows, download the obsfs software package based on the version of the Linux distribution.
  2. Use a common cross-platform transmission tool (such as WinSCP) to transfer the software package to your Linux OS.
  3. Run the following decompression command on the computer running Linux:
    tar -xzvf absolute path of the obsfs software package /obsfs_xxx.tar.gz

    You can also run the following command to decompress the software package to a specified directory:

    tar -xzvf Absolute path of obsfs software package/obsfs_xxx.tar.gz -C Specified directory
  4. Go to the directory where the software package is decompressed and run the following command to install obsfs:
    bash install_obsfs.sh

    After you run the installation command, crontab will add a scheduled task for compressing and dumping obsfs logs. The dump path is /var/log/obsfs/.

    An example of such task added by crontab: */10 * * * * [-f /opt/dfv/obsfs/obsfs_log_rotate.sh] && bash /opt/dfv/obsfs/obsfs_log_rotate.sh

Configuring Operating 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

Verification

Go to the directory where obsfs has been installed and run the following command to verify the installation.

./obsfs --version

If the obsfs version is displayed in the command output, obsfs has been installed, and you can start initializing and using obsfs. libfuse Installation Guide