linux:zsh:ohmyzsh_root_user
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:zsh:ohmyzsh_root_user [2023-12-02 19:27] – created admin | linux:zsh:ohmyzsh_root_user [2023-12-05 11:45] (current) – admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | ===== The problem: ===== | + | ===== The problem ===== |
- | You have installed oh-my-zsh as a normal user, but as soon as you log in as root , you don't have oh-my-zsh available. There are probably several solutions to this problem (installing OhMyZsh separately as root, where you may end up with a conflicting environment variable when switching between your normal user account and root account), but I will now focus on a straightforward solution which gives you a copy of the whole OhMyZsh installation, | + | You have installed |
- | ===== The solution: ===== | + | ===== The solution ===== |
- | This is a step by step tutorial. In this example the normal (non-root) user is called normal . I also suppose you don't have to use sudo for all admin tasks (which is normally the case in Ubuntu and its derivates), but you have a separate root password. In case you don't have a root password you can simply put the sudo command in front of every command which I list here, but it would make more sense to first create a root password (which is easy, you can find a solution elsewhere). | + | This is a step by step tutorial. In this example the normal (non-root) user is called |
Make sure that your root login shell is really zsh, not bash or something. Log in as root and check the name of the active shell: | Make sure that your root login shell is really zsh, not bash or something. Log in as root and check the name of the active shell: | ||
+ | |||
+ | echo $0 | ||
+ | |||
+ | This should print zsh, not any other shell. | ||
+ | |||
+ | In case it's not zsh, then set the default shell with command: | ||
+ | |||
+ | chsh | ||
+ | |||
+ | and enter ''/ | ||
+ | |||
+ | Now to the main part.\\ | ||
+ | Copy file '' | ||
+ | |||
+ | Also copy the whole folder ''/ | ||
+ | but don't copy over the git files and directories. | ||
+ | |||
+ | **A list of all the git stuff:** | ||
+ | .git/ | ||
+ | .github/ | ||
+ | .gitignore | ||
+ | .gitpod.Dockerfile | ||
+ | .gitpod.yml | ||
+ | |||
+ | Now log out and log in again as root. You should see an error similar to the following: | ||
+ | |||
+ | < | ||
+ | [oh-my-zsh] Insecure completion-dependent directories detected: | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | drwxr-xr-x 1 normal normal 512 Aug 15 18:26 / | ||
+ | -rw-r--r-- 1 normal normal 356 Aug 15 18:26 / | ||
+ | |||
+ | [oh-my-zsh] For safety, we will not load completions from these directories until | ||
+ | [oh-my-zsh] you fix their permissions and ownership and restart zsh. | ||
+ | [oh-my-zsh] See the above list for directories with group or other writability. | ||
+ | |||
+ | [oh-my-zsh] To fix your permissions you can do so by disabling | ||
+ | [oh-my-zsh] the write permission of " | ||
+ | [oh-my-zsh] owner of these directories is either root or your current user. | ||
+ | [oh-my-zsh] The following command may help: | ||
+ | [oh-my-zsh] | ||
+ | |||
+ | [oh-my-zsh] If the above didn't help or you want to skip the verification of | ||
+ | [oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to | ||
+ | [oh-my-zsh] " | ||
+ | </ | ||
+ | |||
+ | However the problem does not have to do with write persmissions for group and others. I didn't want to skip verification through ZSH_DISABLE_COMPFIX on purpose, so let's fix it another way. First make sure you are in the root home directory: | ||
+ | |||
+ | '' | ||
+ | |||
+ | Then set " | ||
+ | |||
+ | chmod 600 .zshrc && chown root .zshrc | ||
+ | |||
+ | Then recursively change the owner of directory '' | ||
+ | |||
+ | chown -R root .oh-my-zsh/ | ||
+ | |||
+ | That's it! Now when you log in again as root, you won't see any errors or warnings by OhMyZsh and you will get the same user experience as the " | ||
+ | |||
+ | ==== Here is the main part of a .zshrc file which can be used for both normal user and root ==== | ||
+ | <code bash .zshrc> | ||
+ | export PATH=" | ||
+ | / | ||
+ | export EDITOR=' | ||
+ | export HISTSIZE=200 | ||
+ | export SAVEHIST=3000 | ||
+ | export ZSH_CACHE_DIR=" | ||
+ | |||
+ | # Reloads Zsh config (running source ~/.zshrc is deprecated) | ||
+ | alias reload=" | ||
+ | |||
+ | alias editzshrc=" | ||
+ | |||
+ | # Path to your oh-my-zsh installation. | ||
+ | export ZSH=" | ||
+ | |||
+ | ZSH_THEME=" | ||
+ | HIST_STAMPS=" | ||
+ | |||
+ | zstyle ': | ||
+ | plugins=(copyfile copypath encode64 extract) | ||
+ | source $ZSH/ | ||
+ | export LANG=' | ||
+ | </ | ||
+ | |||
+ | ==== Alternative solution ==== | ||
+ | A completely different alternative solution would be to switch to root with '' | ||
+ | |||
+ | Article date: 2022-09-09 |
linux/zsh/ohmyzsh_root_user.1701541670.txt.gz · Last modified: 2023-12-02 19:27 by admin