主流Linux系统替换国内源

在使用Linux系统的小伙伴在安装软件的时候肯定有被网速困扰到,明明自己的网络状况很好,却偏偏在安装软件时网速如此的慢,其主要的原因是源的问题,Linux系统默认的都是国外的源,在国内访问速度会很慢很慢,那么本文就分享一波博主自用的源设置。

Debian源替换

Debian 的源配置文件是 /etc/apt/sources.list
1、首先给源文件备份,命令如下:

cp /etc/apt/sources.list /etc/apt/sources.list.bak

2、为防止https源无法拉取情况,请在编辑源之前安装一下https证书

apt install apt-transport-https ca-certificates

3、使用vi编辑器编辑sources.list文件

vi /etc/apt/sources.list

i键进入编辑模式,将默认源给注释掉然后添加下方的源镜像代码:
清华源:

# 清华源
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free

中科大源:

# 中科大源
deb https://mirrors.ustc.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.ustc.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.ustc.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.ustc.edu.cn/debian-security/ buster/updates main contrib non-free
deb-src https://mirrors.ustc.edu.cn/debian/ buster main contrib non-free
deb-src https://mirrors.ustc.edu.cn/debian/ buster-updates main contrib non-free
deb-src https://mirrors.ustc.edu.cn/debian/ buster-backports main contrib non-free
deb-src https://mirrors.ustc.edu.cn/debian-security/ buster/updates main contrib non-free

添加的源使用其一即可,添加完毕后按下ESC键,输入:wq保存并退出,接下来执行一遍apt-get update更新一下索引使其生效。

Ubuntu源替换

Ubuntu 的源配置文件是 /etc/apt/sources.list
1、首先给源文件备份,命令如下:

cp /etc/apt/sources.list /etc/apt/sources.list.bak

2、使用vi编辑器编辑sources.list文件

vi /etc/apt/sources.list

i键进入编辑模式,将默认源给注释掉然后添加下方的源镜像代码:
清华源:

# 清华源
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse

# 预发布软件源
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse

阿里源:

# 阿里源
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

# 预发布软件源
# deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse

中科大源:

# 中科大源
deb https://mirrors.ustc.edu.cn/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ focal-security main restricted universe multiverse

# 预发布软件源
# deb https://mirrors.ustc.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.ustc.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse

添加的源使用其一即可,若要使用预发布软件源,可取消前面的注释,添加完毕后按下ESC键,输入:wq保存并退出,接下来执行一遍apt-get update更新一下索引使其生效。

CentOS源替换

CentOS 的源配置文件是 /etc/yum.repos.d/CentOS-Base.repo

替换为阿里源

1、先安装wget,若已安装请忽略,否则务必执行

yum install -y wget

2、给源文件备份,命令如下:

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

3、下载阿里源的yum源配置文件到/etc/yum.repos.d/目录
CentOS 7:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

CentOS 6:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

4、之后运行yum makecache生成缓存

yum makecache

替换为清华源

此为CentOS 7的源替换,若不是该版本系统,请勿操作
1、给源文件备份,命令如下:

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

2、新建CentOS-Base.repo文件

touch /etc/yum.repos.d/CentOS-Base.repo

3、使用vi编辑器编辑CentOS-Base.repo文件,按i键进入编辑模式,添加下方的源镜像代码:

# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
 
[base]
name=CentOS-$releasever - Base
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
 
#released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
 
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/extras/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
 
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/centosplus/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

添加完毕后按下ESC键,输入:wq保存并退出
4、之后运行yum makecache生成缓存

yum makecache

Kali源替换

Kali 的源配置文件是 /etc/apt/sources.list
1、首先给源文件备份,命令如下:

cp /etc/apt/sources.list /etc/apt/sources.list.bak

2、使用vi编辑器编辑sources.list文件

vi /etc/apt/sources.list

i键进入编辑模式,将默认源给注释掉然后添加下方的源镜像代码:
中科大源:

# 中科大源
deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib

阿里源:

# 阿里源
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb-src http://mirrors.aliyun.com/kali kali-rolling main non-free contrib

清华源:

# 清华源
deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free

添加的源使用其一即可,添加完毕后按下ESC键,输入:wq保存并退出,接下来执行一遍apt-get update && apt-get upgrade && apt-get clean使其生效。

  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
第1部分 基础篇 第1章 Linux与开软件 1.1 自由软件和开运动 1.1.1 自由软件简介 1.1.2 FSF、GNU和GNU Project 1.1.3 自由软件协议 1.1.4 自由软件及其商业价值 1.1.5 开软件及其相关组织 1.1.6 自由软件v.s开放码 1.2 Linux操作系统简介 1.2.1 Linux操作系统及其历史 1.2.2 Linux系统的特点和组成 1.2.3 Linux的内核版本与发行版本 1.2.4 Linux的网络应用 1.3 CentOS Linux简介 1.3.1 Red Hat Linux系列发行版 1.3.2 CentOS Linux的起 1.3.3 CentOS Linux的特点和版本 第2章 安装CentOS 5 2.1 安装Linux之前的必备知识 2.1.1 磁盘分区 2.1.2 静态分区的缺点 2.1.3 逻辑卷管理(LVM) 2.2 服务器方式安装CentOS 5 2.2.1 下载CentOS 5 2.2.2 使用安装光盘启动系统 2.3 安装后的基本配置 2.3.1 运行SetupAgent 2.3.2 使用更新国内镜像 2.3.3 安装必要的软件包 第3章 Linux字符界面操作基础 3.1 字符操作界面简介 3.1.1 选择在字符界面下工作 3.1.2 虚拟控制台和本地登录 3.1.3 远程登录Linux系统 3.1.4 系统运行级别与关机 3.2 Shell和命令操作基础 3.2.1 Shell简介 3.2.2 命令操作基础 3.2.3 获得命令帮助 3.3 文件概述 3.3.1 什么是文件 3.3.2 文件的类型 3.4 文件与目录操作命令 3.4.1 目录操作命令 3.4.2 文件操作命令 3.4.3 文件打包压缩命令 3.5 文本处理命令 3.6 信息显示命令 3.7 基本网络操作命令 第4章 Linux字符界面操作进阶 4.1 提高工作效率 4.1.1 命令行补全 4.1.2 命令历史 4.1.3 命令别名 4.2 重定向和管道 4.2.1 重定向 4.2.2 管道 4.3 文件权限及设置命令 4.3.1 文件权限 4.3.2 权限设置命令 4.4 find 4.4.1 find命令的格式 4.4.2 选项表达式 4.4.3 条件匹配表达式 4.4.4 动作表达式 4.4.5 组合条件表达式 4.4.6 find命令使用举例 4.5 正则表达式基础 4.5.1 正则表达式基础 4.5.2 grep 4.6 文件编辑器Vi 4.6.1 Vi及其3种运行模式 4.6.2 普通模式下的操作 4.6.3 命令行模式下的操作 4.7 sed和awk 4.7.1 sed 4.7.2 awk 4.8 进程管理和作业控制 4.8.1 进程概述 4.8.2 进程管理 4.8.3 作业控制 4.9 Shell变量和Shell环境 4.9.1 用户自定义变量 4.9.2 Shell变量的作用域 4.9.3 环境变量 4.9.4 用户工作环境 第5章 Shell脚本编程 5.1 Shell脚本简介 5.1.1 什么是Shell脚本 5.1.2 Shell脚本的成分 5.1.3 Shell脚本的建立与执行 5.1.4 Shell脚本的编码规范 5.2 深入Shell变量操作 5.2.1 变量替换扩展 5.2.2 变量的字符串操作 5.2.3 变量的数值计算 5.2.4 Shell变量的输入 5.3 条件测试 5.3.1 命令执行顺序 5.3.2 测试语句 5.3.3 条件测试语句示例 5.4 使用特殊环境变量 5.4.1 Shell变量的详细分类 5.4.2 位置变量的使用 5.4.3 进程状态变量的使用 5.5 分支结构 5.5.1 if结构 5.5.2 case结构 5.6 循环结构 5.6.1 当型循环和直到型循环 5.6.2 foreach型循环和计数型循环 5.7 子程序结构 5.7.1 函数简介 5.7.2 函数的定义和调用 5.7.3 函数使用举例 5.8 Shell脚本示例分析 5.8.1 sysinfo脚本分析 5.8.2 init脚本分析 第2部分 系统篇 第6章 包管理与系统更新 6.1 使用RPM管理包 6.1.1 RPM概述 6.1.2 rpm命令的使用 6.2 使用yum工具更新系统 6.2.1 yum简介 6.2.2 CentOS的镜像和仓库 6.2.3 配置yum客户的更新 6.2.4 使用yum命令工具 6.2.5 加速yum的下载 6.2.6 系统自动更新 第7章 账户管理 7.1 账户管理概述 7.1.1 账户实质 7.1.2 用户和组 7.1.3 Linux环境下的账户系统文件 7.2 使用账户管理命令 7.2.1 组管理 7.2.2 用户管理 7.3 口令管理和口令时效 7.3.1 使用passwd命令管理口令 7.3.2 口令时效 7.4 用户切换和用户状态命令 7.4.1 用户切换命令 7.4.2 用户状态命令 第8章 磁盘管理和LVM管理 8.1 硬盘相关概念 8.1.1 硬盘及其组成 8.1.2 硬盘的技术指标 8.1.3 硬盘接口方式 8.1.4 服务器硬盘的选择 8.1.5 硬盘的相关术语 8.2 磁盘分区工具 8.2.1 fdisk命令 8.2.2 parted命令 8.3 创建LVM系统 8.3.1 概述 8.3.2 在磁盘或磁盘分区上创建 物理卷PV 8.3.3 使用物理卷创建卷组VG 8.3.4 在卷组VG创建逻辑卷LV 8.3.5 在逻辑卷LV上创建文件系统FS 8.4 维护LVM系统 8.4.1 LVM命令集 8.4.2 扩展LVM 第9章 文件系统管理 9.1 Linux文件系统概述 9.1.1 什么是文件系统 9.1.2 文件系统布局 9.1.3 几个重要的文件系统 9.1.4 几个特殊的文件系统 9.1.5 主流的日志文件系统 9.1.6 其他类型的文件系统 9.1.7 非日志文件系统和日志文件系统 9.1.8 使用文件系统的一般方法 9.2 挂装和卸载文件系统 9.2.1 挂装文件系统 9.2.2 自动挂装文件系统 9.2.3 挂装选项 9.2.4 卸载文件系统 9.3 ext2/ext3文件系统管理 9.3.1 ext2/ext3文件系统管理工具 9.3.2 创建ext2/ext3文件系统 9.3.3 检查ext2/ext3文件系统 9.3.4 调整ext2/ext3文件系统的属性 9.3.5 管理ext2/ext3文件系统的卷标 9.4 磁盘限额 9.4.1 磁盘限额概述 9.4.2 配置quota 9.4.3 查看磁盘限额 第10章 TCP/IP网络配置 10.1 配置基本网络参数 10.1.1 使用ifconfig命令配置以太网 10.1.2 直接修改配置文件配置以太网 10.1.3 设置本地主机名 10.1.4 设置DNS客户和本地主机解析 10.2 路由表和静态路由 10.2.1 Linux内核路由表 10.2.2 配置静态路由 10.3 网络测试方法和测试工具 10.3.1 网络测试的一般方法 10.3.2 网络测试工具的使用 第11章 CentOS系统引导和启动 11.1 CentOS系统启动过程 11.1.1 CentOS启动过程简介 11.1.2 init进程 11.2 系统引导器 11.2.1 GRUB功能简介 11.2.2 GRUB的操作界面 11.2.3 GRUB的配置文件 11.2.4 GRUB配置文件举例 11.3 单用户模式和修复模式 11.3.1 单用户模式 11.3.2 修复模式 第12章 守护进程管理 12.1 守护进程简介 12.1.1 什么是守护进程 12.1.2 网络守护进程 12.1.3 超级服务器的引入 12.1.4 守护进程的运行方式 12.1.5 CentOS常见的守护进程 12.2 管理守护进程 12.2.1 查看守护进程树 12.2.2 守护进程的启用和停止 12.2.3 管理守护进程的启动脚本 12.2.4 网络服务器的典型配置方法 12.3 xinetd和TCPWrapper 12.3.1 扩展网络守护进程xinetd 12.3.2 TCP Wrappers 12.4 时钟同步守护进程 12.4.1 Linux的时钟 12.4.2 网络时钟同步
Linux多线程服务端编程:使用muduo C++网络库》主要讲述采用现代C++在x86-64 Linux上编写多线程TCP网络服务程序的主流常规技术,重点讲解一种适应性较强的多线程服务器的编程模型,即one loop per thread。 目 录 第1部分C++ 多线程系统编程 第1章线程安全的对象生命期管理3 1.1当析构函数遇到多线程. . . . . . . . . . . . . . . . .. . . . . . . . . . . 3 1.1.1线程安全的定义. . . . . . . . . . . . . . . . .. . . . . . . . . . . 4 1.1.2MutexLock 与MutexLockGuard. . . . . . . . . . . . . . . . . . . . 4 1.1.3一个线程安全的Counter 示例.. . . . . . . . . . . . . . . . . . . 4 1.2对象的创建很简单. . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . 5 1.3销毁太难. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . . . 7 1.3.1mutex 不是办法. . . . . . . . . . . . . . . . . . . .. . . . . . . . 7 1.3.2作为数据成员的mutex 不能保护析构.. . . . . . . . . . . . . . 8 1.4线程安全的Observer 有多难.. . . . . . . . . . . . . . . . . . . . . . . . 8 1.5原始指针有何不妥. . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . 11 1.6神器shared_ptr/weak_ptr . . . . . . . . . .. . . . . . . . . . . . . . . . 13 1.7插曲:系统地避免各种指针错误. . . . . . . . . . . . . . . . .. . . . . . 14 1.8应用到Observer 上.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 1.9再论shared_ptr 的线程安全.. . . . . . . . . . . . . . . . . . . . . . . . 17 1.10shared_ptr 技术与陷阱. . . .. . . . . . . . . . . . . . . . . . . . . . . . 19 1.11对象池. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . . . . 21 1.11.1enable_shared_from_this . . . . . . . . . . . . . . . . . . . . . . 23 1.11.2弱回调. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . 24 1.12替代方案. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . . . 26 1.13心得与小结. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . . 26 1.14Observer 之谬. . . .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 第2章线程同步精要 2.1互斥器(mutex). . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 2.1.1只使用非递归的mutex . . . . . . . . . . . . . .. . . . . . . . . . 33 2.1.2死锁. . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . 35 2.2条件变量(condition variable). . . . . . . . . .
国微软件是是国内CMS著名品牌商,提供主流的PHP+mysql平台。提供的方案包括政府、高校、企业、部队等。 部队门户系统功能如下: 1、支持使用linux操作系统进行部署,同时也支持windows部署; 2、支持动静态分离部署;即数据库和程序可以物理格局服务器,访问页在前端服务器。 3、 提供文章、图片、视频、下载、信息公开、领导信箱、表单系统、广告模块、在线访谈、民意征集、在线调查、手机短信、通信录、数据备份、搜索模块、单网页、站群系统、专题模块、数据推送等相关必要模块。 4、具备强健的权限体系,分别支持角色和个人设置各个模块的权限,权限可以细化到文章栏目管理,支持个人可以管理不同栏目;支持多级审核。支持无限创建角色和角色组,可将线下的组织架构体系转移到线上;须支持用excel一键导入用户。 5、支持对栏目和内容一键设置局域网访问功能,栏目和内容访问可以设置IP段访问(如只允许校内访问)、同时栏目访问需要设置密码访问功能。 6、提供强大的统计体系:支持按用户发稿排名体系;可以按年、月、日以及时间段统计;支持每个子站的用户发稿统计;支持子站推送数据给主站的稿件统计;统计的内容可以用excel导出;统计可以按作者和发布人分别统计。 7、表单系统可以自定义字段,每个字段可以设置为列表和查询;数据可以导入导出excel;各种报名可以配套手机短信。 8、支持系统设置IP 白名单和黑名单;支持后台登陆登陆的ip控制、须支持栏目可以设置密码访问、支持后台登陆错误次数限制与锁定、可以修改后台登陆地址。 9、系统支持一键批量替换敏感词;在特殊紧急情况下,可以在后台快速替换系统已有的敏感词语、姓名、句子。 10、支持强大的可视化的标签体系,管理员可以在前台任何页面通过可视化标签,调用出系统的任何功能,如图片、幻灯片、内容、领导信箱、表单、在线访谈、在线调查等;每个功能可以选择数十种样式。让系统极其易用; 11、支持前台内容操作模式,所有栏目管理员在当前页面,都可以管理(包括发布、编辑、数据推送)自己所负责的栏目内容,无需进入后台和会员心; 12、微信公众号二次开发系统支持绑定微信公众号;支持站群数据推送给公众号显示,节约老师时间;后续新增的公众号功能免费升级; 14、系统支持核心文件校验功能。 15、发布内容可以修改时间,支持定时发布。 16、提供站群系统,后台可以创建N个站点。 17、站群系统支持一键克隆,几分钟即可创建一个站点,每个站点可以设置域名和管理员。 18、每个站点都可以相互推送数据,解决信息孤岛。 19、支持误删栏目一键恢复。支持误删站点一键恢复。 20200403升级说明: 主要解决了在PHP7.X环境的安装兼容情况。 加上了留言板模块。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值