1.9 - CompTIA A+ Core 2

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/45

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

46 Terms

1
New cards

/etc/passwd

Linux config file that lists all registered users and their information, including username, password, UID, GID, and home directory.

2
New cards

/etc/shadow

Linux config file that contains hashed versions of all users' passwords, viewable only by root or elevated users.

3
New cards

/etc/hosts

Linux config file that stores IP addresses and their corresponding FQDNs, used to override DNS resolution.

4
New cards

/etc/resolv.conf

Linux config file that stores IP addresses of DNS nameservers for resolving domain names.

5
New cards

/etc/fstab

Stands for File Systems Table; lists all system disks and partitions on a Linux machine.

6
New cards

systemd

A system and service manager that starts, stops, and manages background services/software (daemons) in Linux.

7
New cards

Kernel

The core of the operating system that manages system processes and interacts with devices.

8
New cards

Kernel space

Protected area of memory used for kernel operations.

9
New cards

Bootloader

A computer component that starts the correct operating system from a bootable drive.

10
New cards

Root account

The administrative user account in a Unix or Linux operating system that has full access to all system commands and files.

11
New cards

ls

Command that lists the content in a directory, similar to the dir command in Windows.

12
New cards

pwd

Command that displays the current directory working path.

13
New cards

mv

Command used to move or rename files in a directory.

14
New cards

cp

Command used to duplicate files or directories.

15
New cards

rm

Command used to remove files or directories.

16
New cards

rm -r

Variant of the rm command used to remove directories.

17
New cards

chmod

Command that changes the mode (permissions) of a file system object.

18
New cards

Read, write, and execute - octal

7

19
New cards

Read, and write - octal

6

20
New cards

Read and execute (r-x) - octal

5

21
New cards

Read only (r--) - octal

4

22
New cards

Write and execute (-wx) - octal

3

23
New cards

Write only (-w-) - octal

2

24
New cards

Execute only (--x) - octal

1

25
New cards

No permissions (---) - octal

0

26
New cards

chown

Command that changes the owner of a file or directory to a specified user and/or group.

27
New cards

grep

Command used to search through many Linux files for a specified pattern.

28
New cards

find

Command used to locate a file by its name or extension.

29
New cards

fsck

Command used to check and repair a Linux filesystem.

30
New cards

mount

Command used to access and assign a storage device to a directory.

31
New cards

su

Command allowing a user to switch to the root account or another user account.

32
New cards

sudo

Command that allows execution of a command as the super/root user.

33
New cards

apt

Command used for installing, updating, and removing application packages.

34
New cards

dnf

Dandified YUM - a package manager for Linux that allows installation, removal, and updating of packages.

35
New cards

ip

Command used to manage network interfaces and view IP addresses.

36
New cards

ping

Command used to check the reachability of a device on a network.

37
New cards

curl

Command used to retrieve data via a URL.

38
New cards

dig

Command that provides lookup information from DNS servers.

39
New cards

traceroute

Command that tracks the path that packets take from one computer to another.

40
New cards

man

Command that displays a reference manual for a particular command.

41
New cards

cat

Command used to output the content of a file to the terminal.

42
New cards

top

Command that displays system resource usage information such as CPU and RAM.

43
New cards

ps

Command that shows all current processes on a Linux machine.

44
New cards

du

Command that shows disk usage for files or directories.

45
New cards

df

Command that displays available storage space on Linux file systems.

46
New cards

nano

A command-line text editor with syntax highlighting and other user-friendly features.