Introduction to Linux Flashcards

(18 cards)

1
Q

Name some remarkable distributions within Debian family.

A

Ubuntu, Linux Mint…

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

Name some remarkable distributions within Fedora family.

A

Red Hat Enterprise Linux (RHEL), CentOS, Oracle Linux….

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

Name some distributions within SUSE family.

A

SUSE Linux Enterprise Server (SLES), openSUSE…

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

Why Fedora contains significantly more SW than RHEL?

A

Because Fedora is created by a very diverse community.

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

Why is CentOS used in labs, activities, demos?

A

It is free to use and has much longer release cycle than Fedora.

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

What is the release cycle of Fedora?

A

6 months.

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

What is the Ubuntu default GUI?

A

It uses the Unity graphical interface, is GNOME-based and differs quite a bit visually from the interface on standard Debian as well as other distributions.

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

Name some linux bootloaders.

A

GRUB, Isolinux…

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

Blocks of a Linux distributions:

A
  • kernel,
  • Generic proprietary applications,
  • support services, commercial, community,
  • manuals for applications, commands, configuration etc.,
  • distribution specific application like package manager,
  • generic free apps like bash, LibreOffice X Windows system.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A free, popular alternative(s) to Red Hat?

A

CentOS, Scientific Linux

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

Basic filesystem division

A
  • conventional (ext2, ext4, NTFS),
  • flash storage FS (ubifs, JFFS2, YAFFS…)
  • database filesystems,
    special purpose filesystems (procfs, sysfs, tmpfs, debugfs….)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Why there are directories like /bin /lib and /usr/bin, /usr/lib?

A

Many distributions distinguish between core utilities needed for proper system operation and other programs, and place the latter in directories under /usr

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

Define initramfs.

A

The initramfs filesystem image contains programs and binary files that perform all actions needed to mount the proper root filesystem, like providing kernel functionality for the needed filesystem and device drivers for mass storage controllers.

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

Define udev

A

User Device is responsible for figuring out which devices are present, locating the drivers they need to operate properly, and loading them. After the root filesystem has been found, it is checked for errors and mounted.

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

What mount program does indicate?

A

The mount program instructs the operating system that a filesystem is ready for use, and associates it with a particular point in the overall hierarchy of the filesystem (the mount point). If this is successful, the initramfs is cleared from RAM and the init program on the root filesystem (/sbin/init) is executed.

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

What is init program used for?

A

init handles the mounting and pivoting over to the final real root filesystem. If special hardware drivers are needed before the mass storage can be accessed, they must be in the initramfs image
Besides starting the system, init is responsible for keeping the system running and for shutting it down cleanly. It acts as the “manager of last resort” for all non-kernel processes, cleaning up after them when necessary, and restarts user login services as needed when users log in and out.

17
Q

X Window System

A
  • Is loaded as the final step of booting,
  • a service called the display manager keeps track of the displays being provided, and loads the X server (so-called because it provides graphical services to applications, sometimes called X clients).
18
Q

How to start X alternatively?

A

Enter “startx” in the console.