Root-Server Tutorial

ROOT-SERVER TUTORIAL

Automatisches Verbinden mit einem SMB-Share unter Ubuntu 22.04

Lerne, wie du einen SMB-Share unter Ubuntu 22.04 einrichtest und diesen automatisch als systemd-Service startest.

Einleitung

Dieses Tutorial beschreibt, wie du einen SMB-Share unter Ubuntu 22.04 einrichtest und diesen automatisch als systemd-Service startest.

Dieses Tutorial beschreibt NICHT, wie du einen SMB-Share bereitstellst, sondern nur wie du diesen automatisch verbindest (mount)!

Das Tutorial wurde auf Ubuntu 22.04 (Juli 2023) getestet.


Beispielwerte für dieses Tutorial:

WertBeschreibung
smb.example.com/user/SMB-Share-Server (Der Server, auf dem der SMB-Share bereitgestellt wird)
/root/smb-share-mount/Mount-Point (Der Ordner, in dem der SMB-Share eingehängt werden soll)
password-examplePasswort (Das Passwort, mit dem du dich auf dem SMB-Share-Server einloggst)
username-exampleBenutzername (Der Benutzername, mit dem du dich auf dem SMB-Share-Server einloggst)

All diese Werte müssen durch deine eigenen Werte ersetzt werden!

Schritt 1 - SMB-Share-Zugangsdaten einrichten

Zuerst musst du dich über SSH in deinen Server einloggen. (Falls du nicht deinen Login-Benutzer verwenden möchtest, kannst du auch einen neuen Benutzer erstellen und dich mit diesem einloggen.)

  1. Bewege dich per cd in das Verzeichnis, in dem du den SMB-Share mounten möchtest.
  2. Gib mkdir smb-share-mount ein, um den Ordner für den SMB-Share zu erstellen.
  3. Gib nano .smbcredentials ein und drücke Enter, um eine neue Datei zu erstellen.
  4. Füge den folgenden Code in diese Datei ein:
username=username-example
password=password-example

Bitte ersetze password-example durch dein Passwort und username-example durch den SMB-Share-Benutzernamen.

  1. Verlasse die Datei, indem du "Strg + X" und dann "Y" und dann "Enter" drückst.
  2. Gib chmod 600 .smbcredentials ein, um die Zugangsdaten-Datei zu schützen.

Schritt 2 - Server vorbereiten

  1. Gib sudo -s ein, um Root-Rechte zu erhalten.
  2. Gib dein Passwort ein und drücke Enter.
  3. Gib nun apt update -y && apt upgrade -y && apt autoremove -y && apt install -y cifs-utils keyutils ein, um den Server zu aktualisieren.
  4. Falls ein rosafarbenes Fenster erscheint, drücke einmal Enter um fortzufahren.

Schritt 3 - SMB-Share einrichten

  1. Gib nano /etc/systemd/system/smb-connect.service ein und drücke Enter, um eine neue systemd-Dienstdatei zu erstellen.
  2. Füge den folgenden Code in diese Datei ein:
[Unit]
Description=Automatically connect to SMB share
After=network.target

[Service]
WorkingDirectory=/root/
User=root
ExecStart=mount -t cifs -o credentials=/root/smb-share-mount/.smbcredentials //smb.example.com/user/ /root/smb-share-mount/
RemainAfterExit=true
Type=oneshot

[Install]
WantedBy=multi-user.target
  1. Ersetze [USER] durch deinen Benutzernamen.
  2. Ersetze smb.example.com/user/ durch den Namen des Servers, unter dem der SMB-Share erreichbar ist.
  3. Ersetze /root/smb-share-mount/ (x2) durch den Pfad, unter dem der SMB-Share gemountet werden soll. - Das ist der Ordner in dem du vorhin den Ordner smb-share-mount erstellt hast.
  4. Verlasse die Datei, indem du "Strg + X" und dann "Y" und dann "Enter" drückst.
  5. Gib systemctl daemon-reload ein, um den systemd-Daemon neu zu laden.
  6. Gib systemctl enable smb-connect ein, um den Dienst zu aktivieren.
  7. Gib systemctl start smb-connect ein, um den Dienst zu starten.

Fazit

Du hast nun einen SMB-Share unter Ubuntu 22.04 eingerichtet und diesen als systemd-Service gestartet.

Danke fürs Lesen!

License

MIT

Copyright (c) 2023 Konstantin Protzen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contributor's Certificate of Origin

By making a contribution to this project, I certify that:

  1. The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the file; or

  2. The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license (unless I am permitted to submit under a different license), as indicated in the file; or

  3. The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.

  4. I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the license(s) involved.

Veröffentlicht am 5.7.2023 von Konstantin Protzen

Tutorial einreichen

Erhalte einen 60€ netcup Gutschein für jedes veröffentlichte Tutorial.