linux 命令

ssh

  • 查看正在进行的ssh链接
w
  • 查看linux登陆日志

时区、时间、日期

  • 查看当前时区
date -R
  • 修改设置Linux服务器时区
    -- 方法A
tzselect

-- 方法B,适用于Redhat Linux 和CentOS

timeconfig

-- 方法C,适用于Debian

dpkg-reconfigure tzdata
  • 复制相应的时区文件,替换系统时区文件
    例如设置中国时区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
  • 查看修改Linux日期时间
    -- 查看时间日期
date

-- 设置时间和日期

date -s 11/03/2018
date -s 11:11:11

-- 将当前时间日期写入BIOS,避免重启后失效

hwclock -w

CPU 核数

  • 几个cpu
more /proc/cpuinfo |grep "physical id"|uniq|wc -l
  • 每个cpu是几核(假设cpu配置相同)
more /proc/cpuinfo |grep "physical id"|grep "0"|wc -l
cat /proc/cpuinfo | grep processor
  • 查看物理CPU的个数
cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l
  • 查看逻辑CPU的个数
cat /proc/cpuinfo |grep "processor"|wc -l
  • 查看CPU是几核
cat /proc/cpuinfo |grep "cores"|uniq
  • 查看CPU的主频
cat /proc/cpuinfo |grep MHz|uniq
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
      8  Intel(R) Xeon(R) CPU            E5410   @ 2.33GHz

(看到有8个逻辑CPU, 也知道了CPU型号)

cat /proc/cpuinfo | grep physical | uniq -c

      4 physical id      : 0

      4 physical id      : 1

(说明实际上是两颗4核的CPU)

你可能感兴趣的:(linux 命令)