Linux Flashcards

1
Q

LINUX HISTORY
<=============>

A

LINUX HISTORY
<=============>

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

When was linux started?

A

Linux is based on the unix operating system which was created in 1969 by Ken Thompson and Dennis Ritchie. In 1991 Linus Torvalds started working on the Linux kernel.

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

General
<========>

A

General
<========>

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

What are the three main parts of a Linux system?

A

The Hardware such as cpu, memory and disks.
The Kernel which is the core of the operating system, it manages the hardware and tells it how to interact with the system.
The User Space is where user are allowed to interact with the system.

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

What are the main distros of Linux currently?

A

Debian - Made up of only open-source software, known for being stable.
Red Hat Enterprise Linux - mostly used by enterprise.
Ubuntu - based on Debian
Fedora - is the base for red Hat
Linux Mint - is a lightweight version of Ubuntu
Gentoo - highly configurable for advance users.
Arch Linux - for advance users
OpenSUSE - completely open source second oldest distro.

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

COMMAND LINE
<============>

A

COMMAND LINE
<============>

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

What is the shell?

A

The shell is a program that takes your commands and passes them to the operating system to perform. The default shell for most Linux systems bash(bourne again shell)

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

$ echo hello world

A

This command simple echos the arguments to standard out.

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

$pwd

A

“Print working directory”
Prints the directory you are currently in.

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

Absolute path?

A

The absolute path starts from the root directory ‘/’ and ends with your destination directory.

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

Relative path?

A

A realative path starts from your current directory and end at your destination directory.

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

$cd

A

“change directory”
Is a tool that allows you to move from one directory to another. It can take an absolute or relative path.

$ cd /home/pete/Pictures

Shortcuts
cd . Current directory
cd .. parent directory
cd ~ home directory
cd - previous directory

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