在Linux服务器上,有多种命令可以帮助你查看系统配置
cat /proc/cpuinfo
或 lscpu
free -h
df -h
uptime
或 w
,who
,top
或 htop
(需要安装)ps aux
或 top
(需要安装)tail -f /var/log/syslog
或 journalctl
(需要安装)ifconfig
或 ip addr
route -n
或 ip route
cat /etc/resolv.conf
locale
timedatectl
systemctl status <service_name>
或 service <service_name> status
cat /var/log/<log_file>
或 tail -f /var/log/<log_file>
请注意,某些命令可能需要root权限才能运行。在这种情况下,请在命令前加上sudo
,例如:sudo ifconfig
。