Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Deutsche Version

  ‭

Info

Der Dateiserver kann zum Abspeichern, Sichern, Austauschen und Abrufen von Daten von/zwischen Nutzern und Geräten verschiedener Betriebssysteme verwendet werden.

Unter Linux erfolgt der Zugriff manuell über die GUI oder die Kommandozeile.


Note

Im Gegensatz zu Windows' Backslashes \ werden in Pfad und Adressen unter Linux normale Slashes / verwendet

Verbindung über GUI

  1. Öffnen Sie den Linux Dateiexplorer
  2. Wählen Sie in der Navigationsliste + Andere Orte
  3. Geben Sie die Adresse des Zielordners unten in die Adresszeile ein
  4. Klicken Sie Verbinden

Info
titleHäufig genutzte Pfade:
  1. Wählen Sie Registrierter Benutzer und geben Sie folgende Informationen ein:
    1. Benutzername: Ihr AWI Benutzername (z.B. jegerken)
    2. Domäne: dmawi.de
    3. Passwort: Ihr AWI Passwort
  2. Klicken Sie Verbinden


Verbindung über Kommandozeile

Note

Für den später verwendeten mount-Befehl werden Root-Rechte benötigt

  1. Installieren Sie die nötigen Pakete 

    Code Block
    sudo apt-get install cifs-utils keyutils


  2. Erstellen Sie einen Ordner in einem Verzeichnis Ihrer Wahl. Dieser dient später als Einhängepunkt.

    Code Block
    sudo mkdir /mnt/awipersonal


    Note

    Jeder individuelle Pfad benötigt bei gleichzeitiger Einbindung einen eigenen Ordner


→ Temporäre Einbindung

  1. Binden Sie den Zielpfad über den erstellten Ordner ein

    Code Block
    sudo mount -t cifs -o username=jegerken,domain=dmawi.de,uid=$USER,gid=$USER //smb.isibhv.dmawi.de/personal /mnt/awipersonal


    Note

    Ersetzen Sie Pfade und Username abhängig von Ihrem Nutzer und System


→ Permanente Einbindung

  1. Erstellen Sie eine Datei .smbcredentials mit folgendem Inhalt in einem Verzeichnis Ihrer Wahl

    Code Block
    title.smbcredentials
    username=jegerken
    password=PassWord123
    domain=dmawi.de


  2. Verändern Sie die Berechtigungen für die erstellte Datei

    Code Block
    title.smbcredentials
    chmod 600 ~/.smbcredentials


  3. Fügen Sie der Datei /etc/stab folgende Zeile hinzu

    Code Block
    title/etc/fstab
    //smb.isibhv.dmawi.de/personal /mnt/awipersonal cifs uid=$USER,gid=$USER,rw,user,credentials=/home/jegerken/.smbcredentials 0 0


    Note

    Ersetzen Sie Pfade, Username and Password abhängig von Ihrem Nutzer und System




Ähnliche Artikel

Content by Label
showLabelsfalse
max5
showSpacefalse
sortmodified
reversetrue
cqllabel = "kb-how-to-article" and type = "page" and space = "HELP"



English Version

  ‭

Info

The file server can be used to save, back up, share and retrieve data from/between users and devices of different operating systems.

On Linux the server can be accessed manually using the GUI or the command line.


Note

As opposed to Windows' backslashes \ paths and addresses under Linux are written with normal slashes /

Connect via GUI

  1. Open the Linux file explorer
  2. Select + Other Locations from the navigation list of the left
  3. Enter the path of the target folder into the address bar at the bottom
  4. Click Connect

Info
titleFrequently used paths:
  1. Select Registered User and enter the following information:
    1. Username: your AWI username (e.g jegerken)
    2. Domain: dmawi.de
    3. Password: you AWI Password
  2. Click Connect


Connect via Command Line

Note

The later utilized mount command requires root privileges

  1. Install the required packages

    Code Block
    sudo apt-get install cifs-utils keyutils


  2. Create a folder in a directory of your choice. This will serve as the mount point.

    Code Block
    sudo mkdir /mnt/awipersonal


    Note

    Each individual path requires a separate folder when mounting them simultaneously


→ Temporary Mount

  1. Mount the target path by using the previously created folder

    Code Block
    sudo mount -t cifs -o username=jegerken,domain=dmawi.de,uid=$USER,gid=$USER //smb.isibhv.dmawi.de/personal /mnt/awipersonal


    Note

    Replace the paths and usernameaccording to your user and system


→ Permanent Mount

  1. Create a .smbcredentials file with the following content in a directory of your choice

    Code Block
    title.smbcredentials
    username=jegerken
    password=PassWord123
    domain=dmawi.de


  2. Change the permissions for the created file

    Code Block
    title.smbcredentials
    chmod 600 ~/.smbcredentials


  3. Add the following line to /etc/fstab

    Code Block
    title/etc/fstab
    //smb.isibhv.dmawi.de/personal /mnt/awipersonal cifs uid=$USER,gid=$USER,rw,user,credentials=/home/jegerken/.smbcredentials 0 0


    Note

    Replace the paths, username and passwordaccording to your user and system




Content by Label
showLabelsfalse
max5
showSpacefalse
sortmodified
reversetrue
cqllabel = "kb-how-to-article" and type = "page" and space = "HELP"