PHP und Mariadb fehlen

Hallo ich habe Nextcloud auf einem Raspbery pi 4b
version 23.0 Als ich versuchte PHP zu aktualisiern musste ich PHP und MariaDB entfernen jedoch geht es nicht weiter. Der letzte Befehl (apt remove --purge -y php* && apt autoremove -y)

anzeige webseite:

<?php /** * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Christoph Wurst * @author Joas Schilling * @author Jörn Friedrich Dreyer * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman * @author Roeland Jago Douma * @author Sergio Bertolín * @author Thomas Müller * @author Vincent Petry * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ require_once __DIR__ . '/lib/versioncheck.php'; try { require_once __DIR__ . '/lib/base.php'; OC::handleRequest(); } catch (\OC\ServiceUnavailableException $ex) { \OC::$server->getLogger()->logException($ex, ['app' => 'index']); //show the user a detailed error page OC_Template::printExceptionErrorPage($ex, 503); } catch (\OCP\HintException $ex) { try { OC_Template::printErrorPage($ex->getMessage(), $ex->getHint(), 503); } catch (Exception $ex2) { try { \OC::$server->getLogger()->logException($ex, ['app' => 'index']); \OC::$server->getLogger()->logException($ex2, ['app' => 'index']); } catch (Throwable $e) { // no way to log it properly - but to avoid a white page of death we try harder and ignore this one here } //show the user a detailed error page OC_Template::printExceptionErrorPage($ex, 500); } } catch (\OC\User\LoginException $ex) { $request = \OC::$server->getRequest(); /** * Routes with the @CORS annotation and other API endpoints should * not return a webpage, so we only print the error page when html is accepted, * otherwise we reply with a JSON array like the SecurityMiddleware would do. */ if (stripos($request->getHeader('Accept'),'html') === false) { http_response_code(401); header('Content-Type: application/json; charset=utf-8'); echo json_encode(['message' => $ex->getMessage()]); exit(); } OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 401); } catch (Exception $ex) { \OC::$server->getLogger()->logException($ex, ['app' => 'index']); //show the user a detailed error page OC_Template::printExceptionErrorPage($ex, 500); } catch (Error $ex) { try { \OC::$server->getLogger()->logException($ex, ['app' => 'index']); } catch (Error $e) { http_response_code(500); header('Content-Type: text/plain; charset=utf-8'); print("Internal Server Error\n\n"); print("The server encountered an internal error and was unable to complete your request.\n"); print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n"); print("More details can be found in the webserver log.\n"); throw $ex; } OC_Template::printExceptionErrorPage($ex, 500); } Ich hoffe mir kann einer sagen wie ich php und maria DB manuel wieder installiert bekomme. sorry ich hätte es einfach bei meinem Kenntnisstand sein lassen sollen ;-( Gruß Robin

Hallo Robin,

bei NextcloudPi ist es sinnvoll nur über den Updater unter :4443 updates vorzunehmen.
Bei allem anderen bist du auf ungetestem Terrain und es ist schwierig dich zu unterstützen.
So ist schon das update auf NC23 nicht von ncp unterstützt.
Meiner Ansicht nach ist der weg zurück nur über eine Neuinstallation und einspielen eines backups möglich.
Aber vielleicht findet sich jemand der noch eine Idee hat.

Das musst du wieder installieren. Poste mal deine Debian/Ubuntu-Version

cat /etc/issue
cat /etc/apt/sources.list

Lese dann z. B. hier bzgl. Apache2-, PHP und MariaDB-Pakete
https://www.howtoforge.com/tutorial/how-to-install-nextcloud-on-debian-10
https://www.howtoforge.com/tutorial/ubuntu-nginx-nextcloud
Davon wird dir wohl irgendwas fehlen.

[quote=“devnull, post:3, topic:132281, full:true”]

Das musst du wieder installieren. Poste mal deine Debian/Ubuntu-Version

cat /etc/issue
cat /etc/apt/sources.list

Lese dann z. B. hier bzgl. Apache2-, PHP und MariaDB-Pakete
https://www.howtoforge.com/tutorial/how-to-install-nextcloud-on-debian-10
https://www.howtoforge.com/tutorial/ubuntu-nginx-nextcloud
Davon wird dir wohl irgendwas fehlen.

Debian GNU/Linux 10 \n \l

deb Index of /debian buster main contrib non-free
deb Index of /debian-security buster/updates main contrib non-free
deb Index of /debian buster-updates main contrib non-free

Uncomment deb-src lines below then ‘apt-get update’ to enable ‘apt-get source’

deb-src Index of /debian buster main contrib non-free

deb-src Index of /debian-security buster/updates main contrib non-free

deb-src Index of /debian buster-updates main contrib non-free

deb [arch=ppc64el,amd64,arm64] http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.3/ubuntu bionic main

deb-src [arch=ppc64el,amd64,arm64] http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.3/ubuntu bionic main

Danke ich versuche es mal.

Wie kannst du so einen Schrott in dein Debian Buster einbinden. Scheinbar aber nur Souce-Pakete. Das bringt dir damit sowieso NULL.

Zur Installation von Nextcloud für Debian schau meinen Link von oben. Da sollte alles stehen. Vor allen steht da nicht, dass man irgendwelchen Ubuntu-Kram und dann noch aus einer Fremdquelle einbinden soll. Unfassbar.
https://www.howtoforge.com/tutorial/how-to-install-nextcloud-on-debian-10