摘要: sed 's/"//g' test.txt |sed '/^$/d' | sed 's|\([0-9]\{4\}\)/\([0-9]\{1,2\}\)/\([0-9]\{1,2\}\)|\1.\2.\3|g' | sed 's|\([0-9]\{4\}\)-\([0-9]\{1,2\}\)-\([0 阅读全文
posted @ 2024-12-03 15:36 Rohin1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Ubuntu24 进行硬盘扩容 格式化硬盘 fdisk /dev/sdb #sdb为自己添加硬盘 #fdisk -l 进行查看。 在创建分区时,选择 n 创建新分区,t 更改分区类型,将分区类型更改为 8e(Linux LVM)。完成后,使用 w 保存更改。 pvcreate /dev/sdb #**创建物理卷(PV) vgcre 阅读全文
posted @ 2024-11-22 17:46 Rohin1 阅读(40) 评论(0) 推荐(0) 编辑
摘要: [root@openEuler ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS sda 8:0 0 20G 0 disk ├─sda1 8:1 0 1M 0 part ├─sda2 8:2 0 1G 0 part /boot └─sda3 8:3 阅读全文
posted @ 2024-10-22 11:08 Rohin1 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1.更换阿里云源(不换下载很慢) sed -e 's|^mirrorlist=|#mirrorlist=|g' -e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.aliyun.com/rockyl 阅读全文
posted @ 2024-09-30 14:49 Rohin1 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.安装CUPS sudo yum install cups && sudo yum install foomatic-filters 2.配置 cups [root@docker-elk cups]# cat /etc/cups/cupsd.conf |sed '/^#/d;/^$/d' /etc 阅读全文
posted @ 2024-09-30 14:45 Rohin1 阅读(14) 评论(0) 推荐(0) 编辑
摘要: TCP被称为可靠连接导向,其连线主要是透过许多机制来达成的,其中最重要的就是三向交握的功能。当然TCP传送资料的机制非常复杂,(TCP三次握手四次挥手。)? A:封包发起状态,TCP 封包带有 SYN 旗标,假设序号为 10001 号 当客户端想要对服务器端连线时,就必须要送出一个要求连线的封包,此 阅读全文
posted @ 2024-09-30 10:31 Rohin1 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 架构图 Nexus安装 1.安装docker sudo dnf update -y sudo dnf install -y yum-utils sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/do 阅读全文
posted @ 2024-09-24 15:36 Rohin1 阅读(173) 评论(0) 推荐(0) 编辑
摘要: ` # -*- coding: utf-8 -*- # @Time : 2024/3/1 10:02 # @Author : Rohing # @File : 监控文件.py # @Software: PyCharm` import time import logging import fnmatc 阅读全文
posted @ 2024-09-10 19:17 Rohin1 阅读(14) 评论(0) 推荐(0) 编辑
摘要: import sounddevice as sd import requests import socket import json # Webhook URL webhook_url = '换成自己的webhook' # Check sound card def check_sound_card( 阅读全文
posted @ 2024-09-10 19:15 Rohin1 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 总结 第十九章、开机流程、模块管理与 Loader Linux 不可随意关机,否则容易造成文件系统错乱或者是其他无法开机的问题; 开机流程主要是:BIOS、MBR、Loader、kernel+initramfs、systemd 等流程 Loader 具有提供选单、加载核心文件、转交控制权给其他 lo 阅读全文
posted @ 2024-09-10 19:06 Rohin1 阅读(1) 评论(0) 推荐(0) 编辑