当前位置:  技术问答>linux和unix

linux怎么取得进程启动时间

    来源: 互联网  发布时间:2016-05-09

    本文导语:  如題 | man 5 proc 你找得该是starttime              The fields, in order, with their proper scanf(3) format specifiers, are:               pid %d The process ID.               comm %s ...

如題

|
man 5 proc
你找得该是starttime

             The fields, in order, with their proper scanf(3) format specifiers, are:

              pid %d The process ID.

              comm %s
                     The filename of the executable, in parentheses.  This is visible  whether  or  not  the
                     executable is swapped out.

              state %c
                     One  character  from the string "RSDZTW" where R is running, S is sleeping in an inter-
                     ruptible wait, D is waiting in uninterruptible disk sleep, Z is zombie, T is traced  or
                     stopped (on a signal), and W is paging.

              ppid %d
                     The PID of the parent.

              pgrp %d
                     The process group ID of the process.

              session %d
                     The session ID of the process.

              tty_nr %d
                     The tty the process uses.

              tpgid %d
                     The  process  group  ID of the process which currently owns the tty that the process is
                     connected to.

              flags %lu
                     The kernel flags word of the process.  For  bit  meanings,  see  the  PF_*  defines  in
                     .  Details depend on the kernel version.

              minflt %lu
                     The  number of minor faults the process has made which have not required loading a mem-
                     ory page from disk.

              cminflt %lu
                     The number of minor faults that the process's waited-for children have made.

              majflt %lu
                     The number of major faults the process has made which have required  loading  a  memory
                     page from disk.

              cmajflt %lu
                     The number of major faults that the process's waited-for children have made.

              utime %lu
                     The number of jiffies that this process has been scheduled in user mode.

              stime %lu
                     The number of jiffies that this process has been scheduled in kernel mode.

              cutime %ld
                     The  number  of  jiffies that this process's waited-for children have been scheduled in
                     user mode. (See also times(2).)

              cstime %ld
                     The number of jiffies that this process's waited-for children have  been  scheduled  in
                     kernel mode.

              priority %ld
                     The standard nice value, plus fifteen.  The value is never negative in the kernel.

              nice %ld
                     The nice value ranges from 19 (nicest) to -19 (not nice to others).

              0 %ld  This value is hard coded to 0 as a placeholder for a removed field.

              itrealvalue %ld
                     The  time  in jiffies before the next SIGALRM is sent to the process due to an interval
                     timer.

              starttime %lu
                     The time in jiffies the process started after system boot.

              vsize %lu
                     Virtual memory size in bytes.

              rss %ld
                     Resident Set Size: number of pages the process has in real memory, minus 3 for adminis-
                     trative  purposes.  This  is  just  the  pages which count towards text, data, or stack
                     space.  This does not include pages which have not been demand-loaded in, or which  are
                     swapped out.

              rlim %lu
                     Current limit in bytes on the rss of the process (usually 4294967295 on i386).

              startcode %lu
                     The address above which program text can run.

              endcode %lu
                     The address below which program text can run.

             startstack %lu
                     The address of the start of the stack.

              kstkesp %lu
                     The  current  value  of  esp (stack pointer), as found in the kernel stack page for the
                     process.

              kstkeip %lu
                     The current EIP (instruction pointer).

              signal %lu
                     The bitmap of pending signals.

              blocked %lu
                     The bitmap of blocked signals.

              sigignore %lu
                     The bitmap of ignored signals.

              sigcatch %lu
                     The bitmap of caught signals.

              wchan %lu
                     This is the "channel" in which the process is waiting.  It is the address of  a  system
                     call,  and  can be looked up in a namelist if you need a textual name.  (If you have an
                     up-to-date /etc/psdatabase, then try ps -l to see the WCHAN field in action.)

              nswap %lu
                     Number of pages swapped (not maintained).

              cnswap %lu
                     Cumulative nswap for child processes (not maintained).

              exit_signal %d
                     Signal to be sent to parent when we die.

              processor %d
                     CPU number last executed on.

              rt_priority %lu (since kernel 2.5.19)
                     Real-time scheduling priority (see sched_setscheduler(2)).

              policy %lu (since kernel 2.5.19)
                     Scheduling policy (see sched_setscheduler(2))

|
/proc/[number]/stat
              Status  information  about  the  process.   This  is  used  by  ps(1).   It  is   defined   in
              /usr/src/linux/fs/proc/array.c.

    
 
 

您可能感兴趣的文章:

  • linux僵尸(zombie)进程介绍及清除
  • 高手请教!linux怎样通过pid获取进程信息,如:进程名、进程状态等?
  • linux下进程占用内存空间详解
  • linux命令如何实现重启父进程而不会使其子进程退出
  • Linux进程的内核栈和用户栈概念,相互关系及切换过程
  • Linux中最多同时可以开多少个进程,一个进程可以开多少个线程?
  • linux下进程间通信:共享内存原理及具体用法举例(基于c/c++语言)
  • Linux守护进程 的子进程 终端处理
  • Linux内核进程与应用进程的通信方式有哪些?
  • 在linux,如何用共享内存来实现进程间的通讯?(这些进程没有父子关系)
  • linux下system函数调用shell命令后,怎样让主进程不等子进程返回,接着执行(在线)?
  • linux进程(线程)运行过程中如何获取本进程当前的内存使用状况,统计信息?
  • 如何linux下监控进程及其子进程占用资源?
  • linux下的进程如何访问另外一个进程建立的mutex?
  • linux中用killall命令杀死进程的时候会释放掉该进程所占有的内存吗?
  • linux内核高手进!关于调用__fork()时0号进程的子进程才能与父进程共享PID的困惑
  • 请教:在Linux下怎么样检测一个进程是否是僵尸进程??
  • 请问linux进程的哪些信息保存在内核里?哪些信息又保存在进程空间里?谢谢
  • Linux下请教一个父进程杀死子进程的问题.
  • 怎么查看Linux中所运行的进程,并且知道哪些是停止响应的,用什么命令可以杀掉停止响应的进程?
  • 【求助】linux/Unix下创建子进程,向父进程发送信号,子进程也能收到改信号,此时如何让子进程不收到信号
  • 在Linux中,IP怎样取得?
  • 请问linux系统下,用什么函数可以取得hostname和username?
  • UNIX/LINUX下如何取得精确到“毫秒级”的系统时间?
  • linux图形环境下有什么api函数可以设置或者取得剪贴板的内容
  • 请问在C++/C中怎么取得LINUX当前的环境变量
  • linux取得进程数目
  • 急,在线等待!!!请教个问题,linux下的远程控制软件是什么,可以在那里取得,多谢?
  • 在LINUX中使用C调用系统命令,怎么取得系统命令的输出?
  • 【● LINUX下有没有消息或事件驱动?如何取得呢?谢谢各位兄弟!
  • 怎么在linux下用java取得它的版本号:version
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Mysql服务器登陆,启动,停止等基本操作命令介绍(Linux/Centos环境)
  • 我的LINUX为什么不能选择启动,只能用启动盘启动
  • 98/2000/redhat7.2 装好后98/2000 ghost linux没做启动盘,怎么启动linux?
  • 做redhat linux7.3启动软盘:我的LINUX系统是在hda7上的,但我在这做的启动软盘是要用来启动接在hdc1上的另一个LINUX系统的,请问该怎么办啊
  • linux下安装oracle后使用命令行启动的方法 linux启动oracle
  • 在win2K上,再装linux,原先的Fat32格式的启动区,是不是不可以启动linux,?
  • 在装了xp后再装linux,现在grub默认启动是linux,如何修改,让默认启动为xp?
  • 再线送分:我的硬盘装了REDHAT LINUX,但不启动,软盘启动盘也没了,请问怎样能再次启动?
  • 在我启动linux设成Gnome图片模式启动,如果想启动字符模式,应怎样把级别5改为3吗,教我改法
  • 同机装有Windows和Linux两套系统(先装Win后装Linux),如何使计算机使用Windows的启动模块而不是Linux的启动模块?
  • linux 服务器启动时,机子启动就启动下面的这行命令
  • Linux的安装之后,双重启动一次之后,第二次启动就进入GRUB的命令提示符,如何回到图形化的DOS与LINUX的启动菜单界面?
  • 我机器上装了两个系统,win2000,Linux,现在我机器启动后进入grub命令行,请问我有没有办法恢复Linux或Win2000启动
  • 如何同时在启动菜单中启动LINUX和UNIX
  • 如何修改启动菜单的启动顺序(linux,windows),我想让系统默认启动到windows.谢谢!!
  • 怎么启动的时候没有提示从linux启动?
  • 我先装了XP,又装了Linux,现在Linux只能用启动盘启动,有没有其他方法啊?
  • LINUX REDHAT 启动硬盘不能启动,要怎样做!
  • 我下载了个linux.iso,我想在计算机启动时启动它,
  • 能在笔记本上安装XP和Linux双启动吗?删除Linux时如何保证XP仍能正常启动?
  • win2kserver和redhat7.2共存,win2kserver升级到winxp后,发现linux的启动菜单不见了?怎样才能恢复linux 的启动?
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3