• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back
If you want a script to run at 6am on a certain day, how would you accomplish this?
crontab -e OR vi /etc/init.d/cron = this will allow you to edit the crontab and add the script to as a cron job
What is a zombie process?
a child process who's parent has been killed or isn't working any more, it is a useless process YOU SHOULD kill -9
What is a daemon?
a daemon is a background task run by the system, much like the SYSTEM processes under task manager in Windows
How do you change the owner of a file?

How do you change the permissions of a file?
chown = changes the ownership of the file

chmod = change the permissions for the file of a user
What is a symbolic link?
It is a file or directory alias, much like a windows shortcut or network mapped drive
How do you view the last 10 lines of a file while monitoring?
tail -f <file/dir>