P2P App Store Emancipation: - secubox-p2p: Package distribution via mesh peers (CGI API, RPCD, CLI) - packages.js: LuCI view with LOCAL/PEER badges, fetch/install actions - devstatus.js: Dev Status widget with Gitea commits, v1.0 progress tracking - secubox-feed: sync-content command for auto-installing content packages - ACL fix for P2P feed RPCD methods Remote Access: - secubox-app-rustdesk: Native hbbs/hbbr relay server from GitHub releases - secubox-app-guacamole: LXC Debian container with guacd + Tomcat (partial) Content Distribution: - secubox-content-pkg: Auto-package Metablogizer/Streamlit as IPKs - Auto-publish hooks in metablogizerctl and streamlitctl Mesh Media: - secubox-app-ksmbd: In-kernel SMB3 server with ksmbdctl CLI - Pre-configured shares for Jellyfin, Lyrion, Backup UI Consistency: - client-guardian: Ported to sh-page-header chip layout - auth-guardian: Ported to sh-page-header chip layout Fixes: - services.js: RPC expect unwrapping bug fix - metablogizer: Chunked upload for uhttpd 64KB limit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
894 B
Markdown
43 lines
894 B
Markdown
# SecuBox ksmbd Mesh Media Server
|
|
|
|
In-kernel SMB3 file server for mesh media distribution.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Enable the media server
|
|
ksmbdctl enable
|
|
|
|
# Check status
|
|
ksmbdctl status
|
|
|
|
# Add a custom share
|
|
ksmbdctl add-share "Movies" /srv/movies --guest --readonly
|
|
|
|
# Add authenticated user
|
|
ksmbdctl add-user admin
|
|
|
|
# Register with mesh for discovery
|
|
ksmbdctl mesh-register
|
|
```
|
|
|
|
## Default Shares
|
|
|
|
| Share | Path | Access |
|
|
|-------|------|--------|
|
|
| Media | /srv/media | Guest RW |
|
|
| Jellyfin | /srv/jellyfin/media | Guest RO |
|
|
| Lyrion | /srv/lyrion/music | Guest RO |
|
|
| Backup | /srv/backup | Auth RW |
|
|
|
|
## Network Access
|
|
|
|
- **macOS/Linux**: `smb://192.168.255.1/`
|
|
- **Windows**: `\\192.168.255.1\`
|
|
|
|
## Integration
|
|
|
|
- **mDNS**: Auto-announced via Avahi (ksmbd-avahi-service)
|
|
- **P2P Mesh**: `ksmbdctl mesh-register` for mesh discovery
|
|
- **smbfs**: Mount remote shares with `smbfsctl`
|