From owner-freebsd-questions@FreeBSD.ORG Wed Oct 22 18:29:32 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 091A3663 for ; Wed, 22 Oct 2014 18:29:32 +0000 (UTC) Received: from mail-vc0-x22c.google.com (mail-vc0-x22c.google.com [IPv6:2607:f8b0:400c:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C01EAF2B for ; Wed, 22 Oct 2014 18:29:31 +0000 (UTC) Received: by mail-vc0-f172.google.com with SMTP id lf12so2398469vcb.31 for ; Wed, 22 Oct 2014 11:29:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=+/gSdXDVt+sPsucS/t3qcT2mTdGh1nK0aaFLIZHsMF4=; b=PmJrEARs856rYZnA9bnlnK20l3dWyjKs65j3AojNRvqFti7pgsyhCmZyTRO3uF6sTD GooOSRWpcWw89Etd8wFhE5XLSi8G74iQbBHxvIZBze1RrDCxrVjHJTVqAqiYIPQTbbQD tx4g2cX5hg4NbBaCReFWEqlrLo65KM8GE1w43ukvFnVhdD5AOyPjKiBEVhQhuL/TAfIh ZbKpjKKD0il9DLTfGm7enbnlFjysJ+/Rq9jhWHTz6UT2hp5cBA7CNfzaN+ck1unfkCLe Pdud5UBfJpc8i5tTlfCbBcLV7svl6YZU8MdTwtbwGbRDYBdVDh4pPbbnQqv3QjXqGHWO YRCg== MIME-Version: 1.0 X-Received: by 10.220.82.199 with SMTP id c7mr2490500vcl.61.1414002570844; Wed, 22 Oct 2014 11:29:30 -0700 (PDT) Received: by 10.31.52.214 with HTTP; Wed, 22 Oct 2014 11:29:30 -0700 (PDT) Date: Wed, 22 Oct 2014 14:29:30 -0400 Message-ID: Subject: need help installing / configuring s3fs-fuse on FreeBSD 10 From: "firmdog@gmail.com" To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Oct 2014 18:29:32 -0000 Trying to get s3fs working on my FreeBSD 10 server running on Amazon AWS EC2. I want to mount my Amazon S3 bucket. Tried both installing the port and compiling from source and both are not going well. 1. Installing the port When I run "pkg install fusefs-s3fs" on FreeBSD 10, nothing happens. Just this output: # pkg install fusefs-s3fs Updating FreeBSD repository catalogue... FreeBSD repository is up-to-date. All repositories are up-to-date. Checking integrity... done (0 conflicting) The following 1 packages will be affected (of 0 checked): New packages to be INSTALLED: fusefs-s3fs: 1.71_2 The process will require 284 KB more space. Proceed with this action? [y/N]: y [1/1] Installing fusefs-s3fs-1.71_2: 100% # That's all the happens. No install instructions displayed about rc.conf at all, which is odd. I put fusefs_enable="YES" into rc.conf anyway. When I try to mount the s3 bucket I get this error: fuse: failed to open fuse device: No such file or directory I followed these instructions: http://superuser.com/questions/327661/how-to-mount-amazon-s3-bucket-to-a-directory-on-freebsd "/usr/local/etc/rc.d/fusefs" did not get installed. No clue what to do next. Any ideas? 2. Also tried to install the code from source. Here are the relevant links: https://github.com/s3fs-fuse/s3fs-fuse https://github.com/s3fs-fuse/s3fs-fuse/wiki/Fuse-Over-Amazon ./autogen.sh ./configure checking build system type... amd64-unknown-freebsd10.0 checking host system type... amd64-unknown-freebsd10.0 checking target system type... amd64-unknown-freebsd10.0 checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for g++... no checking for c++... c++ checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for style of include used by make... GNU checking dependency style of c++... gcc3 ./configure: 3628: Syntax error: word unexpected (expecting ")") Can anyone help me compile from source? Am I doing something wrong?