Skip to content

Commit

Permalink
Merge branch 'dev' into dev-StS-Releasenotes_v8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanStS authored Dec 18, 2023
2 parents a301618 + b50867c commit 28c8fe0
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/software.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ description: Overview of ready-to-run DietPi-Software options, cloud & backup se
- [**Docker-Compose - Run multi-container applications on Docker**](software/programming.md#docker-compose)
- [**Portainer - Docker container management**](software/programming.md#portainer)
- [**VSCodium - FLOSS version of Microsoft VSCode**](software/programming.md#vscodium)
- [**Git - Distributed version control system**](software/programming.md#git)

## [Distributed Projects](software/distributed_projects.md)

Expand Down
7 changes: 5 additions & 2 deletions docs/software/bittorrent.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,8 +839,11 @@ Extremely efficient and fast NZB download manager with web interface. Coded in C

=== "View logs"

- Service: `journalctl -u nzbget`
- Daemon: `/var/log/nzbget.log`
NZBGet service logs can be viewed with the following command:

```sh
journalctl -u nzbget
```

=== "Update"

Expand Down
4 changes: 4 additions & 0 deletions docs/software/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,8 @@ Your very own GitHub style server, with web interface.

![Gogs web interface screenshot](../assets/images/dietpi-software-cloud-gogs.png){: width="400" height="175" loading="lazy"}

See also the [**Git**](../programming/#git) client which is available in `dietpi-software` as an installation package.

=== "Access to the web interface"

The web interface is accessible via TCP port **3000**:
Expand Down Expand Up @@ -533,6 +535,8 @@ Your very own GitHub style server, with web interface.

![Gitea logo](../assets/images/dietpi-software-cloud-gitea.jpg){: width="320" height="200" loading="lazy"}

See also the [**Git**](../programming/#git) client which is available in `dietpi-software` as an installation package.

=== "Access to the web interface"

The web interface is accessible via port **3000**:
Expand Down
19 changes: 13 additions & 6 deletions docs/software/media.md
Original file line number Diff line number Diff line change
Expand Up @@ -678,8 +678,8 @@ Also Installs:
=== "Access to the web interface"

- URL: `http://<your.IP>/ampache`
- Username: `admin`
- Password: `dietpi`
- Username: `dietpi` (DietPi v8.24 and earlier: `admin`)
- Password: `<your global password>` (default: `dietpi`)

=== "Transfer media files to DietPi"

Expand Down Expand Up @@ -729,7 +729,7 @@ Also Installs:

In case the the NFS client has no write permissions, this needs to be done at the NFS server.

- For Samba, edit `/etc/fstab` and add or set the mount options `file_mode=0775,dir_mode=0775`. Important is the last digit of each mode, which indicates read (and execute) permissions for all users. Stricter modes, still working with Ampache, would be: `file_mode=0644,dir_mode=0755`
- For Samba, edit `/etc/fstab` and add or set the mount options `file_mode=0644,dir_mode=0755`. Important is the last digit of each mode, which indicates read (and execute) permissions for all users.
Then remount the the Samba share for the change to take effect:

```sh
Expand All @@ -738,7 +738,7 @@ Also Installs:

=== "Configuration"

Since Debian Bullseye (Ampache v5), the main configuration file is located at:
Since Debian Bullseye (Ampache v6), the main configuration file is located at:

```
/mnt/dietpi_userdata/ampache/config/ampache.cfg.php
Expand All @@ -754,7 +754,7 @@ Also Installs:

E.g. to allow .m4a playback:

- Since Debian Bullseye (Ampache v5):
- Since Debian Bullseye (Ampache v6):

```sh
G_CONFIG_INJECT 'transcode_m4a[[:blank:]]' 'transcode_m4a = allowed' /mnt/dietpi_userdata/ampache/config/ampache.cfg.php
Expand All @@ -768,14 +768,21 @@ Also Installs:

More info: <https://github.com/ampache/ampache/wiki/Transcoding>

=== "Update Ampache"
=== "Update"

To update Ampache to the current version, execute

```sh
dietpi-software reinstall 40
```

***

Official website: <https://ampache.org/>
Official documentation: <https://github.com/ampache/ampache/wiki>
Source code: <https://github.com/ampache/ampache>
License: [AGPLv3](https://github.com/ampache/ampache/blob/develop/LICENSE.md)

## Emby

A web interface media streaming server. Think Kodi, but using any device with a web browser.
Expand Down
2 changes: 2 additions & 0 deletions docs/software/programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ To find out which version of Git is installed, just run
git --version
```

See also [**Gogs**](../cloud/#gogs) and [**Gitea**](../cloud/#gitea), the GitHub style servers which are available in `dietpi-software` as an installation package.

***

Official website: <https://git-scm.com/>
Expand Down

0 comments on commit 28c8fe0

Please sign in to comment.