Linux 常用命令

查看显卡信息
* 安装了nvidia驱动之后可以使用该命令
nvidia-smi
查看cpu信息
lscpu
查看磁盘信息
df -h
查看Linux是虚拟机还是物理机
# dmidecode -s system-product-name

#物理服务器
[root@JX-P-L-KVM-231 ~]# dmidecode -s system-product-name
# SMBIOS implementations newer than version 2.7 are not
# fully supported by this version of dmidecode.
PowerEdge R930
 
# KVM 虚拟主机
[root@JX-V-L-PHP-237 ~]# dmidecode -s system-product-name
KVM
 
# VMware vSphere 虚拟主机
[root@ZE-T1 ~]# dmidecode -s system-product-name
VMware Virtual Platform
 
#阿里云主机
[root@zdc ~]# dmidecode -s system-product-name
HVM domU
# dmesg | grep -i virtual

#物理服务器
[root@JX-P-L-KVM-231 ~]# dmesg | grep -i virtual  #没有内容
[root@JX-P-L-KVM-231 ~]#
 
# KVM 虚拟主机
[root@JX-V-L-PHP-237 ~]#  dmesg | grep -i virtual
Booting paravirtualized kernel on KVM
CPU0: Intel QEMU Virtual CPU version (cpu64-rhel6) stepping 03
input: Macintosh mouse button emulation as /devices/virtual/input/input1
 
# VMware vSphere
[root@ZE-T1 ~]# dmesg | grep -i virtual
DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 07/30/2013
Booting paravirtualized kernel on bare hardware
input: Macintosh mouse button emulation as /devices/virtual/input/input1
scsi 0:0:0:0: Direct-Access     VMware   Virtual disk     1.0  PQ: 0 ANSI: 2
ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33
VMware vmxnet3 virtual NIC driver - version 1.4.2.0-k-NAPI、
 
#阿里云主机
[root@zdc ~]#  dmesg | grep -i virtual
Booting paravirtualized kernel on Xen
input: Macintosh mouse button emulation as /devices/virtual/input/input2
Initialising Xen virtual ethernet driver.
# cat /proc/scsi/scsi | grep Vendor

# 物理服务器 
[root@JX-P-L-KVM-231 ~]# cat /proc/scsi/scsi | grep Vendor
  Vendor: DELL     Model: PERC H730P Adp   Rev: 4.27
  Vendor: PLDS     Model: DVD-ROM DS-8DBSH Rev: RD51
 
# KVM 虚拟主机
[root@JX-V-L-PHP-237 ~]# cat /proc/scsi/scsi | grep Vendor
  Vendor: QEMU     Model: QEMU DVD-ROM     Rev: 0.12
 
# VMware vSphere
[root@ZE-T1 ~]# cat /proc/scsi/scsi | grep Vendor
  Vendor: VMware   Model: Virtual disk     Rev: 1.0 
  Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
 
# 阿里云主机 
[root@zdc ~]#  cat /proc/scsi/scsi 
Attached devices:
查看内存情况
free -h
tar
解包:tar zxvf FileName.tar
打包:tar czvf FileName.tar DirName
scp
scp -r 用户名@ip或者域名:物理机文件路径  粘贴后路径
cp
cp 被粘贴文件路径 粘贴到的文件路径
rm (慎用)
rm -rf 要删除的文件夹或文件
相关推荐
Ven%7 分钟前
centos查看硬盘资源使用情况命令大全
linux·运维·centos
JaneJiazhao10 分钟前
HTTPSOK:SSL/TLS证书自动续期工具
服务器·网络协议·ssl
萨格拉斯救世主1 小时前
戴尔R930服务器增加 Intel X710-DA2双万兆光口含模块
运维·服务器
无所谓จุ๊บ1 小时前
树莓派开发相关知识十 -小试服务器
服务器·网络·树莓派
Jtti1 小时前
Windows系统服务器怎么设置远程连接?详细步骤
运维·服务器·windows
TeYiToKu1 小时前
笔记整理—linux驱动开发部分(9)framebuffer驱动框架
linux·c语言·arm开发·驱动开发·笔记·嵌入式硬件·arm
dsywws1 小时前
Linux学习笔记之时间日期和查找和解压缩指令
linux·笔记·学习
yeyuningzi1 小时前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
上辈子杀猪这辈子学IT1 小时前
【Zookeeper集群搭建】安装zookeeper、zookeeper集群配置、zookeeper启动与关闭、zookeeper的shell命令操作
linux·hadoop·zookeeper·centos·debian
minihuabei2 小时前
linux centos 安装redis
linux·redis·centos