Kiến Thức Tin Học

Toàn bộ câu lệnh trong Linux

Toàn bộ câu lệnh sử dụng trong Server Linux từ A – Z

Linux Commands Line A – Z

A     CommandDescription
# alias hh=’history’set an alias for a command – hh = history
# apropos …keyworddisplay a list of commands that pertain to keywords of a program , useful when you know what your program does, but you don’t know the name of the command
# apt-cache search [package]returns list of packages which corresponds string “searched-packages”
# apt-cdrom install [package]install / upgrade a deb package from cdrom
# apt-get install [package]install / upgrade a deb package
# apt-get updateupdate the package list
# apt-get upgradeupgrade all of the installed packages
# apt-get remove [package]remove a deb package from system
# apt-get checkverify correct resolution of dependencies
# apt-get cleanclean up cache from packages downloaded
# archshow architecture of machine(1)
# cat example.txt | awk ‘NR%2==1’remove all even lines from example.txt
# echo a b c | awk ‘{print $1}’view the first column of a line
# echo a b c | awk ‘{print $1,$3}’view the first and third column of a line
B    CommandDescription
# badblocks -v /dev/hda1check bad blocks on disk hda1
# bunzip2 file1.bz2decompress a file called ‘file1.bz2’
# bzip2 file1compress a file called ‘file1’
# find /var/log -name ‘*.log’ | tar cv –files-from=- | bzip2 > log.tar.bz2find all files with ‘.log’ extention and make an bzip archive
C      CommandDescription
# cal 2007show the timetable of 2007
# cat /proc/cpuinfoshow information CPU info
# cat /proc/interruptsshow interrupts
# cat /proc/meminfoverify memory use
# cat /proc/swapsshow file(s) swap
# cat /proc/versionshow version of the kernel
# cat /proc/net/devshow network adpters and statistics
# cat /proc/mountsshow mounted file system(s)
# cat file1view the contents of a file starting from the first row
# cat -n file1number row of a file
# cd /homeenter to directory ‘/ home’
# cd ..go back one level
# cd ../..go back two levels
# cdgo to home directory
# cd ~user1go to home directory
# cd –go to previous directory
# cd-paranoia -Brip audio tracks from a CD to wav files
# cd-paranoia —rip first three audio tracks from a CD to wav files
# cdrecord -v gracetime=2 dev=/dev/cdrom -eject blank=fast -forceclean a rewritable cdrom
# cdrecord -v dev=/dev/cdrom cd.isoburn an ISO image
# gzip -dc cd_iso.gz | cdrecord dev=/dev/cdrom –burn a compressed ISO image
# cdrecord –scanbusscan bus to identify the channel scsi
# chage -E 2005-12-31 user1set deadline for user password
# chattr +a file1allows write opening of a file only append mode
# chattr +c file1allows that a file is compressed / decompressed automatically by the kernel
# chattr +d file1makes sure that the program ignores Dump the files during backup
# chattr +i file1makes it an immutable file, which can not be removed, altered, renamed or linked
# chattr +s file1allows a file to be deleted safely
# chattr +S file1makes sure that if a file is modified changes are written in synchronous mode as with sync
# chattr +u file1allows you to recover the contents of a file even if it is canceled
# chgrp group1 file1change group of files
# chmod ugo+rwx directory1set permissions reading (r), write (w) and (x) access to users owner (u) group (g) and others (o)
# chmod go-rwx directory1remove permits reading (r), write (w) and (x) access to users group (g) and others (or
# chmod u+s /bin/file1set SUID bit on a binary file – the user that running that file gets same privileges as owner
# chmod u-s /bin/file1disable SUID bit on a binary file
# chmod g+s /home/publicset SGID bit on a directory – similar to SUID but for directory
# chmod g-s /home/publicdisable SGID bit on a directory
# chmod o+t /home/publicset STIKY bit on a directory – allows files deletion only to legitimate owners
# chmod o-t /home/publicdisable STIKY bit on a directory
# chown user1 file1change owner of a file
# chown -R user1 directory1change user owner of a directory and all the files and directories contained inside
# chown user1:group1 file1change user and group ownership of a file
# chshchange shell command
# chsh –list-shellsnice command to know if you have to remote into another box
# clock -wsave date changes on BIOS
# comm -1 file1 file2compare contents of two files by deleting only unique lines from ‘file1’
# comm -2 file1 file2compare contents of two files by deleting only unique lines from ‘file2’
# comm -3 file1 file2compare contents of two files by deleting only the lines that appear on both files
# cp file1 file2copying a file
# cp dir/* .copy all files of a directory within the current work directory
# cp -a /tmp/dir1 .copy a directory within the current work directory
# cp -a dir1 dir2copy a directory
# find /home/user1 -name ‘*.txt’ | xargs cp -av –target-directory=/home/backup/ –parentsfind and copy all files with ‘.txt’ extention from a directory to another
D      CommandDescription
# dateshow system date
# date 041217002007.00set date and time – MonthDayhoursMinutesYear.Seconds
# dd bs=1M if=/dev/hda | gzip | ssh user@ip_addr ‘dd of=hda.gz’make a backup of a local hard disk on remote host via ssh
# dd if=/dev/sda of=/tmp/file1backup content of the harddrive to a file
# dd if=/dev/hda of=/dev/fd0 bs=512 count=1make a copy of MBR (Master Boot Record) to floppy
# dd if=/dev/fd0 of=/dev/hda bs=512 count=1restore MBR from backup copy saved to floppy
# df -hshow list of partitions mounted
# dhclient eth0active interface ‘eth0’ in dhcp mode
# diff file1 file2find differences between two files
# dmidecode -qshow hardware system components – (SMBIOS / DMI)
# dos2unix filedos.txt fileunix.txtconvert a text file format from MSDOS to UNIX
# dosfsck /dev/hda1repair / check integrity of dos filesystems on disk hda1
# dpkg-query -W -f=’${Installed-Size;10}t${Package}n’ | sort -k1,1nshow the used space by installed deb packages, sorting by size (debian, ubuntu and alike)
# dpkg -i [package.deb]install / upgrade a deb package
# dpkg -r [package]remove a deb package from the system
# dpkg -lshow all deb packages installed on the system
# dpkg -l | grep httpdshow all deb packages with the name “httpd”
# dpkg -s [package]obtain information on a specific package installed on system
# dpkg -L [package]show list of files provided by a package installed on system
# dpkg –contents [package.deb]show list of files provided by a package not yet installed
# dpkg -S /bin/pingverify which package belongs to a given file
# du -sh dir1estimate space used by directory ‘dir1’
# du -sk * | sort -rnshow size of the files and directories sorted by size
# dump -0aj -f /tmp/home0.bak /homemake a full backup of directory ‘/home’
# dump -1aj -f /tmp/home0.bak /homemake a incremental backup of directory ‘/home’
E     CommandDescription
# e2fsck /dev/hda1repair / check integrity of ext2 filesystem on disk hda1
# e2fsck -j /dev/hda1repair / check integrity of ext3 filesystem on disk hda1
# ethtool eth0show network statistics of eth0
F   CommandDescription
# fdformat -n /dev/fd0format a floppy disk
# cp file file1outputs the mime type of the file as text
# find / -name file1search file and directory into root filesystem from ‘/’
# find / -user user1search files and directories belonging to ‘user1’
# find /home/user1 -name \*.binsearch files with ‘. bin’ extension within directory ‘/ home/user1’
# find /usr/bin -type f -atime +100search binary files are not used in the last 100 days
# find /usr/bin -type f -mtime -10search files created or changed within 10 days
# find / -name *.rpm -exec chmod 755 ‘{}’ \;search files with ‘.rpm’ extension and modify permits
# find / -xdev -name \*.rpmsearch files with ‘.rpm’ extension ignoring removable partitions as cdrom, pen-drive, etc.…
# find / -perm -u+sview all files on the system with SUID configured
# free -mdisplays status of RAM in megabytes
# fsck /dev/hda1repair / check integrity of linux filesystem on disk hda1
# fsck.ext2 /dev/hda1repair / check integrity of ext2 filesystem on disk hda1
# fsck.ext3 /dev/hda1repair / check integrity of ext3 filesystem on disk hda1
# fsck.vfat /dev/hda1repair / check integrity of fat filesystem on disk hda1
# fsck.msdos /dev/hda1repair / check integrity of dos filesystem on disk hda1
# fuser -km /mnt/hda2force umount when the device is busy
G     CommandDescription
# gpg -c file1encrypt a file with GNU Privacy Guard
# gpg file1.gpgdecrypt a file with GNU Privacy Guard
# grep Aug /var/log/messageslook up words “Aug” on file ‘/var/log/messages’
# grep ^Aug /var/log/messageslook up words that begin with “Aug” on file ‘/var/log/messages’
# grep [0-9] /var/log/messagesselect from file ‘/var/log/messages’ all lines that contain numbers
# grep Aug -R /var/log/*search string “Aug” at directory ‘/var/log’ and below
# groupadd [group]create a new group
# groupdel [group]delete a group
# groupmod -n moon sunrename a group from moon to sun
# grpckcheck correct syntax and file format of ‘/etc/group’ and groups existence
# gunzip file1.gzdecompress a file called ‘file1.gz’
# gzip file1compress a file called ‘file1’
# gzip -9 file1compress with maximum compression
H      CommandDescription
# hdparm -i /dev/hdadisplays the characteristics of a hard-disk
# hdparm -tT /dev/sdaperform test reading on a hard-disk
# head -2 file1view first two lines of a file
# host www.example.comlookup hostname to resolve name to ip address and viceversa
# hostnameshow hostname of system
I    CommandDescription
# iconv -llists known encodings
# iconv -f fromEncoding -t toEncoding inputFile > outputFileconverting the coding of characters from one format to another
# find . -maxdepth 1 -name *.jpg -print -exec convertbatch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick)
# ifconfig eth0show configuration of an ethernet network card
# ifconfig eth0 192.168.1.1 netmask 255.255.255.0configure IP Address
# ifconfig eth0 promiscconfigure ‘eth0’ in promiscuous mode to gather packets (sniffing)
# ifdown eth0disable an interface ‘eth0’
# ifup eth0activate an interface ‘eth0’
# init 0shutdown system(2)
# ip link showshow link status of all network interfaces
# iptables -t filter -Lshow all chains of filtering table
# iptables -t nat -Lshow all chains of nat table
# iptables -t filter -Fclear all rules from filtering table
# iptables -t nat -Fclear all rules from table nat
# iptables -t filter -Xdelete any chains created by user
# iptables -t filter -A INPUT -p tcp –dport telnet -j ACCEPTallow telnet connections to input
# iptables -t filter -A OUTPUT -p tcp –dport http -j DROPblock HTTP connections to output
# iptables -t filter -A FORWARD -p tcp –dport pop3 -j ACCEPTallow POP3 connections to forward chain
# iptables -t filter -A INPUT -j LOG –log-prefixLogging on input chain
# iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADEconfigure a PAT (Port Address Traslation) on eth0 masking outbound packets
# iptables -t nat -A PREROUTING -d 192.168.0.1 -p tcp -m tcp –dport 22 -j DNAT –to-destination 10.0.0.2:22redirect packets addressed to a host to another host
# iwconfig eth1show wireless networks
# iwlist scanwifi scanning to display the wireless connections available
K    CommandDescription
# kill -9 process_idforce closure of the process and finish it
# kill -1 process_idforce a process to reload configuration
L       CommandDescription
# last rebootshow history reboot
# ldd /usr/bin/sshshow shared libraries required by ssh program
# less file1similar to ‘more’ command but which allows backward movement in the file as well as forward movement
# ln -s file1 lnk1create a symbolic link to file or directory
# ln file1 lnk1create a physical link to file or directory
# locate \*.psfind files with the ‘.ps’ extension – first run ‘updatedb’ command
# logoutleaving session
# lsview files of directory
# ls -Fview files of directory
# ls -lshow details of files and directory
# ls -ashow hidden files
# ls *[0-9]*show files and directory containing numbers
# ls -lSr |moreshow size of the files and directories ordered by size
# ls -lhshow permits on files
# ls /tmp | pr -T5 -W$COLUMNSdivide terminal into 5 columns
# lsattrshow specials attributes
# lsmoddisplay kernel loaded
# lsof -p process_iddisplay a list of files opened by processes
# lsof /home/user1displays a list of open files in a given path system
# lspci -tvdisplay PCI devices
# lstreeshow files and directories in a tree starting from root(2)
# lsusb -tvshow USB devices
M     CommandDescription
# man pingdisplay the on-line manual pages for example on ping command – use ‘-k’ option to find any related commands
# dd if=/dev/hdc | md5sumperform an md5sum on a device, like a CD
# mii-tool eth0show link status of ‘eth0’
# mkbootdisk –device /dev/fd0 `uname -r`create a boot floppy
# mkdir dir1create a directory called ‘dir1’
# mkdir dir1 dir2create two directories simultaneously
# mkdir -p /tmp/dir1/dir2create a directory tree
# mke2fs /dev/hda1create a filesystem type linux ext2 on hda1 partition
# mke2fs -j /dev/hda1create a filesystem type linux ext3 (journal) on hda1 partition
# mkfs /dev/hda1create a filesystem type linux on hda1 partition
# mkfs -t vfat 32 -F /dev/hda1create a FAT32 filesystem
# mkisofs /dev/cdrom > cd.isocreate an iso image of cdrom on disk
# mkisofs /dev/cdrom | gzip > cd_iso.gzcreate a compressed iso image of cdrom on disk
# mkisofs -J -allow-leading-dots -R -Vcreate an iso image of a directory
# mkswap /dev/hda3create a swap filesystem
# mkswap /dev/hda3create a swap filesystem
# more file1view content of a file along
# mount /dev/hda2 /mnt/hda2mount disk called hda2 – verify existence of the directory ‘/ mnt/hda2’
# mount /dev/fd0 /mnt/floppymount a floppy disk
# mount /dev/cdrom /mnt/cdrommount a cdrom / dvdrom
# mount /dev/hdc /mnt/cdrecordermount a cdrw / dvdrom
# mount /dev/hdb /mnt/cdrecordermount a cdrw / dvdrom
# mount -o loop file.iso /mnt/cdrommount a file or iso image
# mount -t vfat /dev/hda5 /mnt/hda5mount a Windows FAT32 file system
# mount /dev/sda1 /mnt/usbdiskmount a usb pen-drive or flash-drive
# mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/sharemount a windows network share
# mount -o loop cd.iso /mnt/isomount an ISO image
# mount -t smbfs -o username=user,password=pass //WinClient/share /mnt/sharemount a windows network share
# mv dir1 new_dirrename / move a file or directory   [man]
N    CommandDescription
# nbtscan ip_addrnetbios name resolution
# netstat -tupshow all active network connections and their PID
# netstat -tuplshow all network services listening on the system and their PID
# netstat -rnshow routing table alike “route -n”
# newgrp – [group]log into a new group to change default group of newly created files
# nmblookup -A ip_addrnetbios name resolution
# nslookup www.example.comlookup hostname to resolve name to ip address and viceversa
P   CommandDescription
# pacman -S nameInstall package ‘name’ with dependencies
# pacman -R nameDelete package ‘name’ and all files of it
# passwdchange password
# passwd user1change a user password (only by root)
# paste file1 file2merging contents of two files for columns
# paste -d ‘+’ file1 file2merging contents of two files for columns with ‘+’ delimiter on the center
# ps -eafwdisplays linux tasks
# ps -e -o pid,args –forestdisplays linux tasks in a hierarchical mode
# pstreeShows a tree system processes
# pwckcheck correct syntax and file format of ‘/etc/passwd’ and users existence
# pwdshow the path of work directory

Đánh giá post

Related Articles

Back to top button