[Linux Command] - Các lệnh cơ bản
Login into your Linux machine, and do the following using a terminal:
Run "pwd" to check the present working directory
If you are not in your home directory, run the command "cd"
Run "cd /etc"
Run "cd ~"
Check if you are back in your home directory?
You should be. If not, you did something wrong.
Run "cd /usr"
Run "cd $HOME"
Check if you are back in your home directory?
You should be. If not, you did something wrong.
tạo file: touch
sửa file: edit/open filename
đọc file: cat filename
sao chép file: cp
di chuyển: mv
tail -n N đọc và in ra N dòng
less in ra nội dung của một file theo từng trang
grep -i để tìm kiếm không phân biệt hoa thường hoặc grep -r để tìm kiếm trong toàn thư mục
find -iname để tìm kiếm không phân biệt hoa thường
tar -cvf tạo file nén (.tar) từ các file có sẵn.
tar -tvf xem nội dung file nén (.tar).
tar -xvf giải nén (file .tar).
gzip tạo file nén (.gz). Sử dụng gzip -d để giải nén (file .gz).
unzip giải nén một file nén (.zip). Sử dụng unzip -l để xem nội dung file zip mà không cần giải nén.
help
whatis
man
exit
ping
who
su switch user
uname
free -m (xem memory KBs) -g (GBs)
df disk space free
ps processes
shutdown -r
Nhận xét
Đăng nhận xét
Vui lỏng để lại ý kiến phản hồi của bạn ở đây!
Thank you!