mywiki:linux:linuxadmin
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| mywiki:linux:linuxadmin [2015/02/02 09:09] – shaoguoh | mywiki:linux:linuxadmin [2019/09/15 18:55] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | Linux Admin | + | Linux Admin |
| + | | Reference | [[http:// | ||
| - | ====== | + | ====== |
| + | Linux cron utility is an effective way to schedule a routine background job at a specific time and/or day on an on-going basis. | ||
| - | For example, add user jerry to groups ftp, www_data: | + | | Display all scheduled routine |
| + | | Add a scheduled routine | crontab -e | | ||
| - | useradd -G ftp, | + | Routine Format Example: |
| + | 0 4 * * * / | ||
| - | ====== Shorthand at the Command Prompt ====== | + | By the way, first 5 digits means: MIN HOUR DOM MON DOW CMD |
| + | |||
| + | 0 – 0th Minute | ||
| + | 04 – 04 AM | ||
| + | * – every day | ||
| + | * – every month | ||
| + | * – Every day of the week | ||
| + | |||
| + | ====== User groups management ====== | ||
| + | | Set user to a primary group list only | usermod -G groups username | ||
| + | | Add user to other groups based on current groups | usermod -aG additional_groups username | | ||
| + | | Display user's groups | groups username | | ||
| + | |||
| + | ====== how to know current shell ====== | ||
| + | * echo $0 - will print the program name... which in the case of shell is the actual shell | ||
| + | * ps -ef | grep $$ | grep -v grep - will look for current process ID in the list of running processes. Current process being shell, it will include shell. This is not 100% reliable | ||
| + | * echo $SHELL The path to the current shell is in SHELL variable for any shell. it seems not reliable ?? | ||
| + | |||
| + | |||
| + | |||
| + | ====== Shorthand at the Command Prompt ====== | ||
| * / : root directory | * / : root directory | ||
| * ./ : current directory | * ./ : current directory | ||
| Line 39: | Line 63: | ||
| * [Leftmousebutton] : Hold down left mouse button and drag to highlight text. Releasing the button copies the region to the text buffer under X and (if gpm is installed) in console mode. | * [Leftmousebutton] : Hold down left mouse button and drag to highlight text. Releasing the button copies the region to the text buffer under X and (if gpm is installed) in console mode. | ||
| * [Middlemousebutton] : Copies text from the text buffer and inserts it at the cursor location. With a two: button mouse, click on both buttons simultaneously. It is necessary for three: button emulation to be enabled, either under gpm or in XF86Config. | * [Middlemousebutton] : Copies text from the text buffer and inserts it at the cursor location. With a two: button mouse, click on both buttons simultaneously. It is necessary for three: button emulation to be enabled, either under gpm or in XF86Config. | ||
| + | |||
| + | |||
| + | ====== Typical Dot Files(.*) ====== | ||
| + | * .bash_logout - file executed by bash shell on logout | ||
| + | * .bash_profile - initialization of bash shell run only on login. Bash looks first for a .bash_profile file when started as a login shell or with the -login option. If it does not find .bash_profile, | ||
| + | * .bashrc - initialization command run when bash shell starts up as a non-login shell | ||
| + | * .cshrc - initialization commands that are run automatically (like autoexec.bat) when C shell is initiated | ||
| + | * .emacs - configuration file for emacs editor | ||
| + | * .fvwmrc - configuration file for fvwm window manager | ||
| + | * .fvwm2rc - configuration file for fvwm2 window manager | ||
| + | * .jedrc - configuration file for the jed text editor | ||
| + | * .lessrc - typically contains key bindings for cursor movement with the less command | ||
| + | * .login - initialization file when user logs in | ||
| + | * .logout - commands run when user logs out | ||
| + | * .wm_style - gives choice of default window manager if one is not specified in startx | ||
| + | * .Xdefaults - sets up X resources for individual user. The behavior of many different application programs can be changed by modifying this file. | ||
| + | * .xinitrc - initialization file when running startx. Can be used to activate applications, | ||
| + | * .xsession - configuration file for xdm | ||
| + | |||
| + | |||
| + | ====== Useful Files ====== | ||
| + | * /etc/bashrc : system-wide default functions and aliases for the bash shell | ||
| + | * / | ||
| + | * /etc/fstab : contains information on partitions and filesystems used by system to mount different partitions and devices on the directory tree | ||
| + | * / | ||
| + | * /dev/fd0 : first floppy disk drive | ||
| + | * / | ||
| + | * /dev/fd1 : second floppy disk drive | ||
| + | * /dev/hda : first IDE hard drive | ||
| + | * /dev/hdc : on many machines, the IDE cdrom drive. Most often, there is a symbolic link called /dev/cdrom which is just a link to the true cdrom driver file. | ||
| + | * /dev/null : used when you want to send output into oblivion | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * /etc/hosts : contains a list of host names and absolute IP addresses. | ||
| + | * / | ||
| + | * / | ||
| + | * /etc/group : similar to /etc/passwd but for groups | ||
| + | * / | ||
| + | * / | ||
| + | * /etc/issue : pre-login message. This is often overwitten by the / | ||
| + | * / | ||
| + | * /etc/motd : message of the day file, printed immediately after login. This is often overwritten by / | ||
| + | * /etc/mtab : shows currently mounted devices and partitions and their status | ||
| + | * /etc/passwd : contains passwords and other information concerning users who are registered to use the system. For obvious security reasons, this is readable only by root. It can be modified by root directly, but it is preferable to use a configuration utility such as passwd to make the changes. A corrupt /etc/passwd file can easily render a Linux box unusable. | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * /proc/kcore : The command ls -l /proc/kcore will give the amount of RAM on the computer. It's also possible to use the free command to get the same information (and more). | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| + | * / | ||
| * | * | ||
| + | |||
mywiki/linux/linuxadmin.1422839357.txt.gz · Last modified: (external edit)
