Hello, I've searched endlessly a solution to my problem without any luck. I'm trying to mount a Windows XP share to a Debian box like this. mount -t //smbuser@192.168.0.2/test /mnt/test and it just gives me: mount: wrong fs type, bad option, bad superblock on //192.168.0.2/test, or too many mounted file systems it however works fine to smbclient //192.168.0.2/test -U smbuser any ideas? cheers, /rikard smbd -V Version 2.2.3a-6 for Debian
The -t option tells mount which file system you are using. No wonder the first command fails. If the second command works, why are you seaching endlessly for a solution? Joel On Wed, Jul 03, 2002 at 10:57:28PM +0200, Rikard Florin wrote:> Hello, > > I've searched endlessly a solution to my problem without any luck. I'm > trying to mount a Windows XP share to a Debian box like this. > > mount -t //smbuser@192.168.0.2/test /mnt/test > > and it just gives me: > > mount: wrong fs type, bad option, bad superblock on //192.168.0.2/test, or > too many mounted file systems > > it however works fine to > > smbclient //192.168.0.2/test -U smbuser > > any ideas? > > cheers, > > /rikard > > smbd -V > Version 2.2.3a-6 for Debian > > > > -- > To unsubscribe from this list go to the following URL and read the > instructions: http://lists.samba.org/mailman/listinfo/samba
Hello Florin,
try:
mount -t smbfs -o username=gigel,password=his_pass
//netbios_name/resource_name
/mnt/test
where netbios_name must be the netbios name of computer which contain
the shared resurce, named "resource_name"!
For example:
mount -t smbfs -o username=gigel,password=his_pass //dinu/kits /mnt/test
will work!
I hope i helped u.
Regards,
Iulian Mihaescu
On MI, 2002-07-03 at 23:57, Rikard Florin wrote:
Hello,
I've searched endlessly a solution to my problem without any luck.
I'm
trying to mount a Windows XP share to a Debian box like this.
mount -t //smbuser@192.168.0.2/test /mnt/test
and it just gives me:
mount: wrong fs type, bad option, bad superblock on //192.168.0.2/test, or
too many mounted file systems
it however works fine to
smbclient //192.168.0.2/test -U smbuser
any ideas?
cheers,
/rikard
smbd -V
Version 2.2.3a-6 for Debian
--
To unsubscribe from this list go to the following URL and read the
instructions: http://lists.samba.org/mailman/listinfo/samba