Friday, July 20, 2012

UNIX/Linux/Ubuntu system administration DAY 01

Force new users change their password at their first log-in

  1. top command shows more details than ps command. It is like running ps permanently while allowing users to change parameters or apply filters to the output.
  2. sar command shows the system's activities in a period of time (e.g. "> sar 10 5" get 5 samples in a 10-second interval.).
  3. "user@linuxhost:> find . > list_of_files.txt" creates a list of files and save it into list_of_files.txt.
  4. "user@linuxhost:> find  /user/local -xdev > list_of_files_in_local_folder.txt" creates a list of files in the folder /user/local and save it ist_of_files_in_local_folder.txt.
  5. "user@linuxhost:> grep passwd list_of_files.txt" search the location of the file passwd.
  6. "user@linuxhost:> ps uawx | head" shows the 10 processes using most of the CPU cycles.
  7. "user@linuxhost:> man -s 4 passwd" access information contained in section 4 of the command passwd.
  8. Create a new user (useradd), create the password for the user (passwd username) make sure the user's home directory exists and corresponds to the entry in the /etc/passwd file, verify that the user owns his or her home directory and startup files, and that they are readable (and, in the case of the home directory, executable). E.g. chown -R username /home/username; chgrp -R username /home/username.
  9. "user@linuxhost:> id username" to display user/group information.
  10. "user@linuxhost:> usermod -G admin -a username" add username to group admin.
  11. "root@linuxhost:> shutdown -P now" to shutdown the machine right away.
  12. Modify /etc/sudoers file in order to use command sudo. E.g. EDITOR="emacs" visudo; and use the usermod command at list number 10 above.
References
Erik M. Keller, Unix/Linux Survival Guide, Charles River Media, Inc. , 2006.

No comments:

Post a Comment

Mounting USB drives in Windows Subsystem for Linux

Windows Subsystem for Linux can use (mount): SD card USB drives CD drives (CDFS) Network drives UNC paths Local storage / drives Drives form...