[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

fs-cifs

Common Internet Filesystem or SMB client filesystem (QNX Neutrino)


Note: You must be root to start this manager.

Syntax:

fs-cifs [-a] [-b] [-D] [-d name] [-h] [-L|-l] [-t n]
        [-v[v]...] [-Z n]
        [//netbiosname:]server:/share
        prefix user passwd 

Options:

-a
Spoof POSIX attributes; calls to chmod() and chown() return EOK instead of ENOTSUP. Use -a to get rid of error messages from applications that attempt to set the mode or ownership of files and directories, such as cp.
-b
Turn off buffered writes (default is on). This makes writes to the remote filesystem slower, but safer.
-D
Run in the foreground.
-d name
Provides the domain name.
-h
Display usage information.
-L
Ask the user to provide the password (the command line doesn't include password).
-l
("el") Ask the user to provide the name of the user and the password (the command line doesn't include user or password).
-t n
Allow up to n threads (default is 5). Use -t to tune resource usage; more threads require more resources (such as memory), but decrease filesystem latency.
-v[v...]
Verbose output. Additional v characters give more verbose output.
-Z n
The value of n indicates how to attach to the path:

The default is neither.

[//netbiosname:]server:/share
Specify the server name or IP address and the shared resource name of the filesystem being mounted.
Note: If you specify a server name, there must be some way to resolve it to an IP address. See /etc/hosts or /etc/resolv.conf.

You must specify the netbiosname if:

prefix
Absolute path specifying where to mount share in the local filesystem.
user
Log on to the SMB server as user.
passwd
Log on to the SMB server with passwd.

Description:

The fs-cifs filesystem manager is an SMB (also known as CIFS -- Common Internet Filesystem) client operating over TCP/IP. SMB is a protocol for accessing resources in a controlled fashion over a LAN.

The fs-cifs filesystem manager is primarily intended for use as a client with Windows NT machines, although it also works with any SMB server (such as OS/2 Peer, LAN Manager, or SAMBA). To use fs-cifs, you must have an SMB server and a valid login on that server.

The fs-cifs filesystem manager also requires a TCP/IP transport layer, such as the one provided by io-net with the npm-tcpip.so.


Note:

The fs-cifs filesystem manager doesn't work properly with the tiny TCP/IP transport layer provided by npm-ttcpip.so.


You can mount SMB filesystems at the same time as you start fs-cifs; you can also mount them separately after you have started fs-cifs using the mount command.

If you want to mount filesystems separately, start fs-cifs without arguments, as a daemon, then create your mountpoints using mount specifying cifs as the type. See below for an example.

If syslogd is running, fs-cifs writes any error messages to the system log.

Examples:

Start fs-cifs and mount the QNX_BIN share as /bin from an SMB server named SMB_SERVER (with IP address 10.0.0.1) using the guest account and a password of none:

fs-cifs SMB_SERVER:/QNX_BIN /bin guest none

Or:

fs-cifs 10.0.0.1:/QNX_BIN /bin guest none

The same as the above, but with a server, called NB_NAME, running a Microsoft operating system:

fs-cifs //NB_NAME:SMB_SERVER:/QNX_BIN /bin guest \
none 

Or:

fs-cifs //NB_NAME:10.0.0.1:/QNX_BIN /bin guest \
none 

Ask the user for the password:

fs-cifs -L //NB_NAME:SMB_SERVER:/QNX_BIN /bin guest 

Ask the user for the name of the user and the password:

fs-cifs -l //NB_NAME:SMB_SERVER:/QNX_BIN /bin 

Mounts the server as the user in the QNX domain:

fs-cifs -d QNX //MS:10.1:/QNX_BIN /mnt user passwd

Start fs-cifs as a daemon, then mount the QNX_BIN share as /bin from an SMB server named SMB_SERVER (with IP address 10.0.0.1) using the guest account and a password of none:

fs-cifs &

Then:

mount -t cifs -o guest,none //SMB_SERVER:10.0.0.1:/QNX_BIN /bin

or:

mount -t cifs -o user=guest,password=none \
//SMB_SERVER:10.0.0.1:/QNX_BIN /bin

Files:

/dev/log
syslogd interface.
npm-tcpip.so
TCP/IP stack.
npm-ttcpip.so
Tiny TCP/IP stack.

Caveats:

When the filesystem is mounted, everybody who uses the filesystem does so with the privileges of the user specified on the command line.

The passwd argument is required on the command-line even if user doesn't require a password; it can be anything other than whitespace.

See also:

fs-nfs2, fs-nfs3, io-net, npm-tcpip.so, npm-ttcpip.so, mount, umount, syslogd

"CIFS filesystem" in the Working With Filesystems chapter of the User's Guide


[Previous] [Contents] [Index] [Next]