Mod 8 Day 2 Flashcards

(35 cards)

1
Q

Linux command used to view system calls accessed during the execution of a command

A

Strace

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

File from where init daemon gets its instructions

A

etc/inittab

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

Sets or prints the limits imposed on files written by the shell and its processes

A

Ulimit

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

Linux process that monitors the console for login request

A

Getty or mingetty

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

Command used to verify current run level

A

Who -r

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

Solaris process that monitors the console for logon request

A

Ttymon

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

File where Master copies of the startup scripts reside

A

/etc/init.d

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

Command used to view system calls access during execution of a command on a Solaris system

A

Truss

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

This system call return system information about the platform

A

Uname

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

*nix command used to change current run level

A

Init

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

Action within the inittab used for system initialisation; e.g. checks file systems, activate Swap, and sets hostname

A

Sysinit

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

This Linux command list current startup information and changes start up information for services. It also manages xinetd scrips via the configuration files in /etc/xinetd.d

A

Chkconfig

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

Similar to Windows Task Manager this *nix tool is used to view system processes and their states

A

Ps

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

Allows a device driver or any other kernel service to be linked into and removed from the kernel while it’s running

A

LKM (loadable kernel modules) support

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

Solaris command that list modules currently loaded

A

Modinfo

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

The Solaris kernel is configured at boot time and can be modified by user. Where are the settings located?

A

etc/system file

17
Q

Solaris command used to display kernel parameters and values

18
Q

Linux command used to display status of loadable Kernel modules

19
Q

Linux command used to see all possible kernel parameters

20
Q

Linux file where all kernel values are loaded when system boots

A

/etc/sysctl.conf

21
Q

Process Interruption caused by some event external to the current running process. A signal generated by the hardware.

22
Q

Error or exception condition generated within current running process, software written to catch an exception generated by the CPU.

23
Q

Used to view current running processes and their states

24
Q

This performs a power-on self-test in the MBR is executed from /etc/rc.d/rd*.d and spawns a login.

A

Basic input / output phase BIOS

25
This is the single most important piece of software on the system, it's dynamically configurable with the capability to make changes during boot. Executes /sbin/init
GRUB
26
The default run level in Solaris is __ and in Linux it is __
3 | 5
27
A directory for each run level is located in
/etc/rc.d directory
28
The ___ is a utility; a script that controls the automatic boot process after being called by init.
rc (run control) script
29
User limits imposed on resources are set in?
/etc/security/limits.conf
30
Unix does not apply a system call that creates a new process running a particular program, instead an existing process clones itself to create a new process by using the fork system call
Parent PID
31
Kernel assigns a unique ID number to every process
Process ID PID
32
these files are created either when an executing process is terminated by a kill signal or when something goes wrong during process execution
Core dump files
33
What are the three characteristics of core files
Size Purpose Security
34
This is determined by the amount of memory consumed by a process during its execution
Core file size
35
______ ______ are intended to debug application programs to identify problems
Core files purpose