Week 4 - Linux Installation Flashcards
1
Q
Installing Linux OS Methods
Types of Installing Linux OS Methods
A
- Installing Linux OS via Windows PowerShell Subsystem
- Making a Bootable Flash Drive with Linux OS
- Burning a CD/DVD with Linux OS
- Virtual Installation (Using VirtualBox)
2
Q
Directory Management Commands
Displays the full path of the current working directory
What Command is this?
A
syntax: pwd
$ pwd - /home/user/directory
3
Q
Directory Management Commands
Changes the current directory to a specified one.
A
Syntax: cd [directory_name]
$ cd /home/user
$ cd ~/Documents
$ cd ..
4
Q
Directory Management Commands
Creates a new directory or multiple directories.
A
mkdir
5
Q
Directory Management Commands
Removes an empty directory.
A
rmdir
6
Q
Directory Management Commands
A