Những lệnh Linux phổ biến nhất
Các loại lệnh
- Thông số hệ thống
- File / Folder
- Cài đặt gói phần mềm
- Mạng, Internet
- User, role
Sẽ thực hành trên Alpine do
- Kích thước nhỏ 4.1 Mb tải nhanh
- Sử dụng làm base docker image
- Tốn ít RAM khi chạy
- Hỗ trợ nhiều kiến trúc CPU Intel 32-64, ARM
- Các gói phần mềm rất phong phú
docker run -it --rm alpine:latest /bin/ash
Lấy thông số hệ thống
- uname
- lshw
- top - htop
- ip addr show
- whoami
- cal - date
Tham khảo
- http://www.informit.com/blogs/blog.aspx?uk=The-10-Most-Important-Linux-Commands
- http://www.thegeekstuff.com/2010/11/50-linux-commands
- uname --help
-
Print system information
-a Print all
-m The machine (hardware) type
-n Hostname
-r Kernel release
-s Kernel name (default)
-p Processor type
-v Kernel version
-i The hardware platform
-o OS name
-
lshw [-format] [-options ...]
format can be-html output hardware tree as HTML
-xml output hardware tree as XML
-short output hardware paths
-businfo output bus informationoptions can be
-c CLASS only show a certain class of hardware
-disable TEST disable a test (like pci, isapnp, cpuid, etc. )
-enable TEST enable a test (like pci, isapnp, cpuid, etc. )
-quiet don't display status
-sanitize sanitize output (remove sensitive information like serial numbers, etc.)
-numeric output numeric IDs (for PCI, USB, etc.)
top - htop
Giải thích các thông số trong htop
https://peteris.rocks/blog/htop/
lấy địa chỉ IP
ip addr show
ip addr show | grep inet
ping aaa.bbb.ccc.ddd
ifconfig
Giải thích các thông số trong htop
https://peteris.rocks/blog/htop/
Linux command
By Trinh Minh Cuong
Linux command
- 376