ពាក្យបញ្ជាចំនួន ៥០ ដែលប្រើប្រាស់ច្រើនជាងគេ ជាមួយ លីនុច និង យូនិច (Linux/Unix) វគ្គ ៨ បន្ត
៣៥. ពាក្យបញ្ជា mkdir
ពាក្យបញ្ជានេះប្រើសំរាប់បង្កើតកន្សោមឯកសារ (directory) ៖
[root@chaitik ~]# mkdir test
[root@chaitik ~]# ls -latrh test/
total 8.0K
dr-xr-x---. 18 root root 4.0K Aug 23 08:54 ..
drwxr-xr-x. 2 root root 4.0K Aug 23 08:54 .
[root@chaitik ~]#
បង្កើតពហុកន្សោមឯកសារ នៅក្នុងកន្សោមឯកសារតែមួយ ដោយប្រើជំរើស -p ៖
[root@chaitik ~]# ls -latrh test
total 8.0K
dr-xr-x---. 18 root root 4.0K Aug 23 08:54 ..
drwxr-xr-x. 2 root root 4.0K Aug 23 08:54 .
root@chaitik ~]# mkdir -p test/test1/test2/test3/test4
[root@chaitik ~]# ls -altrh test/test1/test2/test3/test4/
total 8.0K
drwxr-xr-x. 3 root root 4.0K Aug 23 08:57 ..
drwxr-xr-x. 2 root root 4.0K Aug 23 08:57 .
[root@chaitik ~]#
៣៦. ពាក្យបញ្ជា ifconfig
ប្រើពាក្យបញ្ជានេះ ដើម្បីបង្ហាញនិង រៀបចំដំឡើង network interface នៅក្នុង ប្រពន្ធ័ លីនុច ។
បង្ហាញរាល់ interface ទាំងអស់ ៖
[root@chaitik ~]# ifconfig -a
eth0 Link encap:Ethernet HWaddr B8:AC:6F:1E:7C:AB
inet addr:203.223.42.61 Bcast:203.223.42.63 Mask:255.255.255.192
inet6 addr: fe80::baac:6fff:fe1e:7cab/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:22778730 errors:0 dropped:2760 overruns:0 frame:0
TX packets:21459996 errors:281464 dropped:0 overruns:0 carrier:281464
collisions:791391 txqueuelen:1000
RX bytes:340798604 (325.0 MiB) TX bytes:1451199589 (1.3 GiB)
Interrupt:21 Memory:fe6e0000-fe700000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:457431 errors:0 dropped:0 overruns:0 frame:0
TX packets:457431 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:871810381 (831.4 MiB) TX bytes:871810381 (831.4 MiB)
[root@chaitik ~]#
យើងអាច stop និង start ជាមួយ interface ដោយប្រើពាក្យបញ្ជា up និង down ៖
សូមអានលំអិត នូវអត្ថបទខាងក្រោយ ។
៣៧. ពាក្យបញ្ជា uname
ប្រើពាក្យបញ្ជានេះ ដើម្បីបង្ហាញអំពីពត៌មានសំខាន់ របស់ប្រពន្ធ័ (system) ដូចជា Kernel name, Host name, Kernel release number ។
ឧទាហរណ៍ ប្រើពាក្យបញ្ជានេះនៅលើ centos 6.3 ៖
[root@chaitik ~]# uname -a
Linux chaitik.com 2.6.32-220.17.1.el6.i686 #1 SMP Tue May 15 22:09:39 BST 2012 i686 i686 i386 GNU/Linux
[root@chaitik ~]#
៣៨. ពាក្យបញ្ជា whereis
ពេលដែលអ្នកចង់ស្វែងរកពាក្យបញ្ជាណាមួយ ដែលនៅក្នុងកន្សោមឯកសារ អ្នកអាចប្រើ whereis ៖
[root@chaitik ~]# whereis ls
ls: /bin/ls /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz
[root@chaitik ~]#
អ្នកអាចស្វែងរកជាមួយជំរើស -B -u ៖
[root@chaitik ~]# whereis -u -B /tmp -f lsmk
lsmk: /tmp/lsmk
[root@chaitik ~]#
៣៩. ពាក្យបញ្ជា whatis
ប្រើដើម្បីបង្ហាញ ម្ដងមួយបន្ទាត់ នៃខ្លឺមសារ ៖
[root@chaitik ~]# whatis ls
ls (1) - list directory contents
ls (1p) - list directory contents
[root@chaitik ~]# whatis ifconfig
ifconfig (8) - configure a network interface
[root@chaitik ~]#
Post a Comment