当我们用指令去修改ftp默认访问路径 usermod - d /var/www/html root 然后登陆ftp的时候会报错:500 OOPS: cannot change directory:/var/www/html 这个时候需要执行一下语句解决: # getsebool ftpd_disable_tra...
分类:
系统相关 时间:
2014-08-29 16:24:58
阅读次数:
340
一、su权限管理非root账户能否su到root,通过/etc/pam.d/su管理#Uncommentthefollowinglinetorequireausertobeinthe"wheel"group.
#authrequiredpam_wheel.souse_uid取消注释之后,所有其他用户只有在wheel组的才能su到root二、更改组的命令usermod-gwheelusername-g更改用户登..
分类:
系统相关 时间:
2014-08-27 11:08:38
阅读次数:
217
用户:useradd,userdel,usermod,passwd,groupadd,talk,write,id,who,whoami,users文件权限:chown,chmod,touch(修改文件日期),ftp,文件处理:find,grep,wc,ln磁盘:df(硬盘容量),du(硬盘使用量).防火墙:ifconfig,netstart(路由),iptable,chkconfig系统默认配置:date,ca..
分类:
其他好文 时间:
2014-08-27 02:47:37
阅读次数:
226
chsh1.作用chsh命令的作用是更改使用者shell设定,它的使用权限是所有使用者。2.格式chsh[-s][-list][--help][-v][username]3.主要参数-l:显示系统所有Shell类型。-v:显示Shell版本号。4.应用技巧前面介绍了Linux下有多种Shell,一般缺省的是Bash,如果想更换Shell类..
分类:
系统相关 时间:
2014-08-25 17:19:15
阅读次数:
449
无法上网问题:sudo subl /etc/network/interfaces增加以下内容:# The primary network interfaceauto eth0iface eth0 inet dhcp无法使用USB问题:sudo /usr/sbin/usermod -G vboxuse...
分类:
系统相关 时间:
2014-08-13 00:54:14
阅读次数:
243
新增用户 sudo useradd -m -s /bin/bash $USER加入sudo组 sudo adduser $USER sudo修改密码 sudo passwd $USER禁止用户使用shell登录系统 sudo usermod -s /bin/false $USER
分类:
系统相关 时间:
2014-07-22 00:25:35
阅读次数:
311
一个可执行二进制程序,被加载到内存,被内核调度到CPU上运行,这时候,就表现了一个进程。也可以说进程是程序的一个实例,是程序的动态表现。在Linux系统中进程(process)是有属主的,也就是该进程以哪个用户的身份运行的。大家都知道,程序有输入和输出,也称这为程序IO。如果..
分类:
系统相关 时间:
2014-07-10 18:49:16
阅读次数:
586
usermod命令usermod:修改用户的属性信息。语法格式:usermod[options]LOGIN选项:-a:添加用户到辅助组中。和-G选项一起使用,将用户添加到组中。示例1:[root@Server3~]#usermod-aGuser2user1
[root@Server3~]#grep‘user1‘/etc/group
user1:x:503:
user2:x:504:user1
[root@Se..
分类:
其他好文 时间:
2014-07-02 15:35:52
阅读次数:
276
linux下usermod命令详解命令:usermod功能说明:修改用户帐号。语法:usermod[-LU][-c<备注>][-d<登入目录>][-e<有效期限>][-f<缓冲天数>][-g<群组>][-G<群组>][-l<帐号名称>][-s<shell>][-u<uid>][用户帐号]补充说明:..
分类:
系统相关 时间:
2014-07-01 09:46:58
阅读次数:
285
linux的用户管理命令主要有useradd,userdel,usermoduseradduseradd用于添加一个用户。adduser与useradd的功能相同,使用ls-l`whichadduser`可以发现,adduser是useradd的一个符号链接。useradd的基本用法为:useradd[options]LOGIN.例如:添加一个Tom的用户,即为useraddTom...
分类:
系统相关 时间:
2014-06-21 19:36:38
阅读次数:
453