From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.236.105.143 with SMTP id k15cs206579yhg; Thu, 21 Jul 2011 04:49:40 -0700 (PDT) Return-Path: <9front+bncCODLkubXHBC-pKDxBBoE5eiYHQ@googlegroups.com> Received-SPF: pass (google.com: domain of 9front+bncCODLkubXHBC-pKDxBBoE5eiYHQ@googlegroups.com designates 10.217.0.129 as permitted sender) client-ip=10.217.0.129; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 9front+bncCODLkubXHBC-pKDxBBoE5eiYHQ@googlegroups.com designates 10.217.0.129 as permitted sender) smtp.mail=9front+bncCODLkubXHBC-pKDxBBoE5eiYHQ@googlegroups.com; dkim=pass header.i=9front+bncCODLkubXHBC-pKDxBBoE5eiYHQ@googlegroups.com Received: from mr.google.com ([10.217.0.129]) by 10.217.0.129 with SMTP id l1mr198857wes.18.1311248979998 (num_hops = 1); Thu, 21 Jul 2011 04:49:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=beta; h=x-beenthere:received-spf:date:from:x-x-sender:to:subject :in-reply-to:message-id:references:user-agent:mime-version :x-original-sender:x-original-authentication-results:reply-to :precedence:mailing-list:list-id:x-google-group-id:list-post :list-help:list-archive:sender:list-subscribe:list-unsubscribe :content-type; bh=zUVoUaxZJoRYXEzg+jtreRwKI28pOiAfPcFgFNSDwE8=; b=mzUWV0KN7k1PpKRL58Mh6CryUIcX9dpWsK5lYb8GdnDe3Xf0zNAMmOAlZUmcr9H9IE NkLK190PAAu4I/2H6gbU/UDYO/VHAJVFXNnX8jB4lfM9vL1ZHmE2o3IZNxi9NkXN+Sa3 DhDeUM2I3lM95Z0mbjlA2pguIbBVbOEy4Ir0M= Received: by 10.217.0.129 with SMTP id l1mr56069wes.18.1311248958504; Thu, 21 Jul 2011 04:49:18 -0700 (PDT) X-BeenThere: 9front@googlegroups.com Received: by 10.14.124.203 with SMTP id x51ls182403eeh.6.canary; Thu, 21 Jul 2011 04:49:17 -0700 (PDT) Received: by 10.213.7.217 with SMTP id e25mr41566ebe.20.1311248957731; Thu, 21 Jul 2011 04:49:17 -0700 (PDT) Received: by 10.213.7.217 with SMTP id e25mr41565ebe.20.1311248957712; Thu, 21 Jul 2011 04:49:17 -0700 (PDT) Received: from phicode.de (phicode.de [46.4.89.174]) by gmr-mx.google.com with ESMTP id h4si2030168fao.0.2011.07.21.04.49.17; Thu, 21 Jul 2011 04:49:17 -0700 (PDT) Received-SPF: pass (google.com: domain of aiju@phicode.de designates 46.4.89.174 as permitted sender) client-ip=46.4.89.174; Received: from localhost (localhost [127.0.0.1]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by phicode.de (Postfix) with ESMTPS id E1D9740049 for <9front@googlegroups.com>; Thu, 21 Jul 2011 13:50:46 +0200 (CEST) Date: Thu, 21 Jul 2011 13:50:46 +0200 (CEST) From: Julius Schmidt X-X-Sender: aiju@localhost To: 9front <9front@googlegroups.com> Subject: Re: change keyboard layout In-Reply-To: <71108c10-5525-4b3f-b80c-99f350033931@gh5g2000vbb.googlegroups.com> Message-ID: References: <3bf302ae-c110-4ecb-8f17-ef3ad9855179@c41g2000yqm.googlegroups.com> <03a918f2-364e-499e-82be-67c5c77d39df@s2g2000vbw.googlegroups.com> <71108c10-5525-4b3f-b80c-99f350033931@gh5g2000vbb.googlegroups.com> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 X-Original-Sender: aiju@phicode.de X-Original-Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of aiju@phicode.de designates 46.4.89.174 as permitted sender) smtp.mail=aiju@phicode.de Reply-To: 9front@googlegroups.com Precedence: list Mailing-list: list 9front@googlegroups.com; contact 9front+owners@googlegroups.com List-ID: <9front.googlegroups.com> X-Google-Group-Id: 831096995978 List-Post: , List-Help: , List-Archive: Sender: 9front@googlegroups.com List-Subscribe: , List-Unsubscribe: , Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed > Ah..yes. > Okay, is not so heavy... I want to create a find.sh > ___________________________ > #!/bin/sh > > du -a | grep $1 > ___________________________ > > in the /bin directory. But I got an error "mounted directory forbid a > creation" The /bin directory is a union mount of (on the PC) /386/bin, /rc/bin, /usr/$user/386/bin and /usr/$user/386/rc. Shell scripts go into /rc/bin. Also, our shell is called /bin/rc, not /bin/sh. > But in /root/usr/glenda/bin I'm able to create files... is this > directory not mounted? You don't need /root, just /usr/glenda/bin, but again, it's /usr/glenda/bin/rc for shellscripts. /root is not normally used. Really, read the paper. > is /root/usr/glenda the home directory of glenda? /usr/glenda is. > Because a "cd ~" is not yet implemented Just "cd" works if you mean to change to your homedirectory. The Plan 9 shell does not recognize ~ as an alias for your homedir. Use $home. aiju