Linux Commands And A Few Basic Concepts Flashcards

1
Q

Unix

A

Operating system developed at Bell Labs in the 1960s. Mac & Linux descended from it.

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

GNU

A

Richard Stallman’s 1984 free open source software alternative to Unix.

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

Linux Kernel

A

Developed by Linus Torvalds, the Kerbal facilitates the interaction between hardware and software. Torvalds combined the Linux Kerbal with existing GNU components to create a full operating system.

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

GNU/Linux

A

The combined Linux kernel and GNU

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

True UNIX

A

Trademark of the global consortium, Open Group.

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

Single UNIX Specification

A

Open Group consortium ‘s description of the core commands, features, utilities, etc. that define a UNIX OS. Open Group certifies OSs as UNIX compliant based on performance testing.

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

UNIX-like OS

A

Uncertified OS based on UNIX.

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

Linux distribution

A

Linux-based OS including the Linux kernal and, generally GNU tools, documentation, a package manager, a window system, and a desktop environment.

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

Shell

A

Computer interface surrounding an OS. Exposes OS services to users. Provides user-generated commands to the OS for execution. BASH, Zshell, and FISH are shells.

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

Terminal

A

A program that runs a shell. Today’s terminals are emulations of the older physical terminals.

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

BASH

A

Bourne Again SHell. Default shell on most Linux-based systems. The “Bourne” and “SH” refers to Stephen Bourne’s sh ancestor shell. It runs on most UNIX and UNIX-like systems.

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

whoami

A

Prints username.

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

man

A

When followed by a <command></command> prints the manual page for that command. When used alone, prompts for <command></command> name.

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

q

A

Quit or exit

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

clear

A

Clears screen

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

Synoosis

A

Syntax; accepted options for a command.

17
Q

clear -x

A

Clear the terminal screen, but do not attempt to clear the terminal’s scroll back buffer using the extended “E3” capability. Only clears visible screen.

18
Q

^l

A

clear

19
Q

pwd

A

Print working directory. Shows user where he/she is.

20
Q

ls

A

List contents of folder (simple).

21
Q

ls bin

A

List contents of the directory, bin.

22
Q

ls Documents/current/

A

Simple listing of the contents of the directory Documents/current/

23
Q

Absolute path

A

Complete directory path all the way back to the home (root) directory.

24
Q

Relative path

A

A directory reference within the current working directory, showing only the directory structure within the current directory.

25
Q

ls -l

A

Lists detailed directory contents: file permissions, file owner, group owner, file size, modification date, filename.

26
Q

ls -a

A

Short form of ls –all (list without ignoring entries starting with <.>).

27
Q

cd

A

Change directory. This is a shell command. It is not in the manual, but, rather, in the help guide.