Linux修改某用户默认shell

问题:

在Linux服务上,安装了Oh-My-Zsh.但是因为自己只是一个普通用户,所以要对自己用户下的默认shell进行设置。

方法:

临时修改shell

我们可以对当前使用的shell进行改变,直接调用不同sheel名称进入到shell环境中去。

首先我们可以使用命令cat /etc/shells得到当前系统支持的shell环境。
merle

merle@bogon ~ ❯❯❯ cat /etc/shells                                                                                                     
/bin/sh                                                                                                                              
/bin/bash                                                                                                                            
/sbin/nologin                                                                                                                        
/usr/bin/sh                                                                                                                          
/usr/bin/bash                                                                                                                        
/usr/sbin/nologin                                                                                                                    
/bin/tcsh                                                                                                                            
/bin/csh                                                                                                                             
/bin/zsh          

切换shell环境

merle@bogon ~ ❯❯❯ bash                                                                                                                
[merle@bogon ~]$ sh
sh-4.2$ csh
[merle@bogon ~]$ zsh
merle@bogon ~ ❯❯❯    

使用echo $SHELL可得到当前的shell环境。

修改用户默认的shel

我们知道在linux系统的/etc/passwd文件内是保存系统内所有用户和用户的设置。

对某用户的默认设置也在这里。首先我们可以查看一下当前的用户设置。

merle@bogon ~ ❯❯❯ grep merle /etc/passwd                                                                                               
merle:x:1000:1000:merle:/home/merle:/bin/zsh 

一、我们可以使用chsh命令修改某用户的默认shell

使用如下:

merle@bogon ~ ❯❯❯ chsh                                                                                                                
Changing shell for merle.
New shell [/bin/bash]: /bin/zsh
密码:
Shell changed.
merle@bogon ~ ❯❯❯

# 再次查看该用户设置
merle@bogon ~ ❯❯❯ grep merle /etc/passwd                                                                                               
merle:x:1000:1000:merle:/home/merle:/bin/zsh    

但是有可能系统不支持该命令。可以使用如下方法。

二、 使用usermod命令

用法如下:

usermod -s /bin/zsh merle

# 再次查看该用户设置
merle@bogon ~ ❯❯❯ grep merle /etc/passwd                                                                                               
merle:x:1000:1000:merle:/home/merle:/bin/zsh    

由上,我们可以在创建用户的时候指定默认shell.

useradd -s /bin/zsh username

give me a five.
同步更新于我的博客-Linux修改某用户默认shell

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • linux资料总章2.1 1.0写的不好抱歉 但是2.0已经改了很多 但是错误还是无法避免 以后资料会慢慢更新 大...
    数据革命阅读 14,255评论 2 33
  • Ubuntu的发音 Ubuntu,源于非洲祖鲁人和科萨人的语言,发作 oo-boon-too 的音。了解发音是有意...
    萤火虫de梦阅读 99,980评论 9 468
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,828评论 19 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 47,118评论 6 342
  • 概述 首先,咱们来了解一下,什么是Shell。操作系统内核给我们提供了各种接口,同时也提供了各种用户层的库,理论上...
    keysaim阅读 5,282评论 0 0

友情链接更多精彩内容