Loading...
Loading...
Compare original and translation side by side
undefinedundefinedundefinedundefineduname -a # Kernel info
hostnamectl # System info
lscpu # CPU info
free -h # Memory usage
df -h # Disk usage
ip addr # Network interfacesuname -a # 内核信息
hostnamectl # 系统信息
lscpu # CPU信息
free -h # 内存使用情况
df -h # 磁盘使用情况
ip addr # 网络接口journalctl -u nginx # Service logs
journalctl -f # Follow logs
tail -f /var/log/syslog # System logs
dmesg # Kernel messagesjournalctl -u nginx # 服务日志
journalctl -f # 实时跟踪日志
tail -f /var/log/syslog # 系统日志
dmesg # 内核消息ps aux | grep nginx
top / htop
kill -9 <pid>
pgrep nginx
pkill nginxps aux | grep nginx
top / htop
kill -9 <pid>
pgrep nginx
pkill nginx