Accessing Windows CIFS

(N800 / N810)
Line 1: Line 1:
 +
=Device Support=
==N900==
==N900==
N900 does not support CIFS/SMB but there is already a [http://talk.maemo.org/showthread.php?t=38536 thread] where some people working on this issue.
N900 does not support CIFS/SMB but there is already a [http://talk.maemo.org/showthread.php?t=38536 thread] where some people working on this issue.
{{Midgard article}}
{{Midgard article}}
-
==770 / N800 / N810==
+
==N800 / N810==
'''This just works out of the box if you've got a N800 or a N810 with a recent OS2008 version (the very first one didn't have CIFS/SMB support). Open the File Manager and after a while you'll see Shared folders in the tree on the left.'''
'''This just works out of the box if you've got a N800 or a N810 with a recent OS2008 version (the very first one didn't have CIFS/SMB support). Open the File Manager and after a while you'll see Shared folders in the tree on the left.'''
-
 
+
==770==
Accessing files on a Windows PC from the Nokia 770. Your PC is accessible through Wifi—either it is on a LAN (with a Wifi access point or router), or it can establish an ad-hoc connection (e.g. a laptop). You would like to share files in a directory on that PC with the 770 through the wireless LAN, without having to link them up with the USB cable or extract the MMC.
Accessing files on a Windows PC from the Nokia 770. Your PC is accessible through Wifi—either it is on a LAN (with a Wifi access point or router), or it can establish an ad-hoc connection (e.g. a laptop). You would like to share files in a directory on that PC with the 770 through the wireless LAN, without having to link them up with the USB cable or extract the MMC.
=Step by Step tutorial for beginners=
=Step by Step tutorial for beginners=
 +
'''TODO: Merge this article with information from threads like [http://talk.maemo.org/showthread.php?t=38536 this one]'''
==On the PC==
==On the PC==
Find out or configure the PC's network setup. We must have :
Find out or configure the PC's network setup. We must have :

Revision as of 20:43, 12 January 2010

Contents

Device Support

N900

N900 does not support CIFS/SMB but there is already a thread where some people working on this issue.

Image:Ambox_content.png
This is an article from the old midgard wiki that hasn't yet been fully updated for this wiki, please update it.
Please see the talk page for discussion.

N800 / N810

This just works out of the box if you've got a N800 or a N810 with a recent OS2008 version (the very first one didn't have CIFS/SMB support). Open the File Manager and after a while you'll see Shared folders in the tree on the left.

770

Accessing files on a Windows PC from the Nokia 770. Your PC is accessible through Wifi—either it is on a LAN (with a Wifi access point or router), or it can establish an ad-hoc connection (e.g. a laptop). You would like to share files in a directory on that PC with the 770 through the wireless LAN, without having to link them up with the USB cable or extract the MMC.

Step by Step tutorial for beginners

TODO: Merge this article with information from threads like this one

On the PC

Find out or configure the PC's network setup. We must have :

  1. an IP address, existing or invented. Here we will use 10.10.10.10
  2. the name of the workgroup (or domain, on an enterprise LAN) in which the PC participates. Here we will use noworknogroup
  3. the name of the user in the active session (generally shown in the start menu). Here we will use urbancowboy
  4. the password for that account, if there is one. Here we will use secretpassword.

Now we must create a 'network share', ie a directory that will be accessible through the network.

Here we create a directory named C:\Nokia770. Right-click this directory in Explorer and choose "Sharing and security" (or something like that, I don't have an English Windows version, please correct if wrong !)

In the "Network share" frame you need to check "Share this directory on the network".

Then you will need to enter a name under which the share will appear on the network. It doesn't need to be the same as the directory name. Here we will keep the default Nokia770.

There is also a checkbox that specifies if the share will be 'read-only' from the network or if other machines will also be allowed to write to your PC. The choice is yours...

After you confirm the dialog box the icon for the directory in Explorer will change to show that it is "served". Now we are ready on the PC side.

In between

We are going to add a small bit of software to the tablet, made available by itT user 'fanoush' at the following address :

770 first OS2006 release

770 second OS2006 release

N800 second OS2007 release

In case of problems I have also made it available on my own site :

for first OS2006 release

It is not a fast server but is unrestricted and the file is small (105 KB).

Either way we will suppose that the file ends up in the usual Documents directory that you see in the Maemo File Manager.

On the Nokia

You must have Xterm installed and some way to become "root" (and not flinch at the command line...).

Establish the Wifi link between Nokia and network or PC.

As root in xterm we must now :

  1. Go to the actual directory that shows up as 'Documents':
cd /home/users/MyDocs/.documents
  1. Create a directory in which we will "see" the network share: mkdir myPC
  1. Extract the contents of cifs.tgz, which creates the file cifs.ko in the current directory (you can check by typing ls).
tar xvzf cifs.tgz
  1. All of the above needs to be done only once. Now comes the fun part of actually connecting the two machines, which takes two commands. The first one loads the cifs.ko kernel module, "teaching" the system how to understand this kind of network share, this should yield a message like "Now using cifs.ko":
insmod ./cifs.ko
  1. If there is no error, we can proceed to "mount" the network share into our guest directory, so that the files on our PC will appear to be also on our tablet. This is a long, detailed command and all the pieces need to be just right, so double-check it, again, if there is no error message, you can type **ls myPC to check if your PC's files appear on the tablet.
    (replace the italic parts with your own details of course - type as one single line)
mount -t cifs //_10.10.10.10/Nokia770_ myPC -o  domain=noworknogroup,user=urbancowboy,password=secretpassword **

If the mount command does not respond, check that any firewall on your PC allows devices on the local network to access it. With ZoneAlarm, for example, you'll need to add the IP number of the 770, or your whole DHCP number range, to your "trusted" zone. With M$ XP's build-in Internet Connection Firewall, for another example, you can add port 445 (TCP) for cifs.

Now your share will appear as the myPC directory under Documents in the Maemo File Manager.

Note: these last two commands will need to be issued again each and every time you reboot your tablet. If you are going to use this often it might pay to read a Linux tutorial and learn how these two commands can be saved to a two-line script, to save future typing...

Note: If you are in a network, if you do "smbtree" you will see all sharing hosts, if you need to connect to it (and you want to use cifs) you will type "smbtree -d 3" and read at the line where: "Connection to xx.xx.xx.xx" and this is the wanted ip.