Skip to content

Mounting network drive

Marc Pignat edited this page Mar 2, 2016 · 7 revisions

❗ This documentation is obsolete and has been moved to the hades documentation website

This is how to mount a network drive from a virtual machine.

Required software

sudo apt-get install cifs-utils

List of drives

A list of available drives is here

Example - mount once

Mounting i:\ in ./toto

mkdir -p toto
mount -t cifs -o username=username_goes_here //datahei.hevs.ch/hei toto

Example - permanent mount

Mount i:\ in /mnt/i

Add a line like this one into /etc/fstab:

//datahei.hevs.ch/hei  /mnt/i  cifs  username=username_goes_here,password=*****,iocharset=utf8  0  0