From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Steve French" Subject: Re: where is remount? Date: Fri, 16 May 2008 22:08:37 -0500 Message-ID: <524f69650805162008k7ddd8c8bq12d35c9427e858f6@mail.gmail.com> References: <524f69650805161602o1a49c4f4v7597b1b2a7e39f17@mail.gmail.com> <200805171018.HBA05176.OStJMFQFFOLHOV@I-love.SAKURA.ne.jp> <524f69650805161836q63e455fcxc4db01223e087614@mail.gmail.com> <200805171049.BJF21135.HOFFQMVtFSOJOL@I-love.SAKURA.ne.jp> <524f69650805161951v6886bbd2iaf8ec646cf24dbb8@mail.gmail.com> <20080517030103.GA24716@parisc-linux.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "Tetsuo Handa" , linux-fsdevel@vger.kernel.org To: "Matthew Wilcox" Return-path: Received: from fg-out-1718.google.com ([72.14.220.156]:49739 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753081AbYEQDIj (ORCPT ); Fri, 16 May 2008 23:08:39 -0400 Received: by fg-out-1718.google.com with SMTP id 19so913146fgg.17 for ; Fri, 16 May 2008 20:08:37 -0700 (PDT) In-Reply-To: <20080517030103.GA24716@parisc-linux.org> Content-Disposition: inline Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Mystery solved ,,, It is a bash function (although the bash function seems fairly useless) ... Thank you .... Thank you ... stevef@smfhome2:~> type -a remount remount is a function remount () { /bin/mount -o remount,${1+"$@"} } On Fri, May 16, 2008 at 10:01 PM, Matthew Wilcox wrote: > On Fri, May 16, 2008 at 09:51:51PM -0500, Steve French wrote: >> that is the point ... strace doesn't work on that command and I don't >> even know the syntax of the utility "remount" It seems to be >> something builtin to bash - very odd .... > > Assuming you're using bash, try type -a remount -- Thanks, Steve