From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 24032 invoked from network); 12 Jun 2020 16:36:18 -0000 Received: from ns1.primenet.com.au (HELO primenet.com.au) (203.24.36.2) by inbox.vuxu.org with ESMTPUTF8; 12 Jun 2020 16:36:18 -0000 Received: (qmail 23379 invoked by alias); 12 Jun 2020 16:36:09 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 24929 Received: (qmail 20037 invoked by uid 1010); 12 Jun 2020 16:36:09 -0000 X-Qmail-Scanner-Diagnostics: from mail-il1-f179.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.3/25835. spamassassin: 3.4.4. Clear:RC:0(209.85.166.179):SA:0(-2.0/5.0):. Processed in 0.895182 secs); 12 Jun 2020 16:36:09 -0000 X-Envelope-From: roman.perepelitsa@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.166.179 as permitted sender) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=7vd6PtHJIzSIuHSgjrzolHfLVISxNLiq22S93kn5Mhc=; b=Hp8F8ZsiOMI3ZzG166b5lcfexrDZqe5HNSOx6+ebAFSQCE2VHnBx2rh9sQOcocGF8y 7P7gVf1rzynKfHrDP3yfEYnvzxHfJsY0Ni3MKXBW4Tw80zUo/9J2ofIv0IlJoltNOPpj XRT0JTHeBglJRc2303MkCJLylZDQP72P4WoI/Hj66Z129jwmdqGm1pu+CcLnxYAh+o1h YgYdr02F0ACqMOCXZFQdtD3zYNvtUyq7tphFQRcnH+1+eVMkSktP+lkePOoBETEjDyMi OkEzz4SzOnhuZ5sxnW/GeFg3usMEvHTmvLyf6j0kw+Y0a9S7YI0TvjK8IYuYhHEjSp8d 6dOw== X-Gm-Message-State: AOAM533Dxl83K3gZzCThqUHvDqWixKS5QS5L2cZZ30z1G66hdX+ZdieD dOXYhJ1ucP66A3TbkmaI9zKbzrXtn2we3SuJd5fC8Q== X-Google-Smtp-Source: ABdhPJzXev628TeOey3aaqdUlRaVsxbZ0slgfc8wqRJImEHiJ/xklWXtAblwLq6oH2kvKhhucQ0XTXm6KmjufBt4+vU= X-Received: by 2002:a92:ab04:: with SMTP id v4mr13426414ilh.186.1591979735937; Fri, 12 Jun 2020 09:35:35 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Roman Perepelitsa Date: Fri, 12 Jun 2020 18:35:24 +0200 Message-ID: Subject: Re: help with installing and correctly configuring zsh on an amd 64 box running gentoo stable To: Michael Fothergill Cc: Zsh Users Content-Type: text/plain; charset="UTF-8" On Fri, Jun 12, 2020 at 6:22 PM Michael Fothergill wrote: > So I used the standard manual install instructions and it ended up in the > /root directory. When I put that path into the .zshrc and ran exec zsh as > a user powerlevel 10k began to run. It seems like you are doing something unusual. Unless you have a strong reason, I would advise against copying or sourcing anything from /root. Better yet, don't log in as root, don't execute `sudo su`, don't change the root's login shell, don't modify or create any files under /root, etc. I don't know about Gentoo but when you install Ubuntu you log in straight away as a regular user. Stay as that user. If Gentoo doesn't create a regular user for you during installation and logs you in as root, create a regular user with sudo privileges, switch to that user and never again log in as root. Now, supposing that you managed to log in as a regular user, you can proceed with the installation of software following the standard installation instructions. Sometimes you'll need to run commands via `sudo`. That's fine. Only add `sudo` when the command wouldn't work without it. Roman.