Panel minecraft RPI (MineOS+file explorer)
En cours1. Télécharger Raspbian: https://downloads.raspberrypi.org/raspbian_lite_latest et installe le.(Voir ici)
2. Active le ssh:
sudo raspi-config
Selectionner
Interfacing Options
Naviguez vers et sélectionnez
SSH
Choisissez
Oui
Sélectionnez
Ok
Choisissez
Terminer
3.Installe MineOS:wget -O - http://pastebin.com/raw/v6X3gpbS | tr -d '\r' | sudo bash
4.Installe apache2 et php5
sudo apt-get install apache2 php5
5.Cree un dossiersudo mkdir /var/www/html/explorer
6.Ajouter des perms
sudo chmod -R 777 /var/www/html/
sudo chown -R pi:www-data /var/www/html/
7.Installer l'explorer
cd /var/www/html/explorer
sudo wget https://raw.githubusercontent.com/jcampbell1/simple-file-manager/master/index.php
8.Cree un lien entre les fichers du serveur et de l'explorer:
ln -s /var/games/minecraft/servers /var/www/html/explorer/servers
9.Activer le .htaccess:
nano /etc/apache2/apache2.conf
Puis, cherchez les lignes :
AllowOverride None
Et remplacez-les par AllowOverride All
OU TAPER:vi %s/AllowOverride None/AllowOverride All/g
10.Activer la lecture du fichier:sudo a2enmod authz_groupfile
11.Faire le .htaccess:touch .htaccess
sudo nano .htaccess
Ajouter:
AuthUserFile /home/pi/passwd
AuthGroupFile /dev/null
AuthName "Accès interdit"
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
12.Cree le .htpasswd:
cd
htpasswd -c passwd [nom d'user]
Taper un mot de passe
13.Reload
sudo /etc/init.d/apache2 restart
sudo a2enmod authz_groupfile
14.Cree un nom d'user pour MineOS useradd [nom d'user]
passwd [nom d'user]
Retaper le mot de passe15.Voila c Terminer
Acceder avec:
https://18.226.34.223:8443/admin pour le panel
http://18.226.34.223/Explorer pour l'explorer
AUTO INSTALLER: https://pastebin.com/vTsAQ40j
Source:
https://www.raspberrypi.org/documentation/remote-access/ssh/
https://www.youtube.com/watch?v=IQWlv3jMntw
https://github.com/jcampbell1/simple-file-manager
https://www.system-linux.eu/index.php?post/2009/04/23/Mettre-en-place-un-htaccess-avec-htpasswd
https://maniacgeek.net/2014/03/29/la-commande-useradd-ou-adduser-dans-linux/4694/
http://www.quennec.fr/trucs-astuces/syst%C3%A8mes/gnulinux/commandes/liens-symboliques/cr%C3%A9er-un-lien-symbolique
https://askubuntu.com/questions/522519/htaccess-error-invalid-command-authgroupfile
https://raspbian-france.fr/activer-fichiers-htaccess-raspbian/