11. linux_interrupts_flashcards

1
Q

What command is used to run the watchints program?

A

./watchints

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you terminate the watchints program using a kill signal?

A

Ctrl+C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you suspend the watchints program?

A

Ctrl+Z

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command is used to find the process ID of a running program?

A

ps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What command is used to forcefully terminate a process given its PID?

A

kill -9 <PID>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the first column in the watchints output represent?

A

IRQ number (Interrupt Request number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the last column in the watchints output represent?

A

The hardware device or subsystem generating the interrupt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the command to copy a file in Linux?

A

cp <source> <destination>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What command is used to compile an assembly file using GCC?

A

gcc <filename>.s -o <output>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you execute a compiled binary in Linux?

A

./<binary_name>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What system call number is used for the ‘exit’ function?

A

System call #1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What instruction is used in Intel assembly to invoke a system call?

A

int $0x80

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What register is used to pass the system call number?

A

Register %eax

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can you check the exit status of the last executed command?

A

echo $?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What command lists all currently running processes?

A

ps aux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What system call retrieves the process ID of a running process?

17
Q

How do you compile a C program into assembly code?

A

gcc -S <filename>.c

18
Q

How can you manually invoke the getpid system call in assembly?

A

movl $20, %eax;
int $0x80