Operating System: Common features and tools of the Linux client/desktop OS Flashcards
CompTIA A+ 220-1102 Exam Criteria
What does pwd function for in the linux command line tool do?
Shows Current directory
What is the Bash shell?
The bash shell can be used to manage files and directories on a linux operating system. Specific commands are used to accomplish these tasks.
What is the linux command line to switch users?
su
How can I elevate my privelages to superuser?
Sudo
How can I navigate to and from directories in linux command tool?
CD
What linux command do I use to search for particular file pattern?
The grep filter searches a file for a particular pattern of characters and displays all lines that contain that pattern.
How can you list the contents of a current directory in linux command line tool?
ls
How can I move or rename files in the linux command tool?
mv
How can I copy files in the linux command tool?
Cp – copies files and directories
Cp test1.txt ~/Desktop
How can I remove files in linux command tools?
Rm – Does not remove directories by default (use –r options\ or –d if directory is empty
How can I modify permissions of files?
Sudo chmod a-w test1.txt
Sudo chmod a+w test1.txt
How can I change ownerships over files?
chown
What command line tool in linux can I use to edit Files?
Vi/Vim are complex and powerful text editors while Nano is a lightweight, simplified editor.
what tool can I use to find files in linux?
./Documents/ test*
I need to find the network configuration in linux command line tool?
ifconfig