ax3000t

2023-12-24

6bf84e17 curl -X POST http://192.168.31.1/cgi-bin/luci/;stok=3aa0374896388bcdd6741273f1c1956a/api/misystem/arn_switch -d "open=1&model=1&level=%0Anvram%20set%20ssh_en%3D1%0A" curl -X POST http...

windows kms

2022-08-02

服务器地址:http://kms.03k.org(点击检查是否可用); 服务作用:在线激活windows和office 适用对象:VOL版本的windows和office 适用版本:截止到win10和office2016的所有版本 使用方法: 一般来说,只要确保的下...

centos使用Rclone挂载Google-drive

2021-02-19

#安装EPEL源 yum update -y yum install -y git yum install -y hg yum -y install epel-release yum install sqlite-devel fuse fuse-devel libcurl-devel zlib-devel m4 -y #安装一些基本组件和依赖 yum -y install wget u...

centos 软raid0挂载硬盘

2021-02-10

centos 软raid0挂载硬盘 查看硬盘 ls /dev/sd* 2. 创建软raid并添加硬盘 mdadm -v -C /dev/md0 -l 0 -n 3 /dev/sdb /dev/sdc /dev/sdd 提示:-bash: mdadm: command not found yum install mdadm 源有问题可以...

CentOS 7/8 firewall 开启端口转发

2021-02-08

一、安装 firewall yum install -y firewalld 二、启动 firewalld 服务 1、启动 firewalld 服务: systemctl start firewalld 2、设置 firewalld 服务自启动: systemctl enable firewalld 三、启用IP伪装 f...

centos7 8 安装Syncthing

2021-02-07

Syncthing官网:https://syncthing.net/ 1.CentOs安装Syncthing命令 wget https://github.com/syncthing/syncthing/releases/download/v1.13.1/syncthing-linux-amd64-v1.13.1.tar.gz #解压命令 tar -zxvf syncthing-linux-amd...

centos6or7修改主机名的方法

2019-08-15

1 centos6下修改hostname [root@centos6 ~]$ hostname # 查看当前的hostnmae centos6.magedu.com [root@centos6 ~]$ vim /etc/sysconfig/network # 编...

mysql语句 特定ID范围 替换、添加数据

2018-11-28

update wp_posts set post_author=REPLACE (post_author,'3','2')  指定位置替换数据 3替换成2 update wp_posts set post_content=CONCAT('数据',post_content,)    特定位置添加 update wp_posts set post_content=CONCAT('数据',pos...

云centos服务器搭建SSR1服务端

2018-11-26

yum -y install wget wget -N –no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/ssr.sh && chmod +x ssr.sh && bash ssr.sh ———————————————————代码分割线———————————————— 复制...