background picture of the home page

查看cgroupfs挂载

在 Linux 系统中,cgroupfs(即 cgroup 文件系统)通常由 systemd 或其他初始化系统自动挂载 1、检查已挂载的 cgroup 文件系统 [root@kylin01 ~]# mount | grep cgroup tmpfs on /sys/fs/cgroup type tm

thumbnail of the cover of the post

SSL证书自动续签 certimate

证书自动续签工具 certimate 官网介绍 | Certimate GitHub仓库usual2970/certimate: 开源的SSL证书管理工具,可以帮助你自动申请、部署SSL证书,并在证书

thumbnail of the cover of the post

windows 查看已连接的wifi密码

按快捷键win+X+A进入命令行窗口 输入以下命令查看wifi密码 #查看已存储的wifi名称 netsh wlan show profiles # 查看某个wifi具体信息 netsh wlan show profiles XXXwifi名称 key=clear

thumbnail of the cover of the post

Docker离线安装部署

我们在官网找到二进制安装docker文档Binaries | Docker Docs 先决条件: 64位主机 查看命令 uname -p Linux >=3.10 查看命令 uname -r iptables >=1.4 查看命令 iptables -V git >=1.7 查看命令 git ver

thumbnail of the cover of the post

Dockerfile构建ruoyi后端文件

这里采用多阶段构建,先用Maven构建项目,然后将构建好的jar包放到jre运行环境中。 # Dockerfile # docker/backend/Dockerfile # Stage 1: Build the application using Maven # 选择一个包含 Maven 和

thumbnail of the cover of the post

Dockerfile构建ruoyi 前端文件

我们这里采用多阶段构建,先用nodejs构建vue项目,然后将静态文件交给nginx托管 # Stage 1: Build the Vue application # 选择一个 Node.js 镜像 (版本需与 ruoyi-ui 兼容, 查看 package.json 或咨询项目) FROM nod

thumbnail of the cover of the post

journalctl 日志查看工具介绍

1、介绍 journalctl 是一种用于查看、管理 Linux 系统日志的命令行工具,是 systemd 日志记录系统的一部分。journalctl 能够快速加载大量日志文件,并且支持多种过滤和查询方式。 systemd 是 Linux 系统的一个初始化系统,它负责启动和管理各种服务和进程。sys

thumbnail of the cover of the post

主流Linux操作系统各版本网卡配置方法汇总

本文主要分享CentOS/RHEL 系列 和 Debian/Ubuntu 系列 中各种版本下的网卡配置方式,并详细注释每个参数的作用,帮助你完全理解每种配置格式。 【温馨提示】国产系统麒麟V10,openEuler等都是基于Redhat系列开发的,网卡配置与其对应版本配置方法相同 1 、CentOS

thumbnail of the cover of the post