随笔分类 -  Linux

Linux
摘要:http://www.cnblogs.com/kenshinobiy/p/5886046.html LINUX添加PHP环境变量:CentOS下将php和mysql命令加入到环境变量中 CentOS系统下如何将PHP和mysql命令加入到环境变量中,在Linux CentOS系统上 安装完php和M 阅读全文
posted @ 2017-07-04 09:20 php91 阅读(1270) 评论(0) 推荐(0)
摘要:http://man.linuxde.net/setfacl 阅读全文
posted @ 2016-07-19 16:15 php91 阅读(141) 评论(0) 推荐(0)
摘要:1、uname -r :显示操作系统的发行版号2、uname -a :显示系统名、节点名称、操作系统的发行版号、操作系统版本、运行系统的机器 ID 号。 #uname -aHP-UX RX1600 B.11.23 U ia64 3811068750 unlimited-user license 其中 阅读全文
posted @ 2016-07-12 18:31 php91 阅读(4254) 评论(0) 推荐(0)
摘要:1.用户锁定 : passwd -l user12.解除用户锁定:passwd -u user13.用户无密码登记:passwd -d user14.添加到附属用户组:gpasswd -a user1 boss(组名) 去除用户到附属用户组:gpasswd -d user1 boss5.切换到bos... 阅读全文
posted @ 2016-01-10 18:39 php91 阅读(242) 评论(0) 推荐(0)
摘要:1、添加用户组:groupadd sexy2、修改组名:groupmod -n market sexy3、修改组编号:groupmod -g 668 market4、添加有编号的用户组:group -g 888 boss5、删除用户组:groupdel market(先删除用户才行)a6、添加用户到... 阅读全文
posted @ 2016-01-09 23:06 php91 阅读(319) 评论(0) 推荐(0)