debain 查看 cpu 温度你可以使用 lm-sensors 工具来查看 CPU 温度。以下是安装和使用 lm-sensors 的步骤:安装 lm-sensors:sudo apt-get update sudo apt-get install lm-sensors运行 sensors-detect 来检测传感器:sudo sensors-detect查看 CPU 温度:sensors运...
linux 全盘 查找 某个文件文件你可以使用 find 命令在整个文件系统中查找 nmbd_become_lmb.c 文件。以下是具体的命令:sudo find / -name nmbd_become_lmb.c这个命令会从根目录 / 开始查找名为 nmbd_become_lmb.c 的文件。由于查找整个文件系统可能需要较长时间,因此建议使用 sudo 提升权限,以确保能够访问所有目录。
debain 修改 swapfile.swapGitHub Copilot: 在 Debian 系统上修改 swapfile 的步骤如下:关闭当前的 swap:sudo swapoff /swapfile调整 swapfile 大小:例如,将 swapfile 大小调整为 2GB:sudo dd if=/dev/zero of=/swapfile bs=1M count=2048设置正确的权...
debain 查看系统日志在 Debian 系统上,你可以使用以下命令查看系统日志:查看系统日志:sudo journalctl查看内核日志:sudo dmesg查看特定服务的日志(例如 nginx):sudo journalctl -u nginx查看最近的系统日志:sudo journalctl -r查看特定时间段的日志:sudo journalctl --since "202...
linux 查看网卡 是否支持 网络唤醒要查看 Linux 系统上的网卡是否支持网络唤醒 (Wake-on-LAN, WoL),可以使用 ethtool 工具。以下是具体步骤:安装 ethtool如果你的系统上没有安装 ethtool,可以使用以下命令进行安装:sudo apt-get install ethtool # 对于基于 Debian 的系统,例如 Ubuntu sudo yum...
debain linux 找不到命令reboot和shutdown问题解决方案whereis reboot # 找到reboot的文件路径 whereis shutdown # 找到shutdown的文件路径 添加到环境变量里面,nano /etc/profile,添加下面两行export PATH=$PATH:/usr/sbin/reboot export PATH=$PATH:/usr...
rename '.repo' '.repo.bak' /etc/yum.repos.d/CentOS*.repo curl -o /etc/yum.repos.d/Centos-vault-8.5.2111.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo curl -o /etc/yum.repos.d/epel...
Linux 查询服务进程的 运行时间查看运行时间 ps -eo pid,lstart,etime | grep pid ps -eo pid,lstart,etime | grep 1713 # 显示所有 进程运行时间 ps -A -opid,stime,etime,args 复制代码 linux 查看服务器安装时间; 查看 系统安装的时间 tune2fs -l /dev/sda1...
CentOS 8操作系统版本结束了生命周期(EOL),Linux社区已不再维护该操作系统版本。建议您切换到Anolis或Alinux。如果您的业务过渡期仍需要使用CentOS 8系统中的一些安装包,请根据下文切换CentOS 8的源。背景信息2021年12月31日CentOS 8 EOL。按照社区规则,CentOS 8的源地址http://mirror.centos.org/centos/8...
查看当前kernel版本 uname -r 查看已安装版本 rpm -q kernel 查看可升级kernel版本 yum list kernel 升级kernel版本 yum update kernel 删除旧的内核 方法一:安装yum-utls: yum install -y yum-utils 设置你想要保留多少旧的内核,比如我想保留两个: sudo package-cl...