在终端中使用 cp 命令传输大文件并查看想要查看的过程
Transferring big files with cp command in terminal and see want to see process
我使用 "cp" 命令将一个大目录 (>300GB) 复制并粘贴到外部磁盘。
现在我想看看这个过程,因为它已经 运行 将近 12 个小时了。
我按了ctrl + t 因为有人推荐了它。输出是:
load: 3.10 cmd: cp 2343 uninterruptible 13.31u 1051.85s
这个输出是什么意思?
来自 stty(1) 页面:
The status line consists of the system load average, the
current
rent command name, its process ID, the event the process is waiting on (or the status of
the process), the user and system times, percent cpu, and current memory usage.
因此;
系统平均负载为 3.10
当前命令运行是进程ID为2343的"cp",不可中断
我假设13.31u是13小时的用户时间,1051.85s是系统时间。但是,没有 CPU 百分比或 RAM 使用详细信息。
我不确定 ctrl + t 是您正在寻找的解决方案..
我使用 "cp" 命令将一个大目录 (>300GB) 复制并粘贴到外部磁盘。
现在我想看看这个过程,因为它已经 运行 将近 12 个小时了。
我按了ctrl + t 因为有人推荐了它。输出是:
load: 3.10 cmd: cp 2343 uninterruptible 13.31u 1051.85s
这个输出是什么意思?
来自 stty(1) 页面:
The status line consists of the system load average, the current rent command name, its process ID, the event the process is waiting on (or the status of the process), the user and system times, percent cpu, and current memory usage.
因此;
系统平均负载为 3.10
当前命令运行是进程ID为2343的"cp",不可中断
我假设13.31u是13小时的用户时间,1051.85s是系统时间。但是,没有 CPU 百分比或 RAM 使用详细信息。
我不确定 ctrl + t 是您正在寻找的解决方案..