編集の要約なし |
|||
27行目: | 27行目: | ||
==カーネル管理== | ==カーネル管理== | ||
* mkinitramfs - initramfs image generator ( Debian ) | * mkinitramfs --- initramfs image generator ( Debian ) | ||
* dracut - initramfs image generator ( RH ) | * dracut --- initramfs image generator ( RH ) | ||
* dmsg - display Kernel message ring | * dmsg --- display Kernel message ring | ||
* lsmod - list Linux Kernel modules | * lsmod --- list Linux Kernel modules | ||
* insmod - insert a Kernel module | * insmod --- insert a Kernel module | ||
* rmmod - remove a Kernel module | * rmmod --- remove a Kernel module | ||
* depmod - generate modules.dep | * depmod --- generate modules.dep | ||
* modprobe - add and remove modules from Kernel | * modprobe --- add and remove modules from Kernel | ||
* modinfo - show information about a Kernel modules | * modinfo --- show information about a Kernel modules | ||
==システム管理== | ==システム管理== | ||
* hostname - hostname | * hostname --- hostname | ||
* hostnamectl - mamage hostname ( hostnamectl status ) | * hostnamectl --- mamage hostname ( hostnamectl status ) | ||
* uname - show system information | * uname --- show system information | ||
* arch - show system hardware name ( = uname -m) | * arch --- show system hardware name ( = uname -m) | ||
* top - show top processes | * top --- show top processes | ||
* df - disk free on filesystem | * df --- disk free on filesystem | ||
* du - disk used | * du --- disk used | ||
* free - free memory | * free --- free memory | ||
* vmstat - memory status | * vmstat --- memory status | ||
* init - system mamager | * init --- system mamager | ||
* initctl - ? | * initctl --- ? | ||
* systemctl - system mamager | * systemctl --- system mamager | ||
* chkconfig - old way of systemctl | * chkconfig --- old way of systemctl | ||
* runlevel - show runlevel | * runlevel --- show runlevel | ||
* update-rc.d - set System-V initial links | * update-rc.d --- set System-V initial links | ||
* sysctl - configure Kernel parameters | * sysctl --- configure Kernel parameters | ||
* ldd - list dynamic dependencies | * ldd --- list dynamic dependencies | ||
* ldconfig - ldd configure | * ldconfig --- ldd configure | ||
* logger - enter message to system log | * logger --- enter message to system log | ||
* journalctl - system log manager | * journalctl --- system log manager | ||
* halt - halt, power off, reboot machine | * halt --- halt, power off, reboot machine | ||
* shutdown - shutdown machine | * shutdown --- shutdown machine | ||
* busybox - command tool box | * busybox --- command tool box | ||
==プロセス管理== | ==プロセス管理== | ||
* pwdx - pwd for process | * pwdx --- pwd for process | ||
* ps - show processes | * ps --- show processes | ||
* pstree - show processes tree | * pstree --- show processes tree | ||
* pgrep - process grep | * pgrep --- process grep | ||
* pkill - process kill | * pkill --- process kill | ||
* pidof - process id open file | * pidof --- process id open file | ||
* lsof - list files opened by processes | * lsof --- list files opened by processes | ||
* fuser - identify file opening process | * fuser --- identify file opening process | ||
* kill - kill process | * kill --- kill process | ||
* nohup - run command without hup | * nohup --- run command without hup | ||
* jobs - show working jobs | * jobs --- show working jobs | ||
* bg - doing job at background | * bg --- doing job at background | ||
* fg - doing job at forgraound | * fg --- doing job at forgraound | ||
==ファイルシステム管理== | ==ファイルシステム管理== | ||
* mkfs - make file system | * mkfs --- make file system | ||
* fsck - file system check | * fsck --- file system check | ||
* mount - mount file system | * mount --- mount file system | ||
* umount - unmount file system | * umount --- unmount file system | ||
* mknod - create a special file | * mknod --- create a special file | ||
==ユーザ管理== | ==ユーザ管理== | ||
* last - show recent log-in users | * last --- show recent log-in users | ||
* lastlog - show last users login | * lastlog --- show last users login | ||
* w / who - show logged-in users | * w / who --- show logged-in users | ||
* users - show logged-in users | * users --- show logged-in users | ||
* useradd - add a user ( useradd -m -s /bin/bash -G sudo hoge ) | * useradd --- add a user ( useradd -m -s /bin/bash -G sudo hoge ) | ||
* userdel - delete a user ( userdel -r hoge ) | * userdel --- delete a user ( userdel -r hoge ) | ||
* usermod - modify a user | * usermod --- modify a user | ||
* groups - show user's groups | * groups --- show user's groups | ||
* groupadd - add a group | * groupadd --- add a group | ||
* groupdel - delete a group | * groupdel --- delete a group | ||
* groupmod - modify a group | * groupmod --- modify a group | ||
* chage - change / show user's age | * chage --- change / show user's age | ||
* chsh - change login shell | * chsh --- change login shell | ||
* finger - user's fingerprint | * finger --- user's fingerprint | ||
* chfn - change user's fingerprint | * chfn --- change user's fingerprint | ||
* passwd - change user's password | * passwd --- change user's password | ||
* gpasswd - manage group password | * gpasswd --- manage group password | ||
* chpasswd - change password in batch mode | * chpasswd --- change password in batch mode | ||
* pwck - check password file | * pwck --- check password file | ||
* grpck - check group file | * grpck --- check group file | ||
* vipw / vigr - edit password / group file | * vipw / vigr --- edit password / group file | ||
* pwconv - convert password file | * pwconv --- convert password file | ||
* edquota - edit quota for user disk | * edquota --- edit quota for user disk | ||
* write / wall - write a massage to all users | * write / wall --- write a massage to all users | ||
* htpasswd - httpd basic authentication | * htpasswd --- httpd basic authentication | ||
* htdigest - httpd digest authentication | * htdigest --- httpd digest authentication | ||
==ユーザツール== | ==ユーザツール== | ||
* id - show user's id | * id --- show user's id | ||
* whoami - who am i ? | * whoami --- who am i ? | ||
* date - show date | * date --- show date | ||
* cal - show calendar | * cal --- show calendar | ||
* set - show shell environment | * set --- show shell environment | ||
* env - show user's enviroment | * env --- show user's enviroment | ||
* printenv - show environment | * printenv --- show environment | ||
* export - export environment from shell's env to user's env | * export --- export environment from shell's env to user's env | ||
* alias / unalias - make alias | * alias / unalias --- make alias | ||
* history - show command history | * history --- show command history | ||
* fc - ? | * fc --- ? | ||
* su - switch user | * su --- switch user | ||
* sudo - switch user do | * sudo --- switch user do | ||
* sg - switch group | * sg --- switch group | ||
* chroot - run command with special root directory | * chroot --- run command with special root directory | ||
* nice - set program priority | * nice --- set program priority | ||
* renice - alter program priority | * renice --- alter program priority | ||
* crontab - manage cron | * crontab --- manage cron | ||
* expect - expect response | * expect --- expect response | ||
* at - ? | * at --- ? | ||
* script - ? | * script --- ? | ||
* stdbuf - modify buffering | * stdbuf --- modify buffering | ||
* time - show round trip time | * time --- show round trip time | ||
* watch - run program periodically | * watch --- run program periodically | ||
* sleep - set a moment before run | * sleep --- set a moment before run | ||
* exit - exit terminal | * exit --- exit terminal | ||
* make - compile file | * make --- compile file | ||
* install - copy files | * install --- copy files | ||
* yes - always say "yes" | * yes --- always say "yes" | ||
* git - git | * git --- git | ||
* cvs - cvs | * cvs --- cvs | ||
* svn - svn | * svn --- svn | ||
* mysql - mysql client / server | * mysql --- mysql client / server | ||
* mysqldump - mysql dump databases | * mysqldump --- mysql dump databases | ||
* xl - ? | * xl --- ? | ||
* VBoxManage - ? | * VBoxManage --- ? | ||
* lpadmin - configure cups printers | * lpadmin --- configure cups printers | ||
* lpstat - show cups printing status | * lpstat --- show cups printing status | ||
* lp - submit files for printing | * lp --- submit files for printing | ||
* lpr - subimt files for printing | * lpr --- subimt files for printing | ||
* cancel - cancel printing job | * cancel --- cancel printing job | ||
==ファイル / ディレクトリ操作== | ==ファイル / ディレクトリ操作== | ||
* pwd - print working directory | * pwd --- print working directory | ||
* tree - tee-style | * tree --- tee-style | ||
* find - find files | * find --- find files | ||
* xargs - x-arguments | * xargs --- x-arguments | ||
* locate - location of files | * locate --- location of files | ||
* which - command path | * which --- command path | ||
* ls - list | * ls --- list | ||
* cd - change directory | * cd --- change directory | ||
* file - type of file | * file --- type of file | ||
* stat - status of file | * stat --- status of file | ||
* lsattr - file system attribution | * lsattr --- file system attribution | ||
* chattr - change file system attribution | * chattr --- change file system attribution | ||
* chmod - change mode | * chmod --- change mode | ||
* chown - change owner of file | * chown --- change owner of file | ||
* chgrp - change owner group | * chgrp --- change owner group | ||
* cp - copy | * cp --- copy | ||
* mv - move, change | * mv --- move, change | ||
* rm - remove | * rm --- remove | ||
* shred - shred files | * shred --- shred files | ||
* tmpwatch - ? | * tmpwatch --- ? | ||
* umask - user mask | * umask --- user mask | ||
* mkdir - make a directory | * mkdir --- make a directory | ||
* rmdir - remove direcotory | * rmdir --- remove direcotory | ||
* touch - touch a file | * touch --- touch a file | ||
* ln - make a link | * ln --- make a link | ||
* readlink - show symbolic link | * readlink --- show symbolic link | ||
* basename - base name of file | * basename --- base name of file | ||
* dirname - name of directory | * dirname --- name of directory | ||
* split - split a file | * split --- split a file | ||
* truncate - shrink or expand file | * truncate --- shrink or expand file | ||
* tar - type archive | * tar --- type archive | ||
* gzip / gunzip - zip / unzip | * gzip / gunzip --- zip / unzip | ||
* cpio - extract rpm files | * cpio --- extract rpm files | ||
* mktemp - make temporary file | * mktemp --- make temporary file | ||
* convmv - convert move | * convmv --- convert move | ||
* dd - dump datas | * dd --- dump datas | ||
* pv - pipe viewer | * pv --- pipe viewer | ||
* base64 - base64 encode / decode | * base64 --- base64 encode / decode | ||
* od - octal dump | * od --- octal dump | ||
* md5sum / sha1sum - calculate md5 or sha1 | * md5sum / sha1sum --- calculate md5 or sha1 | ||
* iconv - change file encoding | * iconv --- change file encoding | ||
* strings - show string parts in data file | * strings --- show string parts in data file | ||
* uuencode - ? | * uuencode --- ? | ||
* uudecode - ? | * uudecode --- ? | ||
* lhasa - ? | * lhasa --- ? | ||
* unrar- ? | * unrar- ? | ||
* pushd - ? | * pushd --- ? | ||
==テキスト編集== | ==テキスト編集== | ||
* echo - display a line of text | * echo --- display a line of text | ||
* tee - write std-output and life | * tee --- write std-output and life | ||
* more - viewer | * more --- viewer | ||
* less - viewer | * less --- viewer | ||
* head - show head part of file | * head --- show head part of file | ||
* tail / tailf - show tail part of file | * tail / tailf --- show tail part of file | ||
* cat - concatinate | * cat --- concatinate | ||
* nl - with number line | * nl --- with number line | ||
* rev - reverse | * rev --- reverse | ||
* grep - global reguler expression print | * grep --- global reguler expression print | ||
* [[vi]] - visual editor | * [[vi]] --- visual editor | ||
* ed - editor | * ed --- editor | ||
* sed - stream editor | * sed --- stream editor | ||
* tr - translate | * tr --- translate | ||
* awk - patter scanning and processing language | * awk --- patter scanning and processing language | ||
* nkf - ? | * nkf --- ? | ||
* patch - patch a diff file | * patch --- patch a diff file | ||
* diff - compare two files line by line | * diff --- compare two files line by line | ||
* comm - compare two files line by line | * comm --- compare two files line by line | ||
* cmp - compare two files byte by byte | * cmp --- compare two files byte by byte | ||
* col - remove \n etc. | * col --- remove \n etc. | ||
* column - columnate list | * column --- columnate list | ||
* colrm - column remove | * colrm --- column remove | ||
* cut - cut | * cut --- cut | ||
* expand - expand tab to space | * expand --- expand tab to space | ||
* unexpand - space to tab | * unexpand --- space to tab | ||
* paste - marge files | * paste --- marge files | ||
* join - marge same parts of files | * join --- marge same parts of files | ||
* uniq - show only uniq part | * uniq --- show only uniq part | ||
* wc - word count | * wc --- word count | ||
* seq - sequence | * seq --- sequence | ||
* sort - sort | * sort --- sort | ||
* bc - calculator | * bc --- calculator | ||
* let - calculate | * let --- calculate | ||
* factor - show factor numbers | * factor --- show factor numbers | ||
* expr - evaluate expression | * expr --- evaluate expression | ||
* test - ? | * test --- ? | ||
* shuf - shuffle some value | * shuf --- shuffle some value | ||
* fold - wrap words in lines | * fold --- wrap words in lines | ||
* pr - for printer format | * pr --- for printer format | ||
==パッケージ管理== | ==パッケージ管理== | ||
* dpkg - Debian package manager | * dpkg --- Debian package manager | ||
* apt - advanced packaging tool | * apt --- advanced packaging tool | ||
* rpm - RedHat package manager | * rpm --- RedHat package manager | ||
* rpm2cpio - rpm file to cpio | * rpm2cpio --- rpm file to cpio | ||
* yum - yellodog-linux update manager | * yum --- yellodog-linux update manager | ||
==ネットワーク== | ==ネットワーク== | ||
* ss - show sockets | * ss --- show sockets | ||
* netstat - network status | * netstat --- network status | ||
* arp - ip neighbors | * arp --- ip neighbors | ||
* ipcalc - ip calculator | * ipcalc --- ip calculator | ||
* ip - internet protocol mnager | * ip --- internet protocol mnager | ||
* route - ip routing table manager | * route --- ip routing table manager | ||
* ifconfig - interface configure | * ifconfig --- interface configure | ||
* iwconfig - interface wireless configure | * iwconfig --- interface wireless configure | ||
* iwlist - show Wi-Fi access-point | * iwlist --- show Wi-Fi access-point | ||
* nmtui - NetworkManager text-user interface | * nmtui --- NetworkManager text-user interface | ||
* nmcli - NetworkManager command-line interface | * nmcli --- NetworkManager command-line interface | ||
* iptables - packet filtering tool | * iptables --- packet filtering tool | ||
* firewall-cmd - firewall manager | * firewall-cmd --- firewall manager | ||
* ufw - uncomplicated firewall manager | * ufw --- uncomplicated firewall manager | ||
* wpa_supplicant - protected Wi-Fi cliant | * wpa_supplicant --- protected Wi-Fi cliant | ||
* ping - send ICMP ECHO_REQUEST | * ping --- send ICMP ECHO_REQUEST | ||
* tracepath - show a path to the host | * tracepath --- show a path to the host | ||
* arping - send ARP REQUEST to neighber | * arping --- send ARP REQUEST to neighber | ||
* ntpq - NTP quary | * ntpq --- NTP quary | ||
* ntpdate - set the date via NTP | * ntpdate --- set the date via NTP | ||
* clockdiff - time lag to remote host | * clockdiff --- time lag to remote host | ||
* telnet - ? | * telnet --- ? | ||
* ssh - secure shell | * ssh --- secure shell | ||
* ssh-keygen - ssh-key generator | * ssh-keygen --- ssh-key generator | ||
* ssh-copy-id - ssh copy id | * ssh-copy-id --- ssh copy id | ||
* scp - secure copy | * scp --- secure copy | ||
* rsync - remote file-copying tool | * rsync --- remote file-copying tool | ||
* ftp - file transfer program | * ftp --- file transfer program | ||
* sftp - secure ftp | * sftp --- secure ftp | ||
* wget - WWW downloader | * wget --- WWW downloader | ||
* curl - Client URL Request Library | * curl --- Client URL Request Library | ||
* tcpdump - dump traffic on a network | * tcpdump --- dump traffic on a network | ||
* tshark - ? | * tshark --- ? | ||
* brctl - ? | * brctl --- ? | ||
* host - DNS lookup | * host --- DNS lookup | ||
* nslookup - DNS lookup | * nslookup --- DNS lookup | ||
* dig - DNS lookup | * dig --- DNS lookup | ||
* whois - show IANA info | * whois --- show IANA info | ||
==ネットワークセキュリティ== | ==ネットワークセキュリティ== | ||
* nmap - Network Mapper | * nmap --- Network Mapper | ||
* netcat / nc - network investigator | * netcat / nc --- network investigator | ||
* gpg - GNU Privacy Gard | * gpg --- GNU Privacy Gard | ||
* openssl - SSL / TLS tool kit | * openssl --- SSL / TLS tool kit | ||
* pwgen - password generator | * pwgen --- password generator | ||
==ネットワークツール== | ==ネットワークツール== | ||
* mail - send and receive mail | * mail --- send and receive mail | ||
* mailq - ? | * mailq --- ? | ||
* newaliases - mail alias | * newaliases --- mail alias | ||
* w3m - WWW monitor | * w3m --- WWW monitor | ||
* showmount - show NFS server's exports status | * showmount --- show NFS server's exports status | ||
* rdesktop - remote desktop | * rdesktop --- remote desktop |
2019年1月22日 (火) 11:40時点における版
略語の意味を示すために説明は英語表記。ちなみに、これら全ては1つ1つがアプリだった。Unix哲学の結晶。
デバイス管理
- lscpu --- list CPU info
- lspci --- list PCI devices
- lsusb --- lsit USB devices
- lsscsi --- list SCSI devices
- lsblk --- list block / storage devices
- hwclock --- set hardware clock
- hdparm --- show HDD/SATA/IDE parameters
- sdparm --- access SCSI mode page
- loadkeys --- loadkeybords
- setterm --- terminal settings
- screen --- terminal screen manager
- tmux --- ?
- chvt --- change vertual terminal
- fdisk --- fixed disk, manipulate partitions
- parted --- partition edit
- partx --- show partitions
- mkswap --- make swap area
- swapon --- swap area on
- swapoff --- swap area off
- wodim --- write to CD/DVD
- growisofs --- write iso image to DVD
カーネル管理
- mkinitramfs --- initramfs image generator ( Debian )
- dracut --- initramfs image generator ( RH )
- dmsg --- display Kernel message ring
- lsmod --- list Linux Kernel modules
- insmod --- insert a Kernel module
- rmmod --- remove a Kernel module
- depmod --- generate modules.dep
- modprobe --- add and remove modules from Kernel
- modinfo --- show information about a Kernel modules
システム管理
- hostname --- hostname
- hostnamectl --- mamage hostname ( hostnamectl status )
- uname --- show system information
- arch --- show system hardware name ( = uname -m)
- top --- show top processes
- df --- disk free on filesystem
- du --- disk used
- free --- free memory
- vmstat --- memory status
- init --- system mamager
- initctl --- ?
- systemctl --- system mamager
- chkconfig --- old way of systemctl
- runlevel --- show runlevel
- update-rc.d --- set System-V initial links
- sysctl --- configure Kernel parameters
- ldd --- list dynamic dependencies
- ldconfig --- ldd configure
- logger --- enter message to system log
- journalctl --- system log manager
- halt --- halt, power off, reboot machine
- shutdown --- shutdown machine
- busybox --- command tool box
プロセス管理
- pwdx --- pwd for process
- ps --- show processes
- pstree --- show processes tree
- pgrep --- process grep
- pkill --- process kill
- pidof --- process id open file
- lsof --- list files opened by processes
- fuser --- identify file opening process
- kill --- kill process
- nohup --- run command without hup
- jobs --- show working jobs
- bg --- doing job at background
- fg --- doing job at forgraound
ファイルシステム管理
- mkfs --- make file system
- fsck --- file system check
- mount --- mount file system
- umount --- unmount file system
- mknod --- create a special file
ユーザ管理
- last --- show recent log-in users
- lastlog --- show last users login
- w / who --- show logged-in users
- users --- show logged-in users
- useradd --- add a user ( useradd -m -s /bin/bash -G sudo hoge )
- userdel --- delete a user ( userdel -r hoge )
- usermod --- modify a user
- groups --- show user's groups
- groupadd --- add a group
- groupdel --- delete a group
- groupmod --- modify a group
- chage --- change / show user's age
- chsh --- change login shell
- finger --- user's fingerprint
- chfn --- change user's fingerprint
- passwd --- change user's password
- gpasswd --- manage group password
- chpasswd --- change password in batch mode
- pwck --- check password file
- grpck --- check group file
- vipw / vigr --- edit password / group file
- pwconv --- convert password file
- edquota --- edit quota for user disk
- write / wall --- write a massage to all users
- htpasswd --- httpd basic authentication
- htdigest --- httpd digest authentication
ユーザツール
- id --- show user's id
- whoami --- who am i ?
- date --- show date
- cal --- show calendar
- set --- show shell environment
- env --- show user's enviroment
- printenv --- show environment
- export --- export environment from shell's env to user's env
- alias / unalias --- make alias
- history --- show command history
- fc --- ?
- su --- switch user
- sudo --- switch user do
- sg --- switch group
- chroot --- run command with special root directory
- nice --- set program priority
- renice --- alter program priority
- crontab --- manage cron
- expect --- expect response
- at --- ?
- script --- ?
- stdbuf --- modify buffering
- time --- show round trip time
- watch --- run program periodically
- sleep --- set a moment before run
- exit --- exit terminal
- make --- compile file
- install --- copy files
- yes --- always say "yes"
- git --- git
- cvs --- cvs
- svn --- svn
- mysql --- mysql client / server
- mysqldump --- mysql dump databases
- xl --- ?
- VBoxManage --- ?
- lpadmin --- configure cups printers
- lpstat --- show cups printing status
- lp --- submit files for printing
- lpr --- subimt files for printing
- cancel --- cancel printing job
ファイル / ディレクトリ操作
- pwd --- print working directory
- tree --- tee-style
- find --- find files
- xargs --- x-arguments
- locate --- location of files
- which --- command path
- ls --- list
- cd --- change directory
- file --- type of file
- stat --- status of file
- lsattr --- file system attribution
- chattr --- change file system attribution
- chmod --- change mode
- chown --- change owner of file
- chgrp --- change owner group
- cp --- copy
- mv --- move, change
- rm --- remove
- shred --- shred files
- tmpwatch --- ?
- umask --- user mask
- mkdir --- make a directory
- rmdir --- remove direcotory
- touch --- touch a file
- ln --- make a link
- readlink --- show symbolic link
- basename --- base name of file
- dirname --- name of directory
- split --- split a file
- truncate --- shrink or expand file
- tar --- type archive
- gzip / gunzip --- zip / unzip
- cpio --- extract rpm files
- mktemp --- make temporary file
- convmv --- convert move
- dd --- dump datas
- pv --- pipe viewer
- base64 --- base64 encode / decode
- od --- octal dump
- md5sum / sha1sum --- calculate md5 or sha1
- iconv --- change file encoding
- strings --- show string parts in data file
- uuencode --- ?
- uudecode --- ?
- lhasa --- ?
- unrar- ?
- pushd --- ?
テキスト編集
- echo --- display a line of text
- tee --- write std-output and life
- more --- viewer
- less --- viewer
- head --- show head part of file
- tail / tailf --- show tail part of file
- cat --- concatinate
- nl --- with number line
- rev --- reverse
- grep --- global reguler expression print
- vi --- visual editor
- ed --- editor
- sed --- stream editor
- tr --- translate
- awk --- patter scanning and processing language
- nkf --- ?
- patch --- patch a diff file
- diff --- compare two files line by line
- comm --- compare two files line by line
- cmp --- compare two files byte by byte
- col --- remove \n etc.
- column --- columnate list
- colrm --- column remove
- cut --- cut
- expand --- expand tab to space
- unexpand --- space to tab
- paste --- marge files
- join --- marge same parts of files
- uniq --- show only uniq part
- wc --- word count
- seq --- sequence
- sort --- sort
- bc --- calculator
- let --- calculate
- factor --- show factor numbers
- expr --- evaluate expression
- test --- ?
- shuf --- shuffle some value
- fold --- wrap words in lines
- pr --- for printer format
パッケージ管理
- dpkg --- Debian package manager
- apt --- advanced packaging tool
- rpm --- RedHat package manager
- rpm2cpio --- rpm file to cpio
- yum --- yellodog-linux update manager
ネットワーク
- ss --- show sockets
- netstat --- network status
- arp --- ip neighbors
- ipcalc --- ip calculator
- ip --- internet protocol mnager
- route --- ip routing table manager
- ifconfig --- interface configure
- iwconfig --- interface wireless configure
- iwlist --- show Wi-Fi access-point
- nmtui --- NetworkManager text-user interface
- nmcli --- NetworkManager command-line interface
- iptables --- packet filtering tool
- firewall-cmd --- firewall manager
- ufw --- uncomplicated firewall manager
- wpa_supplicant --- protected Wi-Fi cliant
- ping --- send ICMP ECHO_REQUEST
- tracepath --- show a path to the host
- arping --- send ARP REQUEST to neighber
- ntpq --- NTP quary
- ntpdate --- set the date via NTP
- clockdiff --- time lag to remote host
- telnet --- ?
- ssh --- secure shell
- ssh-keygen --- ssh-key generator
- ssh-copy-id --- ssh copy id
- scp --- secure copy
- rsync --- remote file-copying tool
- ftp --- file transfer program
- sftp --- secure ftp
- wget --- WWW downloader
- curl --- Client URL Request Library
- tcpdump --- dump traffic on a network
- tshark --- ?
- brctl --- ?
- host --- DNS lookup
- nslookup --- DNS lookup
- dig --- DNS lookup
- whois --- show IANA info
ネットワークセキュリティ
- nmap --- Network Mapper
- netcat / nc --- network investigator
- gpg --- GNU Privacy Gard
- openssl --- SSL / TLS tool kit
- pwgen --- password generator
ネットワークツール
- mail --- send and receive mail
- mailq --- ?
- newaliases --- mail alias
- w3m --- WWW monitor
- showmount --- show NFS server's exports status
- rdesktop --- remote desktop