Re: /etc/fstab + embedded spaces

2009-11-03 Thread andrew clarke
On Tue 2009-11-03 14:07:37 UTC-0600, Adam Vande More (amvandem...@gmail.com) 
wrote:

>windows path's have alternate eg c:\Test~1

Yes, files and paths may all have an MS-DOS 8.3 equivalent (I think
this option can be disabled in NTFS), however Windows SMB shares do
not.

"\\host\My Documents" is valid, but not "\\host\MYDOCU~1".
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /etc/fstab + embedded spaces

2009-11-03 Thread Adam Vande More
On Tue, Nov 3, 2009 at 2:20 PM, andrew clarke  wrote:

> On Tue 2009-11-03 14:07:37 UTC-0600, Adam Vande More (
> amvandem...@gmail.com) wrote:
>
> >windows path's have alternate eg c:\Test~1
>
> Yes, files and paths may all have an MS-DOS 8.3 equivalent (I think
> this option can be disabled in NTFS), however Windows SMB shares do
> not.
>
> "\\host\My Documents" is valid, but not "\\host\MYDOCU~1".
>

google also say use \040 in place of space


-- 
Adam Vande More
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /etc/fstab + embedded spaces

2009-11-03 Thread Adam Vande More
On Tue, Nov 3, 2009 at 2:02 PM, andrew clarke  wrote:

> On Tue 2009-11-03 06:57:12 UTC-0500, carmel_ny (carmel...@hotmail.com)
> wrote:
>
> > I was attempting to create this entry in the /etc/fstab file. It is to
> > a WinXP machine.
> >
> > //u...@bios/My Documents /laptop smbfs rw,noauto  0  0
> >
> > It fails because 'fstab' does not allow embedded spaces in device
> > names, not does it allow enclosing the name in quotes.
>
> A workaround may be to run mount_smbfs from /etc/crontab (or perhaps
> the root user's crontab), eg.
>
> @reboot /usr/sbin/mount_smbfs -N "//u...@bios/My Documents"
> /laptop
>
> or similar.
>
> Regards
> Andrew
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> freebsd-questions-unsubscr...@freebsd.org"
>

windows path's have alternate eg c:\Test~1


-- 
Adam Vande More
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /etc/fstab + embedded spaces

2009-11-03 Thread Jerry
On Tue, 03 Nov 2009 12:13:24 -0500
Michael Powell  replied:

>carmel_ny wrote:
>
>> I was attempting to create this entry in the /etc/fstab file. It is
>> to a WinXP machine.
>> 
>> //u...@bios/My Documents /laptop smbfs rw,noauto  0  0
>> 
>> It fails because 'fstab' does not allow embedded spaces in device
>> names, not does it allow enclosing the name in quotes.
>> 
>> I did some Googling and discovered that I am not the only one annoyed
>> by this behavior. I discovered this patch that had been submitted
>> awhile ago.
>> 
>> http://lists.freebsd.org/pipermail/freebsd-bugs/2007-October/026469.html
>> 
>> Changing the share name is not really an option. Is there some way of
>> making this work in 'fstab'? I can use the name including spaces in
>> 'mount_smbfs' so that is how I am currently mounting the share. It
>> just seems strange that 'fstab' by not accepting the use of quoting
>> is not in step with how FreeBSD usually operates.
>> 
>
>Don't know if this works for fstab, but the normal way to escape
>spaces is with a \, like this:
>
>//u...@bios/My\ Documents /laptop smbfs rw,noauto  0  0
>
>May not work in fstab but you can try it and see.

Thanks for the suggestion. Unfortunately, it doesn't work either.

-- 
Jerry
ges...@yahoo.com

|===
|===
|===
|===
|

The most winning woman I ever knew was hanged for poisoning three little
children for their insurance money.

Sherlock Holmes

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /etc/fstab + embedded spaces

2009-11-03 Thread andrew clarke
On Tue 2009-11-03 06:57:12 UTC-0500, carmel_ny (carmel...@hotmail.com) wrote:

> I was attempting to create this entry in the /etc/fstab file. It is to
> a WinXP machine.
> 
> //u...@bios/My Documents /laptop smbfs rw,noauto  0  0
> 
> It fails because 'fstab' does not allow embedded spaces in device
> names, not does it allow enclosing the name in quotes.

A workaround may be to run mount_smbfs from /etc/crontab (or perhaps
the root user's crontab), eg.

@reboot /usr/sbin/mount_smbfs -N "//u...@bios/My Documents" /laptop

or similar.

Regards
Andrew
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: /etc/fstab + embedded spaces

2009-11-03 Thread Michael Powell
carmel_ny wrote:

> I was attempting to create this entry in the /etc/fstab file. It is to
> a WinXP machine.
> 
> //u...@bios/My Documents /laptop smbfs rw,noauto  0  0
> 
> It fails because 'fstab' does not allow embedded spaces in device
> names, not does it allow enclosing the name in quotes.
> 
> I did some Googling and discovered that I am not the only one annoyed
> by this behavior. I discovered this patch that had been submitted awhile
> ago.
> 
> http://lists.freebsd.org/pipermail/freebsd-bugs/2007-October/026469.html
> 
> Changing the share name is not really an option. Is there some way of
> making this work in 'fstab'? I can use the name including spaces in
> 'mount_smbfs' so that is how I am currently mounting the share. It just
> seems strange that 'fstab' by not accepting the use of quoting is not in
> step with how FreeBSD usually operates.
> 

Don't know if this works for fstab, but the normal way to escape spaces is 
with a \, like this:

//u...@bios/My\ Documents /laptop smbfs rw,noauto  0  0

May not work in fstab but you can try it and see.

-Mike


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


/etc/fstab + embedded spaces

2009-11-03 Thread carmel_ny
I was attempting to create this entry in the /etc/fstab file. It is to
a WinXP machine.

//u...@bios/My Documents /laptop smbfs rw,noauto  0  0

It fails because 'fstab' does not allow embedded spaces in device
names, not does it allow enclosing the name in quotes.

I did some Googling and discovered that I am not the only one annoyed
by this behavior. I discovered this patch that had been submitted awhile
ago.

http://lists.freebsd.org/pipermail/freebsd-bugs/2007-October/026469.html

Changing the share name is not really an option. Is there some way of
making this work in 'fstab'? I can use the name including spaces in
'mount_smbfs' so that is how I am currently mounting the share. It just
seems strange that 'fstab' by not accepting the use of quoting is not in
step with how FreeBSD usually operates.

-- 

Carmel
carmel...@hotmail.com

|===
|===
|===
|===
|

It is much easier to suggest solutions
when you know nothing about the problem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"