Overview Flashcards

1
Q

Source code availability of Linux vs Windows

A

Linux is Open Source Software, Windows is proprietary closed source

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

Cost of Linux vs Windows

A

Linux is free (RHEL support is not free but OS is), Windows is licensed per installation

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

User interface of Linux vs Windows

A

Linux is customisable (GNOME/KDE/XFCE), Windows has a standard GUI that ships with the OS

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

Software management on Linux vs Windows

A

Linux uses package managers (APT/YUM/Pacman) which handle dependencies, Windows users standalone executables (.exe/.msi) which often won’t install dependencies

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

Security of Linux vs Windows

A

Linux OSS model makes it generally more secure than Windows. Windows has strong tools e.g. Windows Defender but has many known and undiscovered vulnerabilities

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

File systems of Linux vs Windows

A

Linux uses EXT2/3/4, Btrfs/XFS/ZFS (hierarchical, everything is a file), Windows uses NTFS/exFAT/FAT32 (uses drive letters for file system separation)

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

What is Ubuntu?

A

User friendly distro for everyday computing and servers, based on Debian and owned by Canonical

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

What is Fedora?

A

Distro know for cutting edge features, Workstation for desktops and Server for servers, owned by Red Hat

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

What is Debian?

A

Known for it’s stability it is the foundation for many other distros

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

What is Red Hat Enterprise Linux (RHEL)?

A

Corporate level Linux distro provided by Red Hat, provides enterprise features, paid support, and strong stability

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

What is CentOS?

A

Free and open source clone of RHEL, owned by Red Hat

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

What is Arch?

A

Highly customisable distro focused on allowing the user to build and configure the system from the bare Linux essentials

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

What is Manjaro?

A

A wrapper distro for Arch to make it easier to manage configuration

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

What is OpenSUSE?

A

Distro that provides Linux build and test tools, used by sysadmins, devs, and desktop users. 2 versions are Tumbleweed (rolling release) and Leap (stable release)

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

What is Mint?

A

User friendly desktop distro with a strong focus of media drivers for video/audio/gaming experiences

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

What is Gentoo?

A

Source-based distro where users compile their software from source code. Optimised specifically for the hardware it’s running on

17
Q

What is Slakware?

A

One of the oldest distros known for it’s simplicity and minimalism

18
Q

What is Alpine?

A

Very secure and lightweight distro known for it’s resource efficiency and optimisations making it ideal for containerised applications

19
Q

What is Kali?

A

Distro designed for digital forensics and penetration testing. Loaded with security tools and based on Debian

20
Q

What was the clone model for RHEL/CentOS pre Feb 2021?

A

Fedora -> RHEL -> CentOS

21
Q

What was the clone model for RHEL/CentOS post Feb 2021?

A

Fedora -> CentOS Stream -> RHEL

22
Q

Why is CentOS know as as an upstream OS?

A

Features are pulled from CentOS Stream down to RHEL, currently on CentOS 9 but started with CentOS 8

23
Q

What is the name of the Linux super-user account?

A

Root

24
Q

Is the Linux file system case-sensitive?

A

Yes. File ‘abc’ is not the same as file ‘ABC’

25
Q

Are spaces appropriate in file and directory names?

A

No. Hyphens/dashes/underscores are preferred

26
Q

How to list file/directories in chronological order

A

ls -ltr (oldest to newest) ls -lt (newest to oldest)

27
Q

How can you install the ‘locate’ command?

A

Install package ‘mlocate’ and run ‘updatedb’ to update the file system index