ln Linux Command – ln ใช้ในการสร้าง link เชื่อมโยงกันระหว่าง file คำสั่ง ตัวอยากสร้าง file test1 $ echo ‘hello’ > test1 $ ls -ltr total 4 -rw-rw-r– 1 root root 6 May 8 17:55 test1 $ cat test1 hello 1. สร้าง hard link ไปยัง test1 ln <file1> <file2> $ ln test1 test2 $ ls -ltr total…
less – Linux Command คำสั่งอ่านข้อมูลและค้นหาข้อมูลใน file
less Linux Command – less ใช้ในการอ่านข้อมูลและค้นหาข้อมูลใน file คำสั่ง 1. เปิดอ่าน file $ less sample.txt Line 1 Hi i am a good boy. I am x . Be cool and calm Happy birthday I am Bond 00 7 Eurekaa !!! I Got it ! Yes No NOoooooooo Yesssssssssssssss yes sample.txt (END) ออกจาก prompt ด้วยการกด q …
kill – Linux Command คำสั่งส่ง Signal หรือยกเลิกการทำงาน process
kill Linux Command – kill ใช้ในการยกเลิกการทำงานของ process โดยส่ง Signal เข้าไป คำสั่ง แสดงรายการของ Signal $ kill -l 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGSTKFLT 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20)…
join – Linux Command คำสั่งเชื่อมข้อมูล 2 file ด้วย field ที่เหมือนกัน
join Linux Command – join ใช้ในการเชื่อมข้อมูล 2 file ด้วย field ที่เหมือนกัน คำสั่ง จากตัวอย่าง file1 และ file2 ต้องทำการจัดเรียงลำดับ field ที่จะเป็น key ในการ join ก่อนทุกครั้ง $ cat file1 dog,13 ant,10 bat,11 cat,12 boy,14 man,23 rat,21 $ cat file2 rat,small ant,small bat,small cat,small dog,large boy,large man,large $ cat file1 |sort > file1.sort $ cat file2 |sort >…
info – Linux Command คำสั่งข้อมูลโปรแกรมบนระบบทั้งหมดที่ใช้งาน
info Linux Command – info ใช้ในการเช็กข้อมูลโปรแกรมบนระบบทั้งหมดที่ใช้งาน คำสั่ง info $ info File: dir, Node: Top, This is the top of the INFO tree. This is the Info main menu (aka directory node). A few useful Info commands: ‘q’ quits; ‘?’ lists all Info commands; ‘h’ starts the Info tutorial; ‘mTexinfo RET’ visits the Texinfo manual, etc.…
id – Linux Command คำสั่งแสดงข้อมูล user, group ในระบบ
id Linux Command – id ใช้ในการแสดงข้อมูล user, group ในระบบ คำสั่ง 1. แสดงข้อมูล user ทั้งหมด $ id uid=1000(sai) gid=1000(sai) groups=1000(sai),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),110(lxd),113(sambashare),118(lpadmin) $ id root uid=0(root) gid=0(root) groups=0(root) 2. แสดงข้อมูล user id $ id -u 1000 3. แสดงข้อมูล group id $ id -g 1000 โครงสร้างคำสั่ง id [OPTION]… [USER] รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงข้อมูล user, group ในระบบ โดยระบุข้อมูล…
hostname – Linux Command คำสั่งแสดงข้อมูลชื่อของเครื่อง server
hostname Linux Command – hostname ใช้ในการแสดงข้อมูลชื่อของเครื่อง server คำสั่ง hostname $ hostname Saixiii $ hostname -d com $ hostname -i 19.18.1.2 โครงสร้างคำสั่ง hostname [-a|–alias] [-d|–domain] [-f|–fqdn|–long] [-A|–all-fqdns] [-i|–ip-address] [-I|–all-ip-addresses] [-s|–short] [-y|–yp|–nis] hostname [-b|–boot] [-F|–file filename] [hostname] hostname [-h|–help] [-V|–version] domainname [nisdomain] [-F file] ypdomainname [nisdomain] [-F file] nisdomainname [nisdomain] [-F file] dnsdomainname รายละเอียด…
head – Linux Command คำสั่งแสดงข้อมูลบางส่วนภายใน file
head Linux Command – head ใช้ในการแสดงข้อมูลบางส่วนภายใน file คำสั่ง 1. แสดงข้อมูลส่วนบนใน file head <file> $ head head.txt HEAD(1) User Commands HEAD(1) NAME head – output the first part of files SYNOPSIS head [OPTION]… [FILE]… DESCRIPTION Print the first 10 lines of each FILE to standard output. With more than one FILE, precede each with a…
gunzip – Linux Command คำสั่งยกเลิกการบีบอัดข้อมูล file
gunzip Linux Command – gunzip ใช้ในการยกเลิกการบีบอัดข้อมูล file คำสั่ง ตังอย่าง file zip data $ ls -ltr data.gz -rw-rw-r– 1 root root 5084 May 8 15:16 data.gz 1. ทำการ unzip file ข้อมูล gunzip <zip file> $ gunzip data.gz $ ls -ltr data* -rw-r–r– 1 root root 11421 May 8 15:07 data 2. ทำการแสดงข้อมูลภายใน zip file โดยไม่ได้…
gzip – Linux Command คำสั่งบีบอัดข้อมูล file หรือ การ zip file
gzip Linux Command – gzip ใช้ในการบีบอัดข้อมูล file หรือ การ zip file คำสั่ง ตังอย่าง file data $ ls -ltr data -rw-r–r– 1 root root 11421 May 8 15:07 data 1. ทำการ zip file ข้อมูล gzip <file> $ gzip data $ ls -ltr data* -rw-r–r– 1 root root 5084 May 8 15:07 data.gz 2. ทำการ…