[Linux Command] - Các lệnh cơ bản

Login into your Linux machine, and do the following using a terminal:

  1. Run "pwd" to check the present working directory

  2. If you are not in your home directory, run the command "cd"

  3. Run "cd /etc"

  4. Run "cd ~"

  5. Check if you are back in your home directory?

    1. You should be. If not, you did something wrong.

  6. Run "cd /usr"

  7. Run "cd $HOME"

  8. Check if you are back in your home directory?

    1. 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