Skip to main content

All Questions

Tagged with
0 votes
1 answer
855 views

Signals vs. polling for I/O (uses very simple example of I/O)

I understand how hardware interrupts work. I have a basic question about I/O, and will use keyboard and characters from key presses as the context for the question. In a general sense, do processes ...
BipedalJoe's user avatar
0 votes
0 answers
142 views

Stop disk activity of a process without killing the process

Is there a technique or tool that can be used to stop a running process from writing to a drive, but not kill the process. If I have more level of control in that, like selecting which drives the ...
Anchovy's user avatar
  • 105
1 vote
1 answer
1k views

Find out which files a process is writing to

I have this very annoying problem with Firefox for months where its CPU usage jumps to over 24% after a while when idle. Any official troubleshooting has lead to no positive results (tried to reset, ...
Shadow's user avatar
  • 111
0 votes
1 answer
929 views

CPU Burst or I/O Burst

If a process that currently is being executed faces an I/O Burst, will the next available process gain the CPU burst or will the processor wait until the I/O Burst of the first process finishes to ...
MoveUK's user avatar
  • 11
1 vote
0 answers
303 views

How to redirect file I/O operations of a process to memory or a different file?

Let's say I have a file named file.txt and a running process with PID 12345 which sometimes reads and sometimes writes to that file. Is there any way I can fool the process with PID 12345 to read or ...
Snackoverflow's user avatar
0 votes
0 answers
95 views

Dedicate IO priority to a process [duplicate]

Possible Duplicate: How to change I/O priority of a process or thread in Win7? On Windows (7 in this case) it's possible to dedicate CPU priority to a process to make it go faster. In most cases ...
Koen's user avatar
  • 225
36 votes
4 answers
61k views

How to change I/O priority of a process or thread in Win7?

Process Explorer is able to show the effective IO priority of a given thread, but not change it. Seeing as IO priority support is a comparatively new feature, most programs don't set their own IO ...
RomanSt's user avatar
  • 9,837
69 votes
3 answers
46k views

Linux: Is there something similar to "top" for I/O?

My disk often is utilized, but top (and htop, a custom replacement) show nothing suspicious. Is there a way to sort processes by I/O (more specific: disk) utilization? EDIT Found out using iotop ...
java.is.for.desktop's user avatar
57 votes
4 answers
74k views

How do I find out what processes are accessing the hard disk in a GNU/Linux-based system?

I'm looking for the equivalent to top for disk access, so I can tell which process(es) are currently reading and/or writing to disk. I'm currently using Ubuntu, but I imagine there's a standard tool ...
Olivier Dagenais's user avatar