mount -t smbfs ->username in " " with space not accepted
Hello,
i'm trying to mount a smb filesystem.
when using a username like "Administrator", it works fine, but the following line won't work:
mount -t smbfs //192.168.0.1/mnt /mnt/server -o username="Firstname Lastname".
'Not working' means that mount doesn't use the given username to authorisize, although it is in ""!
mount seems to have a problem with spaces between username.
This works:
mount -t smbfs //192.168.0.1/mnt /mnt/server -o username="Firstname".
this too:
mount -t smbfs //192.168.0.1/mnt /mnt/server -o username="Lastname".
What must i write that it works when using username "Firstname Lastname"?
|