In Linux the command prompt utility is called what?
If you want to see the manual for command line in Linux what command utility can you use to view it?
Similar to Windows command prompt command “ dir” Linux also has a command to list the contents of a directory which is?
Just like in Windows you can use this command to change the current directory that you are viewing by typing what?
What is a super useful command that will allow you to search for a specific section of text in a file. Also allowing you to search many files at one time?
Because certain actions commands in Linux will require elevated permissions( admin privileges) what command will provide you with those elevated rights?
Because it can sometimes be hard in Linux command line to know exactly what directory you are currently inside of what command utility can you use to find out?
If you wanted to move a file or to rename it inside the command line what command would you use to achieve this?
If you wanted to make a copy of a file or directory what command would you use in Linux to achieve this?
In order to remove files or directories inside of Linux command line what command would you use?
If you wanted to create a directory inside of Linux command line what command would achieve this for you?
What command in Linux would allow you to adjust the read, write and execute permissions associated with a particular file?
0 = no rights(—),
1 = Execute only(–x),
2 = Write only(-w-),
3= Write and Execute(-wx),
4= Read only(r–),
5= Read and execute(r-x),
6= Read and Write(rw-) and
7= Read, Write and Execute(rwx).
And the User’s 3 digits are displayed first, Then the groups, and finally Others. So for the string 744 after the chmod command the 7 would be referring to the User, the 4 to the group and the other 4 for others. So for this command is saying the User get’s full read, write and execute permissions(7 or r-w-x) whereas the group and others only have read permissions( 4 or r–) this can be verified by using the “ ls -l” command.
There are a number of shortcuts that can be used with the cdmod command such as?
What command would you use In order to tell the system in command line to change the user and group ownership of a file?
If you wanted to view the wireless network configuration of a system in Linux what command could you use?
If you wanted to view the network configuration of a wired ethernet system in Linux what command could you use?
If you run into a Linux distribution that doesn’t have the command you are looking for or doesn’t understand it how can you add the command?
Similar to the task manager in Windows what command would allow you to view all of the current open processes on your system?
In order to be able to edit the configuration files to make configuration changes to many applications what command would you use?
In Linux what command would allow you to backup and restore an entire partition to an image in Linux?
** Notes this works the same for creating copies of iso files to a partition. Which again would be dd if=(/name.iso) of= ( Where you would like to make a copy to. e.g. drive name which will start with /dev/”something like sda” to id the drive being copied to.
What commands would you use to close down an application or program?
What are the 7 modes of file ownership when it comes to the chmod command inside Terminal?
0= no rights(—),
1 = Execute only(–x),
2 = Write only(-w-),
3= Write and Execute(-wx),
4= Read only(r–),
5= Read and execute(r-x),
6= Read and Write(rw-) and
7= Read, Write and Execute(rwx)