Listing Running Processes:
ដើម្បីមើលនូវprocessesរបស់យើង យើងអាចប្រើនូវ ps command
Example:
ដើម្បីទទួលបាននូវ more information យើអាចប្រើនូវ-f(full) សំរាប់ps
Example:
Description of all fields ដែលបង្ហាញដោយps command
Column | Description |
UID | User ID that this process belongs to (the person running it). |
PID | Process ID |
PPID | Parent process ID (the ID of the process that start it). |
C | CPU utilization of process. |
STIME | Process start time. |
TTY | Terminal type associated with the process. |
TIME | CPU time take by the process. |
CMD | The command that started this process. |
Stopping Precesses
ប្រសិនបើយើងចង់kill process(background process) ដំបូងយើងត្រូវស្គាល់នូវJob ID ជាមុនសិន ដោយប្រើប្រាស់ps command បន្ទាប់មកប្រើនូវkill command
Example:
Parent and Child Processes
គ្រប់ Linux process និមួយៗមាននូវលេខID ចំនួនពីរគឺProcess ID(PID) និង Parent Process ID(PPID)។ចំពោះuser process និមួយៗគឺមាននូវ Parent Process ID មួយ។
Zombie and Orphan Processes
នៅពេលដែល Child Process ត្រូវបានKilled នោះ Parent Process ត្រូវបានដឹងតាមរយះSIGCHLD signal បន្ទាប់មកParentអាចធ្វើការងារផ្សេងទៀតរឺRestart new Child។ហើយពេលខ្លះ Parent Process ត្រូវបានKill មុនChild Process ក្នុងករណីនេះ Parent of All Processes init process ក្លាយជាParent Process ថ្មី ហើយត្រូវបានគេហៅថា Orphan Process។នៅពេលដែលProcess មួយត្រូវបានKill ហើយps command និងធ្វើការlisting នូវProcessជាមួយនូវអក្សរ Z state ករណីនេះគេហៅថាZombie Process។
The top Command:
top Command គឺប្រើសំរាប់showនូវProcesses ដែល Sorted តាម various criteria
Linux Communication
The ping Utility:
The ping Command ប្រើសំរាប់ send an echo request ទៅកាន់ host ណាដែល available នៅលើបណ្តាញNetwork។យើងអាចប្រើCommand នេះដើម្បីត្រួតពិនិត្យមើលremote host respond ល្អរឺមិនល្អ។
Syntax:
ping hostname or ip-address
The ftp Utility:
Utilityអនុញ្ញាតិអោយយើងអាចUpload រឺ Download File ពីComputer មួយទៅ Computer មួយទៀត។
Syntax:
ftp hostname or ip-address
Command ដែលប្រើជាមួយftp Command:
Command | Description |
put filename | Upload filename from local machine to remote machine |
get filename | Download filename from remote machine to local machine. |
mput file list | Upload more the one files from local machine to remove machine. |
mget file list | Download more than one files from remote machine to local machine. |
prompt off | Turn prompt off , by default you would be prompted to upload or download movies using mput or mget commands. |
prompt on | Turns prompt on. |
dir | List all the files available in the current directory of remote machine. |
cd dirname | Change directory to dimame on remote machine. |
lcd dirname | Change directory to dimame on local machine. |
The finger Utility:
The finger Command ប្រើសំរាប់displayនូវរាល់Information អំពីUsersនៅhost។ Host អាចជាLocal រឺ Remote។
Post a Comment