This commit is contained in:
2024-02-18 12:58:08 +08:00
parent aae3a3248f
commit 5ac319a8c6
6 changed files with 124 additions and 148 deletions

View File

@@ -12,7 +12,7 @@ sidebar_position: 10
如果你的海纳思系统发行版本是 20231201 以后的,直接以下命令安装:
```bash
apt update && apt upgrade -y
histb-deb && apt upgrade -y
install-kod.sh install
```
@@ -45,14 +45,12 @@ insatll-kod.sh install
![](./img/kod6.jpg)
## 三、使用
详细的使用方法,请参看:
可道云用户使用手册 [https://docs.kodcloud.com/user/](https://docs.kodcloud.com/user/)
## 四、卸载
一句命令即可卸载:
@@ -62,5 +60,3 @@ install-kod.sh uninstall
```
注意卸载后php 环境保留。可以借用给其他个人程序使用。

View File

@@ -4,8 +4,6 @@ sidebar_position: 11
# 专业版 cups 打印服务器
## 升级专业版获取
海纳思专业版内置 Linux-cups 打印服务器程序,
@@ -35,7 +33,6 @@ sidebar_position: 11
![](./img/printer-cups.jpg)
### 4.添加你的打印机
点击按钮后稍等几秒,页面会刷新并列出检测到的所有可添加打印机,下面以 HP2130 打印机为例,
@@ -61,7 +58,6 @@ sidebar_position: 11
![](./img/printer-test.png)
## 注意事项
### 1.本站收集的 PPD 打印机驱动文件
@@ -70,7 +66,6 @@ sidebar_position: 11
[本站收集的 PPD 打印机驱动文件](https://alist.ecoo.top/aliyun/Linux%E6%89%93%E5%8D%B0%E6%9C%BA%E9%A9%B1%E5%8A%A8)
:::
### 2.惠普系列打印机需要许可认证
如果你的打印机是惠普系列的打印机,根据官方要求,
@@ -83,7 +78,7 @@ sidebar_position: 11
或者增加安装一个工具包,然后在弹出的窗口界面点击同意。
```bash
apt update
histb-deb
apt install pyqt5-dev-tools
hp-plugin
```
@@ -93,5 +88,3 @@ hp-plugin
![](./img/printer-hp-plugin2.jpg)
最后继续进行打印测试即可。

View File

@@ -4,8 +4,6 @@ sidebar_position: 12
# 安装迅雷下载程序
## 64-bit 系统获取安装程序
目前仅支持 64 位的海纳思系统安装迅雷下载;
@@ -17,13 +15,12 @@ sidebar_position: 12
终端输入以下命令即可获取内置脚本:
```bash
sudo apt update
sudo histb-deb
sudo apt install install-xunlei
```
![](./img/xunlei1.jpg)
## 一键安装迅雷
:::tip
@@ -56,7 +53,6 @@ sudo install-xunlei.sh
迅雷配置文件位置在 `/opt/xunlei`
:::
## 一键卸载迅雷
运行一键脚本即可卸载:
@@ -67,11 +63,6 @@ sudo uninstall-xunlei.sh
![](./img/xunlei3.jpg)
## 备注
本程序收集于开源网络,原址在 `https://github.com/cnk3x/xunlei/` ,非官方。

View File

@@ -6,14 +6,13 @@ sidebar_position: 13
qBittorrent 是一款免费的开源种子下载工具,作为 µTorrent 的替代品。它在所有平台上都提供相同的功能,包括 Windows、Linux 和 macOS。该应用程序还配备了一个可扩展的搜索引擎以及 WebUI 遠端,以最大化你的 torrent 体验。使用 qBittorrent你可以在多个平台上轻松下载你喜爱的内容.
## 获取安装程序
如果你的海纳思系统发行版本是 20231201 以后的,直接以下命令安装:
```bash
apt update && apt upgrade -y
histb-deb && apt upgrade -y
apt install qbittorrent-histb -y
```
@@ -39,7 +38,6 @@ apt install qbittorrent-histb -y
注意:默认下载目的地文件夹 `/home/ubuntu/downloads` 强烈建议修改到外置磁盘空间。
## 登录
![](./img/qb2.jpg)
@@ -48,7 +46,6 @@ apt install qbittorrent-histb -y
![](./img/qb3.jpg)
## 修改下载到外置磁盘空间
:::tip
@@ -75,11 +72,6 @@ mkdir -p /mnt/sda1/qbdownloads
apt purge qbittorrent-histb -y
```
## 备注
本程序收集于开源网络,原址在 `https://github.com/c0re100/qBittorrent-Enhanced-Edition`

View File

@@ -10,10 +10,10 @@ sidebar_position: 5
海纳思系统hinas内置了一个 frpc 的穿透客户端软件,
但是并没有开启,也没有运行。
终端输入 ```frpc -v``` 可以看到它的版本号
终端输入 ```systemctl enable frpc``` 可以设置为开机自启动
终端输入 ```systemctl start frpc``` 可以运行它
终端输入 ```systemctl status frpc``` 可以查看它运行后的状态是否正确
终端输入 `frpc -v` 可以看到它的版本号
终端输入 `systemctl enable frpc` 可以设置为开机自启动
终端输入 `systemctl start frpc` 可以运行它
终端输入 `systemctl status frpc` 可以查看它运行后的状态是否正确
如果你不喜欢,可以完全删除它
```bash
@@ -23,7 +23,12 @@ sudo apt purge frpc-histb
当然,如果你哪天又想用了,就安装
```bash
sudo apt update && sudo apt install frpc-histb
#更新
apt update
#注意若是旧版本海nas-0818旧版本系统可一键添加海纳思专业apt命令
nasupdate
histb-deb
sudo apt install frpc-histb
sudo reboot
#重新安装可能需要重启系统
```
@@ -32,7 +37,6 @@ sudo reboot
FRP 软件的的官方教程:[FRP 官方教程网站](https://gofrp.org/zh-cn/docs/)
:::
## 开通 frpc 账号
如果你没有自己搭建的 frps 服务器,可以捐赠 25 元 1 年,使用作者搭建的。
@@ -43,7 +47,6 @@ FRP软件的的官方教程[FRP官方教程网站](https://gofrp.org/zh-cn/do
将你的设备识别码发给作者,捐赠后,继续输入 `kaitong-frp` 即可开通。
## 手动配置案例
如果你开通的是作者的 frpc 账号,首次使用是默认穿透 22 端口和 web 程序的 443 端口。
@@ -120,7 +123,6 @@ keyPath = "/etc/frp/yourdomain.key"
requestHeaders.set.x-from-where = "frp"
```
### 3.增加穿透访问其他端口的程序(http)
你可以通过修改 `/etc/frp/frpc.toml` 配置文件,增加你需要的穿透。
@@ -140,7 +142,6 @@ subdomain = "zhangsandeqinglong"
这样你就可以访问域名直达你的青龙面板程序了: `http://zhangsandeqinglong.any168.net`
注意,只需要填写子域名,这个子域名你可以自己定义,不能跟他人重复。
2.穿透盒子的 `青龙面板` 程序 5700 端口(用自己的个人域名)
```bash
@@ -151,7 +152,6 @@ localPort = 5700
customDomains = ["ql.yourdomain.com"]
```
你的个人域名需要解析到 any168.net 的 IP。终端输入 `nslookup any168.net` 可以获得服务器 IP。
这样你就可以访问域名直达你的青龙面板程序了: `http://ql.yourdomain.com`
@@ -162,7 +162,6 @@ customDomains = ["ql.yourdomain.com"]
systemctl restart frpc
```
### 4.增加穿透访问其他端口的程序(https)
```bash
@@ -186,10 +185,10 @@ requestHeaders.set.x-from-where = "frp"
systemctl restart frpc
```
## 注意事项
检查自己修改的配置是否成功(多人使用, 只能使用唯一的 xxx 名称):
```bash
systemctl stop frpc #先停止frp客户端的服务
frpc -c /etc/frp/frpc.toml #试运行上面修改过的配置
@@ -213,8 +212,3 @@ systemctl restart frpc #重启服务
第四步:我就建个站:
![](./img/frpc5.jpg)

View File

@@ -3,19 +3,29 @@ sidebar_position: 7
---
# 局域网音频广播
MiniDLNA 局域网音视频广播安装
## 安装
```bash
apt update && apt install minidlna
#更新
apt update
#注意若是旧版本海nas-0818旧版本系统可一键添加海纳思专业apt命令
nasupdate
histb-deb
#安装
apt install minidlna
```
## 使用
在该文件夹下存放图片或音视频 MP3、MP4、PNG、JPG 等格式的文件
你就可以在局域网下的电脑、手机、电视等智能终端进行播放了
## 资源位置修改
```bash
vi /etc/minidlna.conf
# 修改配置文件