3274
Comment:
|
3867
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
## page was renamed from Services/FileAccess/FileSystemAccess | |
Line 3: | Line 4: |
== Three methods accessing Samba shares from Linux with Gnome (all machines at ETH) == | == Accessing Samba shares from Linux == === Overview === Recent Linux Kernels contain the userspace filesystem FUSE. This allows you to use all sorts of new an inovative ways for mounting remote fileystems with normal user privileges. Samples are the "gnome userspace virtual filesystem" and "sshfs" based on SSH.<<BR>> |
Line 5: | Line 8: |
=== Mountpoint === | All graphical desktop file managers must use FUSE based solutions to access remote SMB/CIFS filesystems because they are running with normal user privileges.<<BR>> |
Line 7: | Line 10: |
In all cases, the share will be mounted in `/run/user/$UID/gvfs/smb-share:server=X,share=Y` so that you can also access it on the command line. | In all cases, the share will be mounted in `/run/user/$UID/gvfs/smb-share:server=X,share=Y` so that you can also access it on the command line.<<BR>> |
Line 9: | Line 12: |
=== gvfs-mount === | As documented in https://computing.ee.ethz.ch/Workstations/FindYourData the share //itet-stor.ee.ethz.ch/<YourAccount> is a good place to find all your accessible CIFS resources. Technical this share is an implementation of a "Distributed File System (DFS)" root for your account. Unfortunately not all desktop file managers can handle this special kind of a share. With the KDE file managers Konqueror and Dolphin you cann't use this share (see === Command Line === ==== gvfs-mount ==== |
Line 16: | Line 22: |
User [pmuster]: mmuster | User [pmuster]: pmuster |
Line 27: | Line 33: |
=== Nautilus Application === | ==== root mount ==== You can also mount your Samba home area with CIFS. This method is only available on computers where you have root access (i.e. this does not work on Linux workstations managed by us). '''If the command returns an error message saying "wrong fs type", make sure the package "cifs-utils" is installed.''' {{{ $ sudo su # mkdir /itet-stor # mount -t cifs -o user=<d\your_tardis_login>,name=itet-stor.ee.ethz.ch \\\\itet-stor.ee.ethz.ch\\<d\your_tardis_login> /itet-stor }}} === Desktop File Managers === ==== Gnome Nautilus ==== |
Line 33: | Line 51: |
{{attachment:gvfs-nautilus.png}} | {{attachment:nautilus.png}} |
Line 35: | Line 53: |
=== 'Connect to Server' Application === |
==== Nemo ==== |
Line 41: | Line 57: |
{{attachment:gvfs-connect-to-server.png}} | {{attachment:nemo.png}} |
Line 43: | Line 59: |
== Accessing Samba shares from Linux with Konqueror (all machines at ETH) == | === KDE Konqueror (all machines at ETH) === |
Line 65: | Line 81: |
== Using CIFS to connect to Samba shares == You can also mount your Samba home area with CIFS. This method is only available on computers where you have root access (i.e. this does not work on Linux workstations managed by us). '''If the command returns an error message saying "wrong fs type", make sure the package "cifs-utils" is installed.''' {{{ $ sudo su # mkdir /tardis-home # mount -t cifs -o user=<d\your_tardis_login>,name=homes.ee.ethz.ch \\\\homes.ee.ethz.ch\\<d\your_tardis_login> /tardis-home }}} Recent Linux Kernels contain the userspace filesystem [[http://fuse.sourceforge.net/|FUSE]]. This allows you to use all sorts of new an inovative ways for mounting remote fileystems ... for example you can mount a file system via an ssh connection without needing root privileges: |
== SSH File System == |
Line 87: | Line 94: |
Contents
Accessing Samba shares from Linux
Overview
Recent Linux Kernels contain the userspace filesystem FUSE. This allows you to use all sorts of new an inovative ways for mounting remote fileystems with normal user privileges. Samples are the "gnome userspace virtual filesystem" and "sshfs" based on SSH.
All graphical desktop file managers must use FUSE based solutions to access remote SMB/CIFS filesystems because they are running with normal user privileges.
In all cases, the share will be mounted in /run/user/$UID/gvfs/smb-share:server=X,share=Y so that you can also access it on the command line.
As documented in https://computing.ee.ethz.ch/Workstations/FindYourData the share //itet-stor.ee.ethz.ch/<YourAccount> is a good place to find all your accessible CIFS resources. Technical this share is an implementation of a "Distributed File System (DFS)" root for your account. Unfortunately not all desktop file managers can handle this special kind of a share. With the KDE file managers Konqueror and Dolphin you cann't use this share (see
Command Line
gvfs-mount
You can also connect to a Samba share on the command line. After you run that command, you can browse the share in Nautilus.
pmuster@testclient:~> gvfs-mount smb://itet-stor.ee.ethz.ch/pmuster Password required for share pmuster on itet-stor.ee.ethz.ch User [pmuster]: pmuster Domain [WORKGROUP]: d Password: ********
To unmount a share on the command line, just add the -u flag:
pmuster@testclient:~> gvfs-mount -u smb://itet-stor.ee.ethz.ch/pmuster
root mount
You can also mount your Samba home area with CIFS. This method is only available on computers where you have root access (i.e. this does not work on Linux workstations managed by us). If the command returns an error message saying "wrong fs type", make sure the package "cifs-utils" is installed.
$ sudo su # mkdir /itet-stor # mount -t cifs -o user=<d\your_tardis_login>,name=itet-stor.ee.ethz.ch \\\\itet-stor.ee.ethz.ch\\<d\your_tardis_login> /itet-stor
Desktop File Managers
Gnome Nautilus
Select on the left side Connect to network and enter the name of the share in the Server Address field, e.g. as 'smb://itet-stor.ee.ethz.ch/pmuster'.
Enter the details as given in the screenshot below.
Nemo
Open the Connect to Server application and enter the details similar to the screenshot below.
KDE Konqueror (all machines at ETH)
Open your Konqueror Filemanager/Webbrowser.
As location, use smb://server/directory followed by <Enter>Type your username and password in the following dialog box.
For accessing your share provided from ID, use the following data:
Location: smb://nas-nethz-users.ethz.ch/share-u-$/username Username: d\yourNethzUsername Password: yourPrivatePassword Obs! The 'share-u-$' part of the location is dependant on the first character in your username. If your username is 'kpelle', this part of the location will change to 'share-k-$'
For accessing your D-ITET share, user the following:
Location: smb://homes.ee.ethz.ch/username Username: d\username Password: yourPrivatePassword
SSH File System
$ mkdir ~/tardis-home $ sshfs <d\your_tardis_login>@login.ee.ethz.ch: ~/tardis-home
But please note, that you can't do sshfs on homes.ee.ethz.ch - use login.ee.ethz.ch instead!
You can also unmount it again by typing:
$ fusermount -u ~/tardis-home
Please note that sshfs is not officially supported by the ISG.EE