"LAMP Programming Linux Video Tutorial" Virtual machine installation, Linux system installation, basic operation commands, VIM editor, Rpm software management, user and user group management, permission management, network card management, CD mounting, ssh practical functions , LAMP environment installation
Course playback address: http://www.php.cn/course/575.html
This video was created by Chuanzhi Podcast. The lecture style is:
The teacher’s lecture is friendly and natural, unpretentious, not pretentious or deliberately exaggerated, but eloquent Talking loudly and talking carefully, teachers and students have silent emotional exchanges in an atmosphere of equality, collaboration, and harmony, integrating the thirst and exploration of knowledge into a simple and real teaching situation, and students Gain knowledge through quiet thinking and silent approval.
The more difficult points in this video should be: vim, Linux operation, user operation introduction:
Normal mode
After starting vim, it is in normal mode by default. No matter what mode you are in, pressing the
Insert mode
Press i, I, a, A and other keys in normal mode to enter insert mode. Now just remember that pressing the i key will enter insert mode. In insert mode, corresponding characters are written when keystrokes are made.
Command Mode
In normal mode, press the : (English colon) key to enter command mode. In command mode, you can perform some input and execute some instructions provided by vim or plug-ins, just like in the shell. These instructions include setting up the environment, file operations, calling a function, etc.
Commonly used commands are: q (exit), q! (force exit), w (save), wq (save and exit).
Visual mode
Press v, V,
Here we also recommend downloading source code resources: http://www.php.cn/xiazai/ learn/2047
The courseware shares the courseware with you:
Video source code
Courseware
Documents, etc.
The above is the detailed content of Recommended Linux video resources for LAMP programming (source code courseware). For more information, please follow other related articles on the PHP Chinese website!