Re: mounting windows shares

2004-05-17 Thread CW Harris
On Fri, May 14, 2004 at 02:23:41PM -0400, Harland Christofferson wrote:
 At Friday, 14 May 2004, CW Harris [EMAIL PROTECTED] wrote:
 
 On Fri, May 14, 2004 at 12:05:36PM -0400, Harland Christofferson wrote:
  At Friday, 14 May 2004, Kent West [EMAIL PROTECTED] wrote:
  
  Harland Christofferson wrote:
 snip
More snips
 
 windblowsserver is the server name
 backup is the windows share name
 system products is a directory
 
 
 i thought i could mount to a directory as well. am i mistaken?
 
I believe so.  (Not a windows or samba expert).
AFAIK you can only mount what windows considers a share.  I believe
this is the same limitation you have under windows with the net use
command.

-- 
Chris Harris [EMAIL PROTECTED]
---
GNU/Linux --- The best things in life are free.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-15 Thread Colin Watson
On Fri, May 14, 2004 at 02:25:59PM -0600, Jacob Bresciani wrote:
 under windows 2000 (and NT4 I think) there was a program called subset 
 (or something similar) that could mount directories as drive letters,

I think you mean 'subst' - it comes from DOS.

 I have not seen anything similar under linux but then again I haven't
 really looked.

Drive letters are a really bad idea; Unix doesn't have them. You can use
'mount --bind' with Linux 2.4 and above to pretend that bits of the
filesystem are the same as other bits, if you like.

-- 
Colin Watson  [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



mounting windows shares

2004-05-14 Thread Harland Christofferson
i googled but couldn't find anything appropriate ...

when i try:

mount -t smbfs -o username,password,and rw options //windblowsserver/backup/system\ 
products/

mount chokes on the windblows directory system products .

i assume this is b/c of the space in the directory name. what should 
i do so i can mount this windblows share?










-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Ronny Aasen
On Fri, 2004-05-14 at 15:08, Harland Christofferson wrote:
 i googled but couldn't find anything appropriate ...
 
 when i try:
 
 mount -t smbfs -o username,password,and rw options 
 //windblowsserver/backup/system\ 
 products/
 
 mount chokes on the windblows directory system products .
 
 i assume this is b/c of the space in the directory name. what should 
 i do so i can mount this windblows share?
 

rename the share

-- 
Ronny Aasen [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Harland Christofferson
At Friday, 14 May 2004, Ronny Aasen [EMAIL PROTECTED] wrote:

On Fri, 2004-05-14 at 15:08, Harland Christofferson wrote:
 i googled but couldn't find anything appropriate ...
 
 when i try:
 
 mount -t smbfs -o username,password,and rw options 
 //windblowsserver/backup/system\ 


 products/
 
 mount chokes on the windblows directory system products .
 
 i assume this is b/c of the space in the directory name. what should 
 i do so i can mount this windblows share?
 

rename the share

-- 
Ronny Aasen [EMAIL PROTECTED]



i have a subnet on a corporate lan ... i cannot rename the share.












-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Kent West
Harland Christofferson wrote:

i googled but couldn't find anything appropriate ...

when i try:

mount -t smbfs -o username,password,and rw options //windblowsserver/backup/system\ 
products/

mount chokes on the windblows directory system products .

i assume this is b/c of the space in the directory name. what should 
i do so i can mount this windblows share?

 

I just did a quick test, sharing out \\winserver\My Music, and was able 
to mount it with:

smbmount //winserver/My Music mntpoint

(notice the quotes). I tried the mount command like you're using above 
and it failed, but then I don't know the exact syntax and am too lazy to 
look it up, so YMMV.

--
Kent


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Harland Christofferson
At Friday, 14 May 2004, Kent West [EMAIL PROTECTED] wrote:

Harland Christofferson wrote:

i googled but couldn't find anything appropriate ...

when i try:

mount -t smbfs -o username,password,and rw options 
//windblowsserver/backup/system\ 


products/

mount chokes on the windblows directory system products .

i assume this is b/c of the space in the directory name. what should 
i do so i can mount this windblows share?

  


I just did a quick test, sharing out \\winserver\My Music, and was 
able 
to mount it with:

smbmount //winserver/My Music mntpoint

(notice the quotes). I tried the mount command like you're using above 
and it failed, but then I don't know the exact syntax and am too 
lazy to 
look it up, so YMMV.

-- 
Kent



i am not having the same luck as you are. i can mount to //windblowsserver/backup 
but i cannot mount to //windblowsserver/backup/system products 
i tried smbmount and mount -t smbfs. any other suggestions?










-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread CW Harris
On Fri, May 14, 2004 at 12:05:36PM -0400, Harland Christofferson wrote:
 At Friday, 14 May 2004, Kent West [EMAIL PROTECTED] wrote:
 
 Harland Christofferson wrote:
snip
 
 mount chokes on the windblows directory system products .
 
 i assume this is b/c of the space in the directory name. what should 
 i do so i can mount this windblows share?
 
 
 I just did a quick test, sharing out \\winserver\My Music, and was 
 able 
 to mount it with:
 
 smbmount //winserver/My Music mntpoint
 
 (notice the quotes). I tried the mount command like you're using above 
 and it failed, but then I don't know the exact syntax and am too 
 lazy to 
 look it up, so YMMV.
 
 -- 
 Kent
 
 
 
 i am not having the same luck as you are. i can mount to //windblowsserver/backup 
 but i cannot mount to //windblowsserver/backup/system products 
 i tried smbmount and mount -t smbfs. any other suggestions?
 

Are you sure that is a windows share?  I mean, is the windows share
//windslowsserver/backup and system products is just a directory
under that share?  Or are they *both* valid windows shares?

What does smbclient -L windblowsserver list as the valid shares?

HTH

-- 
Chris Harris [EMAIL PROTECTED]
---
GNU/Linux --- The best things in life are free.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Harland Christofferson
At Friday, 14 May 2004, CW Harris [EMAIL PROTECTED] wrote:

On Fri, May 14, 2004 at 12:05:36PM -0400, Harland Christofferson wrote:
 At Friday, 14 May 2004, Kent West [EMAIL PROTECTED] wrote:
 
 Harland Christofferson wrote:
snip
 
 mount chokes on the windblows directory system products .
 
 i assume this is b/c of the space in the directory name. what 
should 
 i do so i can mount this windblows share?
 

*snip*

Are you sure that is a windows share?  I mean, is the windows share
//windslowsserver/backup and system products is just a directory
under that share?  Or are they *both* valid windows shares?

What does smbclient -L windblowsserver list as the valid shares?

HTH

-- 

windblowsserver is the server name
backup is the windows share name
system products is a directory


i thought i could mount to a directory as well. am i mistaken?











-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting windows shares

2004-05-14 Thread Jacob Bresciani
under windows 2000 (and NT4 I think) there was a program called subset 
(or something similar) that could mount directories as drive letters, I 
have not seen anything similar under linux but then again I haven't 
really looked.

On 14-May-04, at 12:23 PM, Harland Christofferson wrote:

At Friday, 14 May 2004, CW Harris [EMAIL PROTECTED] wrote:

On Fri, May 14, 2004 at 12:05:36PM -0400, Harland Christofferson 
wrote:
At Friday, 14 May 2004, Kent West [EMAIL PROTECTED] wrote:

Harland Christofferson wrote:
snip
mount chokes on the windblows directory system products .

i assume this is b/c of the space in the directory name. what
should
i do so i can mount this windblows share?

*snip*
Are you sure that is a windows share?  I mean, is the windows share
//windslowsserver/backup and system products is just a directory
under that share?  Or are they *both* valid windows shares?
What does smbclient -L windblowsserver list as the valid shares?

HTH

--
windblowsserver is the server name
backup is the windows share name
system products is a directory
i thought i could mount to a directory as well. am i mistaken?











--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact 
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]