linux command

wc – Linux Command คำสั่งนับจำนวนคำและบรรทัดจาก file

wc Linux Command – wc ใช้ในการนับจำนวนคำและบรรทัดจาก file   คำสั่ง ตัวอย่าง file1 $ cat file1 aaaaaaaaaaa bbbbbbbbbbb ccccccccccc ddddddddddd eeeeeeeeeee fffffffffff ggggggggggg   แสดงจำนวนบรรทัด, คำ, ขนาด file $ wc file1 7 7 84 file1 7 บรรทัด 7 คำ 84 bytes   โครงสร้างคำสั่ง  wc [OPTION]… [FILE]… wc [OPTION]… –files0-from=F   รายละเอียด เป็นคำสั่งที่ใช้ในการนับจำนวนคำและบรรทัดจาก file   Option -c, –bytes…

Read More
linux command

watch – Linux Command คำสั่ง monitor process ที่ทำงานอยู่

watch Linux Command – watch ใช้ในการ monitor process ที่ทำงานอยู่   คำสั่ง watch <command> $ watch free Every 2.0s: free Wed May 10 13:09:54 2017 total used free shared buff/cache available Mem: 3969412 2304100 834428 66476 830884 1316136 Swap: 1756156 765192 990964 total used free shared buff/cache available Mem: 3969412 2302888 835672 66476 830852 1317392 Swap: 1756156…

Read More
linux command

vdir – Linux Command คำสั่งแสดงข้อมูล directory

vdir Linux Command – vdir ใช้ในการแสดงข้อมูล directory   คำสั่ง vdir $ vdir total 8 -rw-rw-r– 2 root root 6 May 8 17:55 test1 -rw-rw-r– 2 root root 6 May 8 17:55 test2 lrwxrwxrwx 1 root root 5 May 8 17:59 test3 -> test1   โครงสร้างคำสั่ง  vdir [OPTION]… [FILE]…   รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงข้อมูล directory คล้ายคำสั่ง dir และ ls…

Read More
linux command

userdel – Linux Command คำสั่งลบ user ออกจากระบบ

userdel Linux Command – userdel ใช้ในการลบ user ออกจากระบบ   คำสั่ง ลบข้อมูล user พร้อมกับ directory user -r <username> $ userdel -r username   โครงสร้างคำสั่ง  userdel [options] LOGIN   รายละเอียด เป็นคำสั่งที่ใช้ในการลบ user ออกจากระบบ   Option  -f, –force This option forces the removal of the user account, even if the user is still logged in. It also forces userdel…

Read More
linux command

usermod – Linux Command คำสั่งเปลี่ยนแปลงข้อมูลของ user

usermod Linux Command – usermod ใช้ในการเปลี่ยนแปลงข้อมูลของ user   คำสั่ง usermod -d <user homepath> <username> $ usermod -d /home/exampleusernew exampleuser   โครงสร้างคำสั่ง  usermod [options] LOGIN   รายละเอียด เป็นคำสั่งที่ใช้ในการเปลี่ยนแปลงข้อมูลของ user   Option  -a, –append Add the user to the supplementary group(s). Use only with the -G option. -c, –comment COMMENT The new value of the user’s password file…

Read More
linux command

useradd – Linux Command คำสั่งสร้าง user และจัดการ user บนระบบ

ueradd Linux Command – useradd ใช้ในการสร้าง user และจัดการ user บนระบบ   คำสั่ง 1. แสดงรายละเอียดของ user ที่ใช้งาน $ sudo useradd -D GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/sh SKEL=/etc/skel CREATE_MAIL_SPOOL=no   2. สร้าง user บน ระบบ useradd <username> $ useradd newperson   โครงสร้างคำสั่ง  useradd [options] LOGIN useradd -D useradd -D [options]   รายละเอียด เป็นคำสั่งที่ใช้ในการสร้าง user และจัดการ user บนระบบ จำเป็นต้องใช้…

Read More
linux command

units – Linux Command คำสั่งในการแปลงค่าหน่วยวัด

units Linux Command – units ใช้ในการในการแปลงค่าหน่วยวัด   คำสั่ง unit prompt $ units Currency exchange rates from www.timegenie.com on 2015-10-14 2919 units, 109 prefixes, 88 nonlinear units You have: mile You want: km * 1.609344 / 0.62137119 You have: furlongs per fortnight You want: m/s * 0.00016630986 / 6012.8727 You have: (400 W/m^2 / stefanboltzmann)^(1/4) You have:…

Read More
linux command

uniq – Linux Command คำสั่งในการจัดเรียงข้อมูลแบบไม่ซ้ำกัน

uniq Linux Command – uniq ใช้ในการจัดเรียงข้อมูลแบบไม่ซ้ำกัน   คำสั่ง ตัวอย่าง file test $ cat test hello world HEllo WorlD 2 Bye 1 bYe   ทำการ sort ข้อมูล $ cat test |sort > test.sort $ cat test.sort 1 2 bYe Bye hello HEllo world WorlD   1. จัดเรียงข้อมูลไม่ซ้ำกัน uniq <file> $ uniq test.sort 1 2 bYe Bye…

Read More
linux command

unexpand – Linux Command คำสั่งเปลี่ยน space เป็น tab

unexpand Linux Command – unexpand ใช้ในการเปลี่ยน space เป็น tab   คำสั่ง ตัวอย่าง file test1 มี space เป็นตัวแบ่ง $ cat -vet test1 1 hello$ 2 world$ 3 bye$   ทำการเปลี่ยน space เป็น tab (^I) unexpand -a <file> $ unexpand -a test1 > test2 $ cat -vet test2 1^Ihello$ 2^Iworld$ 3^Ibye$   โครงสร้างคำสั่ง  unexpand [OPTION]… [FILE]…  …

Read More
linux command

uname – Linux Command คำสั่งแสดงชื่อระบบของ server

uname Linux Command – uname ใช้ในการแสดงชื่อระบบของ server   คำสั่ง uname $ uname Linux $ uname -a Linux xxxx 4.4.0-62-generic #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux   โครงสร้างคำสั่ง  uname [OPTION]…   รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงชื่อระบบของ server ทำงานคล้ายคำสั่ง arch แต่มีข้อมูลรายละเอียดมากกว่า   Option -a, –all print all information, in the following order, except omit -p…

Read More