linux下怎样改变用户的组
发布网友
发布时间:2022-04-21 02:14
我来回答
共1个回答
热心网友
时间:2022-05-25 22:40
When committing a permanent change, CVS makes a log entry of who committed the change. If you are
第一个问题:
如果没有、或不想用系统工具,command line是这样的
useradd -g <groupname or gid> username
用来设置主要隶属组,
useradd -G <groupnames or gids> username
用来给该用户设置非主要组,可以是多个。
第二个问题:
这是因为你以超级用户直接登录,而不是经过先以普通用户登录,然后再用su -改变身份。系统不知道你究竟是谁。You can disable this option by passing the --enable-rootcommit option to 'configure' and recompiling CVS. On some systems this means editing the appropriate 'config.h' file before building CVS.
参考资料:http://www.network-theory.co.uk/docs/cvsmanual/cvs_182.html