LFCS Exam Study Guide.
Install update - Answer✔yum update
Install Dev tools - Answer✔yum groupinstall "Development Tools"
Seach for software - Answer✔yum search (software)
install MATE desktop - Answer✔yum groupinstall "X Window System" "MATE Desktop"
Change to GUI on reboot - Answer✔systemctl set-default graphical.target
Change to GUI now - Answer✔systemctl isolate graphical.target
List files long listing - Answer✔ls -l
list files Inode entry - Answer✔ls -i
list files with human readable - Answer✔ls -lh
list all files including hidden - Answer✔ls -a
List files by last modified - Answer✔ls -ltr
List files by Type - Answer✔ls -F
copy a file - Answer✔cp
move or rename a file - Answer✔mv
remove or delete a file - Answer✔rm
how to be interactive for cp,mv, and rm - Answer✔(command) -i
how to recursivly cp,mv or rm files - Answer✔(command) -r | -R
what is file globbing? - Answer✔grouping files together using the *,?, or []
how to select one or more characters or files together - Answer✔(command) file* = all files
labled from "file" to "file...)
how to select only one character - Answer✔(command) file? = only files that equal "file" and
one additional character
how to group characters - Answer✔(command) [a] [b] [c]
1|Page