格式:lspci 实例:#lspci
格式:#last [-数字]/[数字] 实例:#last 显示最后几次登录信息 #last 1 显示在tty1最近登录的用户信息 #last -1 显示最后一次的用户登录信息
格式:#date [参数] 参数:-d mm/dd/yy 设置系统的日期 -s hh:mm 设置系统的时间 实例:#date #date -d 8/10/2005 #date -s 18:30
实例:#who(列出当前所有登录用户情况) #whoami(列出当前用户的用户名)
格式:id〔参数〕 参数:用户所有信息 -a 显示的uid -u 显示用户所属组的Gid -g 显示用户附加组 -G 实例:#id #id -u
实例:#cal (当前月份的日历) #cal 2005 (显示2005的日历) #cal 7 2007 (显示2007年7月份的日历)
格式:env
格式:#wall 实例:#wall 输入发送内容 ctrl+D发送信息
格式:write <用户名> [<终端>] 实例:#wrte root tty1 输入发送内容…………. ctrl+D 注:/etc/motd用户的信息公告,放在文件中内容所有的用户登录时都可以自动显示。
格式:chfn〔用户名〕 实例:#chfn〔修改当前用户的finger信息〕
实例:#chsh ftp1(将ftp1用户的shell改为/bin/csh) New Shell [/bin/bash]: bin/csh (输入用户的新shell)
功能:设置系统的环境变量 文件内容: # /etc/profile # System wide environment and startup programs, for login setup # Functions and aliases go in /etc/bashrc pathmunge () { 设置通用路径,不同的用户通用路径是不一样 if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi fi } # Path manipulation if [ `id -u` = 0 ]; then pathmunge /sbin |