Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 57387 invoked from network); 23 Aug 2008 00:56:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Aug 2008 00:56:45 -0000 Received: (qmail 60174 invoked by uid 500); 23 Aug 2008 00:56:44 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 60146 invoked by uid 500); 23 Aug 2008 00:56:44 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 60132 invoked by uid 99); 23 Aug 2008 00:56:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Aug 2008 17:56:44 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Aug 2008 00:55:55 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 2DF85118DB for ; Sat, 23 Aug 2008 00:55:55 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: core-commits@hadoop.apache.org Date: Sat, 23 Aug 2008 00:55:54 -0000 Message-ID: <20080823005554.5220.92066@eos.apache.org> Subject: [Hadoop Wiki] Update of "MountableHDFS" by petewyckoff X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification. The following page has been changed by petewyckoff: http://wiki.apache.org/hadoop/MountableHDFS ------------------------------------------------------------------------------ = Mounting HDFS = + {{{ + [mymachine] ~ > df -kh /export/hdfs/ + Filesystem Size Used Avail Use% Mounted on + fuse 4.1P 642T 3.5P 21% /export/hdfs + [mymachine] ~ > ls /export/hdfs/ + home tmp Trash user usr var + }}} + + + - These projects allow HDFS to be mounted (on most flavors of Unix) as a standard file system using the mount command. Once mounted, the user can operate on an instance of hdfs using standard Unix utilities such as 'ls', 'cd', 'cp', 'mkdir', 'find', 'grep', etc. + These projects allow HDFS to be mounted (on most flavors of Unix) as a standard file system using the mount command. Once mounted, the user can operate on an instance of hdfs using standard Unix utilities such as 'ls', 'cd', 'cp', 'mkdir', 'find', 'grep', or use standard Posix libraries like open, write, read, close from C, C++, Python, Ruby, Perl, Java, bash, etc. == Options == @@ -12, +22 @@ == Fuse-DFS == - (currently this is just the README for fuse-dfs) + Supports reads, writes, and directory operations (e.g., cp, ls, more, cat, find, less, rm, mkdir, mv, rmdir). Does not support touch, chmod, chown, and it does not respect permissions and shows all files as owned by 'nobody'. + === BUILDING ===