赞
踩
1、进入超级用户
sudo su
以下步骤都是在超级用户中进行操作的:
2、创建用户:useradd 用户名,如下
useradd test
3、查看当前用户的解释器
grep test /etc/passwd
4、查看虚拟机中所有的解释器
cat /etc/shells
5、添加新的解释器:以添加tcsh为例
使用yum进行操作
yum -y install tcsh
在Ubuntu中使用apt-get操作
apt-get install tcsh
6、修改当前用户的解释器:usermod -s 你想修改成的解释器 用户名
usermod -s /bin/tcsh test
7、恢复用户的解释器:chsh -s 用户原来的解释器 用户名
chsh -s /bin/bash test
也可以使用usermod进行修改
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。