<HTML>
<HEAD>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<META content="OPENWEBMAIL" name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
Yea, I see what you're saying Don.
<br />
<br />That machine I'd previously used the "smbmount" on is a somewhat older Centos server (Centos4.x I think).  That's also the one that gave me the man page for mount.cifs.
<br />
<br />But when I check in either my production 5106R server or my test 5107R server - I don't get a man page for mount.cifs.  The man page for simple "mount" does contain references to CIFS.
<br />
<br />So I just tired that on my test 5107R.  I used "mount -t cifs //10.0.1.12/XP /mnt/cifs -o user=chuck,pass=password".  That worked.  I was able to mount a share named "XP" on a Windows XP desktop at 10.0.1.12 onto my test BX server (using mountpoint /mnt/cifs) and see the files on the XP desktop.
<br />
<br />
<br />Sorry buddy.  I don't know why your server won't do it.  I don't think there is a difference between the 32-bit 5107R and the 64-bit 5108R that would keep that mount command from working on a 5108R.  Try putting the filesystem type in from of the remote mount (the way I did above) with "mount -t cifs //172.18.10.171....".  See if that works for you.
<br />
<br />Good luck Don.
<br />
<br />
<br />Chuck
<br />
<br />
<br />
<br />
<br /><font size="2"><b>---------- Original Message 
-----------</b>
<br />
From: "Don Teague" <blueonyx@donteague.com> 

<br />
To: blueonyx@mail.blueonyx.it, chuck@tetlow.net 

<br />
Sent: Sun, 5 Feb 2012 23:10:30 -0600 (CST) 

<br />
Subject: [BlueOnyx:09533] Re: unknown filesystem type 'cifs' 

<br />

<br />> Well, let's make it that much more interesting.
<br />> 
<br />> 

Running two 5108's, and both (are supposed to) have mounts to a 3rd machine. The 
file share machine is this:
<br />> 

http://www.turnkeylinux.org/fileserver (Oh, all machines here are a virtual, 
ESXi5, if that matters)
<br />> 
<br />> 

On one machine (bx4) ...
<br />> 

[root@dal-bx4 sites]# mount -t cifs
<br />> 

//172.18.10.171/storage on /mnt/filesrv type cifs 
(rw,username=xxxx,password=xxxx)
<br />> 
<br />> 

On the other one (bx3) ...
<br />> 

[root@dal-bx3 log]# mount -t cifs
<br />> 

[root@dal-bx3 log]# [Nothing here, just me typing.]
<br />> 
<br />> 

Both machines have the same line in their /etc/fstab file (shown in earlier 
emails.)
<br />> 
<br />> 

I tried your suggestion, Chuck, and received this:
<br />> 

[root@dal-bx3 log]# mount //172.18.10.171/storage /mnt/filesrv -t cifs -o 
username=xxxx,password=xxxx
<br />> 

mount: unknown filesystem type 'cifs'
<br />> 
<br />> 

Gerald mentioned something about a Kernel or Kernel module. I know enough to be 
dangerous ... which means I'm going to have to research that to figure out what 
it all means. 
<br />> 
<br />> 

<br />
<br />> 
<br />> <strong>----- Original Message 
-----</strong>
<br />> 

<strong>From:</strong> chuck@tetlow.net
<br />> 

<strong>To:</strong> blueonyx@donteague.com
<br />> 

<strong>Sent:</strong> Sun, February 5, 2012, 22:53
<br />> 

<strong>Subject:</strong> Re: [BlueOnyx:09530] Re: unknown filesystem type 
'cifs'
<br />> 
<br />> 

   Hi Don, 
<br />> 
<br />> 

I'm not a expert on the CIFS filesystem, and so I didn't pay much attention to 
your earlier posts. 
<br />> 
<br />> 

But I was just reviewing your message, and something caught my eye.  In your 
message, you said you tried "<font size="2">//172.18.10.171/storage        
/mnt/filesrv   cifs rw,username=xxxx,password=xxxx,domain=xxxx"</font> in 
the /etc/fstab file for automatically mounting that filesystem. 
<br />> 

<br />> 

What caught my eye was the partition/block device/filesystem you defined to 
mount - "//172.18.10.171/storage".  I've never seen that before in a 
/etc/fstab file.  While I've almost always worked with local block devices (like 
local hard drive partitions), I've worked once or twice with NFS and SMBS file 
system.  So, lets see what we can figure out. 
<br />> 
<br />> 

The man page for fstab specifies that the definition of a NFS mount will be 
<host>:<dir>, as in "172.18.10.171:/storage".  So if 
you're working with a NFS remote mount, you might try putting that in your 
/etc/fstab for the mount and then try mounting it with your previously mentioned 
command "mount -a". 
<br />> 
<br />> 

And the second thought is that you might be trying to mount a remote windows 
share.  In the past, I've done that from the command line.  I used the command 
"smbmount //hostname/mount /mnt/localmountpoint -o 
username=xxxx,password=xxxxx".  But the smbmount command is shown as 
deprecated and not used any longer.  The man page for it indicated you should 
use "mount.cifs" (which is the same as mount -t cifs). 
<br />> 

<br />> 

So, you might try "mount //172.18.10.171/storage /mnt/localmountpoint -t 
cifs -o user=xxxx,pass=yyyy"  And you might need to add 
"dom=windowsdomaniname" to the end.  Give that command a try, and see 
if it will mount your remote filesystem for you. 
<br />> 
<br />> 

Let us know how it works out Don. 
<br />> 
<br />> 

Chuck 
<br />> 
<br />> 

<font size="2"><b>---------- Original Message  -----------</b> 
<br />> 

From: "Don Teague" <blueonyx@donteague.com>   
<br />> 

To: blueonyx@mail.blueonyx.it, gwaugh@frontstreetnetworks.net   
<br />> 

Sent: Sun, 5 Feb 2012 21:44:01 -0600 (CST)   
<br />> 

Subject: [BlueOnyx:09530] Re: unknown filesystem type 'cifs'   
<br />> 
<br />> 

> Guess I got lucky the first time I mounted it then. 
<br />> 

>  
<br />> 

>   mount -t cifs <options> is giving me the same error.  
<br />> 

>  
<br />> 

>   Time do to more research I guess. Thanks. 
<br />> 

>  
<br />> 

>   
<br />> 
<br />> 

>  
<br />> 

> <strong>----- Original Message  -----</strong> 
<br />> 

>   <strong>From:</strong> gwaugh@frontstreetnetworks.net 
<br />> 

>   <strong>To:</strong> blueonyx@donteague.com 
<br />> 

>   <strong>Sent:</strong> Sun, February 5, 2012, 12:24 
<br />> 

>   <strong>Subject:</strong> Re: [BlueOnyx:09525] Re: unknown filesystem 
type  'cifs' 
<br />> 

>  
<br />> 

> Don Teague wrote:  
<br />> 

>   > No ideas?  
<br />> 

>   >   
<br />> 

>   >   
<br />> 

>   >   
<br />> 

>   >   
<br />> 

>   >   
<br />> 

>   > *----- Original Message -----*  
<br />> 

>   > *From:* blueonyx-bounces@mail.blueonyx.it  
<br />> 

>   > *To:* blueonyx-bounces@mail.blueonyx.it  
<br />> 

>   > *Sent:* Fri, February 3, 2012, 11:26  
<br />> 

>   > *Subject:* [BlueOnyx:09517] unknown filesystem type 'cifs'  
<br />> 

>   >   
<br />> 

>   > A few months ago I set up the following in my /etc/fstab file...  

<br />> 

>   >   
<br />> 

>   > //172.18.10.171/storage        /mnt/filesrv   cifs    
<br />> 

>   >  rw,username=xxxx,password=xxxx,domain=xxxx  
<br />> 

>   >   
<br />> 

>   > I'm not an expert when it comes to mounting a file system, but if I  

<br />> 

>   > recall, all I did to mount it was "mount -a"  
<br />> 

>   >   
<br />> 

>   > Well, when I do that, I get:  
<br />> 

>   > [root@localhost ~]# mount -a  
<br />> 

>   > mount: unknown filesystem type 'cifs'  
<br />> 

>   >   
<br />> 

>   > I've got two 5108R's running, and both have the above line in  
<br />> 

>   > /etc/fstab. I did re-boot the machine in question last night, but I  

<br />> 

>   > can't figure out what would have caused the above error.  
<br />> 

>   >   
<br />> 

>   > Any ideas?  
<br />> 

>   >    
<br />> 

>   mount.cifs mounts a Linux CIFS filesystem. It is usually invoked  
<br />> 

>   indirectly by the mount(8) command when using the "-t cifs" 
option.  This  
<br />> 

>   command only works in Linux, and the kernel must support the cifs  
<br />> 

>   filesystem. The CIFS protocol is the successor to the SMB protocol and  

<br />> 

>   is supported by most Windows servers and many other commercial servers  

<br />> 

>   and Network Attached Storage appliances as well as by the  
<br />> 

>  
<br />> 

>   See <a target="_blank" href="http://linux.die.net/man/8/mount.cifs">http://linux.die.net/man/8/mount.cifs</a>  
<br />> 

>  
<br />> 

>   --   
<br />> 

>   Gerald  
<br />> 

<b>------- End of Original Message  -------</b> 
<br />> 

</font>     

<br /><b>------- End of Original Message 
-------</b>
<br />

</font>

</BODY>
</HTML>