linux command

nl – Linux Command คำสั่งแสดงเลขที่บรรทัดของข้อมูลใน file

nl Linux Command – nl ใช้ในการแสดงเลขที่บรรทัดของข้อมูลใน file   คำสั่ง ตัวอย่าง file1 $ cat file1 aaaaaaaaaaa bbbbbbbbbbb ccccccccccc ddddddddddd eeeeeeeeeee fffffffffff ggggggggggg   nl <file> $ nl file1 1 aaaaaaaaaaa 2 bbbbbbbbbbb 3 ccccccccccc 4 ddddddddddd 5 eeeeeeeeeee 6 fffffffffff 7 ggggggggggg   โครงสร้างคำสั่ง   nl [OPTION]… [FILE]…   รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงเลขที่บรรทัดของข้อมูลใน file   Option  Mandatory arguments to long…

Read More
linux command

nice – Linux Command คำสั่งจัดลำดับความสำคัญของ process

nice Linux Command – nice ใช้ในการจัดลำดับความสำคัญของ process   คำสั่ง nice $ nice 0   nice -n<number> <command> $ nice -n13 curl www.google.com <HTML><HEAD><meta http-equiv=”content-type” content=”text/html;charset=utf-8″> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF=”http://www.google.co.th/?gws_rd=cr&amp;ei=dUQRWciAKcH1vgTyhrr4AQ”>here</A>. </BODY></HTML>   โครงสร้างคำสั่ง   nice [OPTION] [COMMAND [ARG]…]   รายละเอียด เป็นคำสั่งที่ใช้ในการจัดลำดับความสำคัญของ process ซึ่งค่ายิ่งต่ำ(n) ยิ่งมี priority สูงและจะได้ cpu resource ไป process…

Read More
linux command

mv – Linux Command คำสั่งย้ายตำแหน่ง file หรือ directory

mv Linux Command – mv ใช้ในการคำสั่งย้ายตำแหน่ง file หรือ directory   คำสั่ง 1. ย้ายตำแหน่ง file mv <oldpath> <newpath> $ mv file1 test/. $ ls -ltr test total 4 -rw-r–r– 1 root root 49 May 8 16:14 file1   2. เปลี่ยนชื่อ file mv <oldfile> <newfile> $ ls -ltr total 4 -rw-r–r– 1 root root 49 May 8…

Read More
linux command

mount – Linux Command คำสั่งติดตั้งใช้งานอุปกรณ์ที่เชื่อมต่อ

mount Linux Command – mount ใช้ในการติดตั้งใช้งานอุปกรณ์ที่เชื่อมต่อ   คำสั่ง 1. แสดง mount list $ mount sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) udev on /dev type devtmpfs (rw,nosuid,relatime,size=1964668k,nr_inodes=491167,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=396944k,mode=755) /dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)   2. การ mount อุปกรณ์…

Read More
linux command

more – Linux Command คำสั่งอ่านข้อมูลและค้นหาข้อมูลใน file

more Linux Command – more ใช้ในการอ่านข้อมูลและค้นหาข้อมูลใน file   คำสั่ง 1. แสดงข้อมูลภายใน file more <file> $ more file1 ant,10 bat,11 cat,12 dog,13 boy,14 man,23 rat,21 2. แสดงข้อมูลโดยเริ่มจากบรรทัดที่ระบุ more +<line number> <file> $ more +3 file1 cat,12 dog,13 boy,14 man,23 rat,21   3. แสดงข้อมูลลัพธ์จากคำสั่งในหน้าแรก <command> | more ls |more file1 file2 test   โครงสร้างคำสั่ง   more [options] file……

Read More
linux command

mkdir – Linux Command คำสั่งสร้าง directory

mkdir Linux Command – mkdir ใช้ในการสร้าง directory   คำสั่ง mkdir <directory> $ mkdir test $ ls -ltr total 12 drwxrwxr-x 2 root root 4096 May 9 00:45 test   โครงสร้างคำสั่ง   mkdir [OPTION]… DIRECTORY…   รายละเอียด เป็นคำสั่งที่ใช้ในการสร้าง directory ย่อมาจาก “make directory”   Option Mandatory arguments to long options are mandatory for short options too. -m, –mode=MODE…

Read More
linux command

man – Linux Command คำสั่งแสดงคู่มือการใช้งาน program

man Linux Command – man ใช้ในการแสดงคู่มือการใช้งาน program   คำสั่ง man <command> $ man logname LOGNAME(1) User Commands LOGNAME(1) NAME logname – print user´s login name SYNOPSIS logname [OPTION] DESCRIPTION Print the name of the current user. –help display this help and exit –version output version information and exit AUTHOR Written by FIXME: unknown. REPORTING BUGS…

Read More
linux command

ls – Linux Command คำสั่งแสดงข้อมูลภายใน directory

ls Linux Command – ls ใช้ในการแสดงข้อมูลภายใน directory   คำสั่ง 1. แสดงข้อมูลภายใน directory ls <path> $ ls file1 file2 $ cd .. $ ls ./test1 file1 file2   2. แสดงข้อมูล file, directory, ขนาด, เวลา ls -l $ ls -l total 8 -rw-r–r– 1 root root 49 May 8 16:14 file1 -rw-r–r– 1 root root 70 May 8…

Read More
linux command

logname – Linux Command คำสั่งแสดงชื่อ user login

logname Linux Command – logname ใช้ในการแสดงชื่อ user login   คำสั่ง logname $ logname root   โครงสร้างคำสั่ง  logname [OPTION]   รายละเอียด เป็นคำสั่งที่ใช้ในการแสดงชื่อ user login ในขณะนั้น คล้ายๆคำสั่ง id แต่มีแค่ชื่อ user   Option  –help display this help and exit –version output version information and exit   กลุ่มคำสั่ง id   Reference: คำสั่ง Unix – Linux Command Linux, Unix   Author:…

Read More
linux command

locate – Linux Command คำสั่งใช้ในการค้นหา file หรือ directory

locate Linux Command – locate ใช้ในการค้นหา file หรือ directory   คำสั่ง locate <file> $ locate find /bin/btrfs-find-root /bin/findmnt /etc/apparmor.d/abstractions/apparmor_api/find_mountpoint /sbin/findfs /usr/bin/find   แสดงเฉพาะ basename $ locate -b <file>   ดูข้อมูล stat ของ locate catalog $ locate -S Database /var/lib/mlocate/mlocate.db: 14,942 directories 132,761 files 7,168,592 bytes in file names 3,062,580 bytes used to store database  …

Read More