ubuntu服务器常用命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu服务器常用命令相关的知识,希望对你有一定的参考价值。

参考技术A 以下为root用户操作!!!

1.创建用户

      方法1:  adduser    用户名

      方法2:useradd     用户名(一切参数都要提供,如果不使用任何参数,则创建的用户无密码,无主目录,没有指定shell版本)

2.删除用户

        sudo userdel -r  用户名

3.创建用户组

        sudo addgroup  组名

4.删除用户组

        sudo delgroup  组名

5.将用户添加到用户组

        方法1:sudo adduser  用户名   用户组名

        方法2:usermod -G  用户组名  用户名

        方法3:usermod -g 用户组名  用户名(将用户组设为主组)

6.重启服务器

        shutdown -r now  立即重启

        shutdown -r +3 三分钟后重启

        shutdown -r 20:23 在20:23时将重启计算机

Ubuntu15常用命令


命令作用备注
apt-get update源更新



service --status-all查看服务状态列表

"+" starte
"-" stopped
"?" unknown

update-rc.d -f myservice default开机启动myservice
update-rc.d -f myservice remove 停止开机启动myservice
install sysv-rc-conf安装代码 
sysv-rc-conf执行代码
apt-get install mysql安装mysql
dpkg-reconfigure dash修改默认shell为dash
ll /bin/sh查看当前shell
apt-get –reinstall install 软件包名重新安装软件

apt-get purge tex-common

清楚软件tex-common
apt-get -f install自动修复依赖


未完,待续。。。



参考文章:

http://www.2cto.com/os/201304/205486.html

http://www.th7.cn/system/lin/201505/104866.shtml






本文出自 “悟透的杂货铺” 博客,请务必保留此出处http://wutou.blog.51cto.com/615096/1899761

以上是关于ubuntu服务器常用命令的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu常用命令

ubuntu工作常用命令及需要留意的点汇总

Ubuntu15常用命令

ubuntu下mysql的常用命令,MySQL数据库的基本操作命令

Ubuntu系统常用命令整理

NFS安装使用--Ubuntu