> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://azdigi.crisp.help/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Các lệnh Linux kiểm tra thông số VPS

Khi sử dụng Linux VPS, bạn có thể sử dụng các lệnh dưới đây để kiểm tra từng thông số riêng biệt trên máy chủ.

Lệnh kiểm tra CPU:

```cat /proc/cpuinfo```

Lệnh theo dõi tài nguyên VPS:

``` top -c```

Lệnh kiểm tra hệ điều hành:

``` uname -a```

Lệnh kiểm tra Ram:

``` free -m```

Lệnh kiểm tra dung lượng đĩa cứng:

``` df -h```

Lệnh kiểm tra tốc độ đọc ghi đĩa cứng:

``` time sh -c “dd if=/dev/zero of=ddfile bs=8k count=250000 && sync”; rm ddfile```