linux_flashcards

1
Q

who

A

Displays a list of users currently logged into the system, showing their usernames, terminals, login times, and remote hosts if applicable.

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

exit

A

Closes the current terminal session and logs you out of the shell. If inside an SSH session, it disconnects you from the remote system.

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

pwd

A

Prints the absolute path of the current working directory, which is where you are currently located in the filesystem.

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

ls

A

Lists all files and directories in the current working directory. Use ‘ls -l’ for detailed information and ‘ls -a’ to show hidden files.

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

cp

A

Copies a file or directory from one location to another. Syntax: ‘cp source_file destination’. Use ‘-r’ to copy directories recursively.

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

cat

A

Concatenates and displays the contents of a file directly in the terminal. Useful for quickly viewing file contents.

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

less

A

Opens a file for viewing in a scrollable format. Use arrow keys to navigate and press ‘q’ to exit.

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

more

A

Similar to ‘less’ but only allows forward navigation. Press Space (or enter) to scroll down and ‘q’ to exit.

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

head

A

Displays the first 10 lines of a file by default. Use ‘head -n X file’ to specify a different number of lines.

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

tail

A

Displays the last 10 lines of a file by default. Useful for monitoring log files in real-time using ‘tail -f filename’.

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

mkdir

A

Creates a new directory. Syntax: ‘mkdir new_directory’. Use ‘mkdir -p parent/child’ to create nested directories.

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

cd

A

Changes the current directory. Use ‘cd ..’ to move up one level or ‘cd /path/to/directory’ to switch to a specific location.

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

rm

A

Deletes a file permanently. Use ‘rm -r directory’ to remove directories and their contents recursively.

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

rmdir

A

Removes an empty directory. If the directory contains files, you must use ‘rm -r’ instead.

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

mv

A

Moves or renames files and directories. Syntax: ‘mv old_name new_name’ or ‘mv file /new/location’.

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

man

A

Displays the manual page for a given command, providing detailed information on its usage and options. Example: ‘man ls’.

17
Q

clear

A

Clears the terminal screen, removing all previous output but keeping the session active.

18
Q

What is the general form that we follow when using chmod?

A

chmod xxx filename

where xxx is the permission

19
Q

what base are setting permissions in?

A

octal (ex: 660)

20
Q

What do the three octal digits represent?

A

the three permission groups:
* The first digits sets the permissions for the owner.
* The second digit sets the permissions for the group
* The third digit sets the permissions for others.

21
Q

what does the string
-rw-rw—- mean?

A

beginning “-“ means file, if it were d it would be directory
*owner can read and write
*Group can read and write
*nobody can execute
*others cannot do anything