linux共20篇
EMBY-搭建私有影音媒体库(附破解补丁)更新至4.8.10-织秋笔记

EMBY-搭建私有影音媒体库(附破解补丁)更新至4.8.10

安装EMBY服务端 EMBY服务端所有版本下载连接: Emby-Server 4.8.10.0下载链接 下载自己服务器系统的安装包,比如Centos使用yum命令直接下载RPM包并安装 Centos: yum install -y https://github....
zel的头像-织秋笔记赞助大会员zel12月16日 15:55
048315
Ubuntu22.04编译安装nginx时报错error: ‘ENGINE_free’ is deprecated: Since OpenSSL 3.0-织秋笔记

Ubuntu22.04编译安装nginx时报错error: ‘ENGINE_free’ is deprecated: Since OpenSSL 3.0

编译时添加编译参数即可 ./configure --with-cc-opt='-Wno-error -Wno-deprecated-declarations'
zel的头像-织秋笔记赞助大会员zel10月20日 18:46
09415
linux安装Python-selenium+webdriver(Centos、ubuntu)-织秋笔记

linux安装Python-selenium+webdriver(Centos、ubuntu)

linux安装Python-selenium+webdriver(Centos、ubuntu) 略过Python的安装教程 首先安装selenium pip3 install selenium 如果系统自带的python未安装pip,使用apt进行安装pip模块 sudo apt inst...
zel的头像-织秋笔记赞助大会员zel9月5日 14:29
026715
Centos - nginx的搭建2-织秋笔记

Centos – nginx的搭建2

需要先搭建好系统环境 gcc编译环境 PHP 点击跳转 下载nginx安装压缩包 wget http://nginx.org/download/nginx-1.9.9.tar.gz 解压并切换到nginx目录 cd nginx-1.9.9/ tar -zxvf nginx-1.9.9.tar....
zel的头像-织秋笔记赞助大会员zel9月4日 22:40
022314
Centos搭建nextcloud-织秋笔记

Centos搭建nextcloud

1.先搭建好nginx服务 并为Nginx添加好PHP支持 先切换到站点目录 cd /usr/local/nginx/html 下载nextcloud并解压 wget file.zelt.cn/nextcloud.zip/br> unzip nextcloud.zip 安装数据库 yum i...
zel的头像-织秋笔记赞助大会员zel9月4日 22:37
013714
Centos的安装-织秋笔记

Centos的安装

安装系统时按TAB键 然后输入下面代码 回车进入安装 即可使用默认eth网卡名称 net.ifnames=0 biosdevname=0 #注意要先加空格 进入系统后修改网卡配置 /etc/sysconfig/network-scripts/ifcfg-eth1...
zel的头像-织秋笔记赞助大会员zel9月4日 22:35
012213
Centos - 搭建DHCP及路由转发-织秋笔记

Centos – 搭建DHCP及路由转发

首先安装dhcp服务 yum install dhcp -y 编辑并替换DHCP服务配置文件 DHCP配置文件路径 /etc/dhcp/dhcpd.conf systemctl start dhcpd 配置文件 # # DHCP Server Configuration file. # see /usr/...
zel的头像-织秋笔记赞助大会员zel9月4日 22:35
014213
Centos搭建私有软件yum源-织秋笔记

Centos搭建私有软件yum源

搭建私有软件源 软件源服务器: 先安装好nginx服务或httpd服务 修改nginx配置文件 vim /usr/local/nginx/conf/nginx.conf 在http项中添加下列参数 autoindex on; #开启nginx目录浏览功能 autoind...
zel的头像-织秋笔记赞助大会员zel9月4日 22:35
022513
Centos - Nginx的安装与配置-织秋笔记

Centos – Nginx的安装与配置

Nginx: 配置文件路径: yum安装:/etc/nginx/nginx.conf 源码包安装: /usr/local/nginx/conf/nginx.conf 源码安装 安装编译依赖环境 yum install -y gcc gcc-c++ pcre pcre-devel zlib zlib-de...
zel的头像-织秋笔记赞助大会员zel9月4日 22:41
010612
动态ddns(动态域名)脚本-织秋笔记

动态ddns(动态域名)脚本

将脚本放到 /etc/ 下 执行下面命令 每5分钟重复运行一次脚本 echo */5 root /etc/ddns.sh >> /etc/crontab 定期任务发送邮件给ROOT 不需要的话编辑定期任务文件 vi /etc/crontab -l #定期...
zel的头像-织秋笔记赞助大会员zel9月5日 14:27
015512