3.01

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:08 PM on 9/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

linux has super user account called

root

2
New cards

linux is

  • case sensitive, file ABC is not the same as file abc


3
New cards

when creating files avoid using

spaces

4
New cards

linux kernel is

Not an operating system, it is a small software that takes commands from users and passes them to system hardware

5
New cards

2 types of access

console

  • remote


6
New cards

command to remotely access linux machine

  • ssh 192.168.1.1


7
New cards

command to remote into linux machine with username

  • ssh -l <username> <ip-address>


8
New cards

get ip address

ip addr

9
New cards

command prompt order

username - hostname - prompt symbol

10
New cards

get prompt back

ctrl + c

11
New cards

get username

whoami

12
New cards

get hostname

hostname

13
New cards

there are 3 types of root on a linux system

  • root account → has access to all commands

  • / → root directory

  • /root → root home directory


14
New cards

change password

passwd userid

15
New cards

linux file systems

ext3, ext4, xfs

16
New cards

go to a different directory

cd

17
New cards

directory where log files are located

/var

18
New cards

directory where commands are located

/sbin

19
New cards

directory that contains files used by bootloader

/boot

20
New cards

directory that contains root user home directory

/root

21
New cards

directory that contains configuration files

/etc

22
New cards

directory that contains system devices

/dev

23
New cards

directory that contains everyday user commands

/usr/bin

24
New cards

directory that contains system file commands

/usr/sbin

25
New cards

directory that contains optional add ons

/opt

26
New cards

directory that contains running processes used only in memory

/proc

27
New cards

directory that contains programming library files

/usr/lib

28
New cards

directory that contains temporary files

/tmp

29
New cards

directory that contains system logs

/var

30
New cards

switch directories

cd

31
New cards

find which directory you are currrently in

pwd

32
New cards

list the contents of a file

ls <filename>

33
New cards

c: drive (windows) is the same as what in linux

/

34
New cards

become root

su -

35
New cards

wipe the screen

clear

36
New cards

when doing ls… anything that starts with - is a

file

37
New cards

when doing ls… anything that starts with d is a

directory

38
New cards

go one directory back

cd ..

39
New cards

when doing ls… anything that starts with l is a

link

40
New cards

an absolute path always begins with

/