When you are customizing MindTouch you'll want to be able to easily drag and drop files from your windows environment into the root directory to apply changes. In order connect to MindTouch via Windows Explorer you need to use Samba, which comes installed on the MindTouch VM.
apt-get update apt-get install samba
1. Log in as the root user.
2. Create a Samba password for the root user:
smbpasswd -a root
NOTE: if you want to use the root password use the same password that you have for your root password account.
3. Update the Samba configuration file (/etc/samba/smb.conf):
Enter the following to open the file in nano, which is a text editor:
nano /etc/samba/smb.conf
Make sure the following line is commented out:
;invalid users = root
4. Create the following share to access the entire drive
[drive] comment = Deki Root folder path = / public = yes writeable = yes read only = no create mode = 0666
5. Restart Samba: /etc/init.d/samba restart
If Windows Vista is your host operating system, you will want to update Samba to a more recent version to avoid a glitch that slows transfer to a trickle. Run the following code to update Samba:
apt-get update && apt-get install samba samba-common samba-client
| Images 0 | ||
|---|---|---|
| No images to display in the gallery. |
Copyright © 2011 MindTouch, Inc. Powered by
1. list all mount status
c:> net use
2. mount a remote file service (ex: samba)
(1) mount the "root" partition
c:> net use \\<ip-address>\drive /U:root <password>
(2) mount user's home directory
c:> net use \\<ip-address>\homes /U:<username> <password>
3. unmount a mounted file service
c:> net use \\<ip-address>\drive /d
c:> net use \\<ip-address>\homes /d
4. print "net" command usage
C:\> net help use
5. open remote file service with Windows Explorer
C:\> explorer \\<ip-address>\ edited 01:47, 31 Jul 2009