Display and manipulate route and network interfaces.
ifconfig
This distro family has a default package manager called dpkg
Debian
This man is responsible for the creation of the Linux kernel.
Linus Torvalds
In scripting, this option will have the system output something to the person running the script
echo
What does the Command "ls" do?
List directory contents
Similar to traceroute but doesn't require root privileges.
tracepath
This distro is one of the only distros that require payment for support
Red Hat
This was the year the Linux kernel was first developed.
1991
This is the utility that will run the .sh script
bash
What command lists all files including hidden files in the current directory?
ls -al
Display connection information.
netstat
RPM is to Yum as dpkg is to ?
Apt-Get
This recursive acronym stands for GNU's Not Unix.
GNU
When a script starts with these two symbols, the Linux system knows it is a bash script
#!
This command will allow you to search for something inside of a file
grep
Query DNS related information.
dig
sudo yum install emacs
Explain what the following command will do:
tar -cvf tecmint-14-09-12.tar /home/tecmint/
The command will create a tar archive file tecmint-14-09-12.tar for a directory /home/tecmint in the current working directory.
You are able to create these within the script so that there are changing inputs from multiple areas
variable
Command, and also service, that allows for secure logins to a remote machine via the terminal.
ssh
Used to configure wireless network interface.
iwconfig
This distro is a very common replacement for the complexities and cost of Red Hat.
CentOs
What would I need to replace the * in this command with so it will use the gunzip archive type?
tar cvzf MyImages-14-09-12.tar.* /home/MyImages
gz
What would the output be if the following script was run with the input of 110
Hey that's a large number and pwd
Running this command will change the permission on a file so that the Owner has full permissions and everyone else has read-only permissions for the file named command.txt.
chmod 744 command.txt