在root下新建一个用户
adduser Hugh
passwd Hugh
从root登录切换到普通用户
su - Hugh
从普通用户登录切换到root用户
su
2.进程管理 (1) ps : 查看某个时间点的进程信息 查看自己的进程:ps -l 查看所有进程: ps aux 查看特定进程: ps aux | grep threadx (2) pstree: 查看进程树 查看所有进程树:pstree -A (3) netstat: 查看占用端口的进程 查看特定端口的进程:netstat -anp | grep port 3. 查看文件前10行