This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
使用方法 | |
把下面的代码存为php文件,下面的整段代码是验证过程,然后在你入口页进行调用例如命名为MkEncrypt.php,那么在入口页进行 | |
```language | |
require_once('MkEncrypt.php'); | |
``` | |
然后设置密码为 | |
```language | |
MkEncrypt('1234'); | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
一、制作引导U盘 | |
1、下载[引导](https://sword.studio/go/aHR0cDovL2Rvd24ubmFzMnguY29tL3N5bm9sb2d5L2RzbS82LjEvNi4xLjcvZHMzNjE3eHMvc3lub2Jvb3QuaW1n),下载[ChipEasy芯片无忧](https://sword.studio/go/aHR0cDovL2Rvd24ubmFzMnguY29tL3Rvb2xzL0NoaXBFYXN5LmNocy52MS42LmV4ZQ==)软件查找U盘的VID、PID | |
插入U盘到电脑,打开芯片无忧软件,读取U盘VID、PID信息,记录好这两个值。下面修改配置文件需要用到。 | |
2、使用DiskGenius编辑引导synoboot.img的配置文件grub.cfg | |
下载[DiskGenius](https://sword.studio/go/aHR0cDovL2Rvd24ubmFzMnguY29tL3Rvb2xzL2Rpc2tnZW5pdXMvREc0OTY1NjRfeDY0LnppcA==),打开DiskGenius, 在顶部选择硬盘-打开虚拟硬盘文件, 选择刚刚下载的.img引导文件并打开。 | |
3、在左边找到刚刚打开的img文件, 点击ESP-grub, 在右边找到grub.cfg, 选择复制到桌面 | |
4、再去桌面编辑刚刚复制过来的grub.cfg文件 | |
```language |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```language | |
1、Docker注册表搜索安装bestoray/pgyvpn | |
2、SSH用root账户连接黑群(ssh root@ip,密码同admin),安装虚拟网卡驱动 | |
lsmod |grep tun #查询是否有驱动 | |
insmod /lib/modules/tun.ko #安装网卡驱动 | |
执行该安装指令,当有tun的相关数据后表示虚拟网卡驱动安装成功 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装jellyfin/jellyfin | |
2、docker下新建文件夹jellyfin,赋予everyone用户全部权限,再新建一个共享文件夹用于存放电影 | |
3、端口设置为8888(浏览器访问的端口)和55555 | |
4、卷映射 | |
```language | |
/docker/jellyfin /config | |
/共享/movie /media | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装oldiy/aria2-ui-ng | |
2、docker下新建文件夹Aria2,下面分别建立文件夹data(存放要下载的东西)和config(放置配置文件) | |
3、端口设置为6800和6801(浏览器访问的端口) | |
![1.jpg](data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCAIqAowDASIAAhEBAxEB/8QAHQABAAIDAQEBAQAAAAAAAAAAAAQGAQUHAwIJCP/EAGAQAAAFAgIDCgcJDAkCBAUEAwABAgMEBREGEhMhkwcUFSIxQVFT0dIWMlJWYZGUFyMlQmRxorLTMzRXYnJzdHWBo7GzJDU2N0OSocHwgpUIY2XhJidGwvJERVRVhLTD/8QAGwEBAAMBAQEBAAAAAAAAAAAAAAECAwQFBgf/xAA3EQEAAQMCBAMGBQQCAgMAAAAAAQIDEQQSEyExUQUU8DJBYXGRoQYigbHBFSNS8dHhM0I0c5L/2gAMAwEAAhEDEQA/AOme5djb8L+If3324e5djb8L+If33247DlGNH847uNV2+0OPy9Lj/uXY2/DBiH1Pfbh7l2NvwwYh9T3247Bovn9YaL/lw8xPb7QeXpcg9yzG/wCF7EP777cPcsxv+F7EP777cdf0YaMOPV2+0Hl6HIPcsxv+F7EP777cY9y3G/4XsQ/vvtx2DRhoxHHq7faDy9DiVX3FsQVdpLNV3TKnPZQrMhElhbpJV0lmfHzE3Eq5DiSIcLdIqMePJvpmWY60Nu3TlO5E9r1eUO36MZ0ZCfM3On8Qjy9DhFP3CKjT5CJVOx7KiSEZsjrENSHCvqVYydHpN3EKxPk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装linuxserver/qbittorrent | |
2、docker下新建qbittorrent文件夹,再建立子文件夹(文件夹名见卷映射),全部赋予everyone的权限 | |
3、端口映射 | |
52000 52000/tcp | |
52000 52000/udp | |
8999 8999/tcp | |
4、卷映射 | |
/qbittorrent/config /config | |
/qbittorrent/downloads /downloads | |
5、环境变量配置 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装linuxserver/transmission | |
2、docker下新建transmission文件夹,再建立子文件夹(文件夹名见卷映射),全部赋予everyone的权限 | |
3、端口映射 | |
51413 51413/tcp | |
51413 51413/udp | |
9091 9091/tcp (webui) | |
4、卷映射 | |
/transmission/watch /watch | |
/transmission/config /config | |
/transmission/downloads /downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、在synology套件中心安装Docker,在群晖File Station/docker下新建Download文件夹 | |
2、注册表搜索,找到这个yangzfan/cloud-torrent/镜像下载安装 | |
4、启动映像,在高级设置——卷——添加docker/Download文件夹,装载路径中填入/downloads,点击应用 | |
5、端口设置——本地端口——修改为63000(或你自己定义的端口),点击应用 | |
6、启动容器,访问localhost:63000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、Docker注册表搜索安装resilio/sync | |
2、docker下新建文件夹resilio,下面分别建立文件夹res(存放要下载的东西,建立几个子文件夹用于同步共享资源)和sync(放置配置文件) | |
3、端口设置为8888(浏览器访问的端口)和55555 | |
4、卷映射 | |
/resilio/res /mnt/mounted_folders/Movie | |
/resilio/sync /mnt/sync | |
5、浏览器输入http://IP:8888,设置用户名和密码,然后两个都打勾,点击Get started进入页面后,设置语言为简体中文。 | |
6、升级pro许可证密钥。下载 Resilio Sync License 授权许可证然后解压得到.btskey 文件,点击试用,然后点击右上角的设置,在点击.btskey 许可证文件导入即可。 | |
[许可证下载](https://lanzoui.com/i84klle#ehj1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
![图片](https://cdn.jsdelivr.net/gh/2500561928/img/down/42571549122628.jpg) | |
H5自适应网站,可做导航网,也可以做个人引导页,自己改图片文字即可。 | |
下载地址 | |
Demo:[http://kcblog.top/gj/dh2](http://kcblog.top/gj/dh2) | |
蓝奏云:[https://www.lanzous.com/i32a0ch](https://www.lanzous.com/i32a0ch) | |
来源:[空城旧梦](http://www.kcblog.top/165.html) |
NewerOlder