From owner-freebsd-questions@freebsd.org Sun Jun 5 16:23:02 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D33BB6A542 for ; Sun, 5 Jun 2016 16:23:02 +0000 (UTC) (envelope-from jd1008@gmail.com) Received: from mail-it0-x229.google.com (mail-it0-x229.google.com [IPv6:2607:f8b0:4001:c0b::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 373621D2E for ; Sun, 5 Jun 2016 16:23:02 +0000 (UTC) (envelope-from jd1008@gmail.com) Received: by mail-it0-x229.google.com with SMTP id f67so25715985ith.1 for ; Sun, 05 Jun 2016 09:23:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-transfer-encoding; bh=vVR4qEg8kMsp2wAx0A6gzMvNsmFvbH0gmQgNQg2SriQ=; b=lEWMnfCyTvvEGU9u2wC4DF3J+Ibf4VIukHwaBuHAAxYeQ5llafx/meLlfo0EgiraPA C+LUIw3zZfEoNM8hMalCMWBFmMTpaTrhSsVfMxdLGdTwLMWTj7aqtc13QC+NDVLuzpqC 7EQW5CbW90svP9mP7GohanqT+OwuDyIlXzMWzxvyAZgj6lpIIiMBuzOuKgB636EYnrAt l1eTgPlHS+oJ4jLCDe500K5kQXS647z+vAlrAmlSTf7GNG/fQzrUVFYDE6fvY5Id8VtS Ei7lHmsdu66jXeH/oeLBEfKRU5qQyi2F5WUL32iLUSDeULRB9V5YhO7CyQC5UAEfT/6G hzQQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-transfer-encoding; bh=vVR4qEg8kMsp2wAx0A6gzMvNsmFvbH0gmQgNQg2SriQ=; b=KuFliwWzlxwHkKHngNXDb4B36oaZiTuHNl0bRWYkHC92/8eMzx5R67pOs6hoHuFj+2 DJwluGaOh597ViNpKh2OJwg6q/UHUBAoFCwHzL/zYIve07S+DPCpfQGUX3b53BGErxMy rDpQwW7wotDARrrHUM5R4rKE+BWA+09l5pIDMlIGsyea6EduaaIgH+f1mbgWcekA+gRQ JG9pmPqr12Oxr4BtWXbsdp/lgxjGS53oef/ksHA3Qqv4V+fsh+sWAPd67rmlA+REUBKH YVqOCo/Il9SB8od0U+J/161JXZ1m5Vy7z+3ngyHdqvWRS7mmZUk41ykEnQiSWxJ4zZ6D 0tcg== X-Gm-Message-State: ALyK8tIQ0HY+Xc2jkM2w0OAH405WvCpp94PmTD+qdUupYBiWOt6J8rvAK54XuAWFCvIIWg== X-Received: by 10.36.112.81 with SMTP id f78mr11638705itc.32.1465143781767; Sun, 05 Jun 2016 09:23:01 -0700 (PDT) Received: from localhost.localdomain ([50.243.4.3]) by smtp.googlemail.com with ESMTPSA id j137sm7182551ioe.18.2016.06.05.09.23.00 for (version=TLSv1/SSLv3 cipher=OTHER); Sun, 05 Jun 2016 09:23:00 -0700 (PDT) Message-ID: <575451E4.7030104@gmail.com> Date: Sun, 05 Jun 2016 10:23:00 -0600 From: jd1008 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: sh[it] and What am I missing here? References: <57544c10.90e58c0a.cacbc.62fd@mx.google.com> <57545029.5060805@gmail.com> In-Reply-To: <57545029.5060805@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jun 2016 16:23:02 -0000 On 06/05/2016 10:01 AM, Baho Utot wrote: > On 06/05/16 11:58, Manas Bhatnagar wrote: >>> After the /bin/sh am I into a bourne shell or what? >> Try 'env bash'? >> >> > env: bash: No such file or directory Sorry, for barging in at this point. Do I understand correctly that you want bash to be your shell? If so, you can run (as root), the command chsh where should all be replaced by your login name. This will give you a vi screen where you change your login shell to whatever you want it to be. After that , you need to make sure that the rc and profile files that are executed by your chosen shell, export the variable SHELL= for example: export SHELL=/bin/bash HTH.