Re: [Samba] mount -t smbfs

2004-09-17 Thread Scott Ainslie
Still no go mounting the drive! smb://IPAddress in Konqueror works
great can browse the share/copy/delete with no password asked. Surely
if I can do this I should be able to mount the drive?
Getting desperate.

Thanks
Scott


On Thu, 16 Sep 2004 12:12:05 +0200, Scott Ainslie
[EMAIL PROTECTED] wrote:
 On Thu, 16 Sep 2004 17:38:19 +0800, Ow Mun Heng [EMAIL PROTECTED] wrote:
 
 
  On Thu, 2004-09-16 at 17:09, Scott Ainslie wrote:
   On Thu, 16 Sep 2004 17:01:37 +0800, Ow Mun Heng [EMAIL PROTECTED] wrote:
On Thu, 2004-09-16 at 16:45, Scott Ainslie wrote:
 SME Server 6.0.1 as standalone (Domain controler, mail  file server)
 samba version 2.2.8a

 I have a win95 machine on my network logged onto the domain with it's
 d drive shared with full access and no password.

 I have created a directory /mnt/win

 I can ping the machine name 'tarryn'

 When I try:
 mount -t smbfs //tarryn/d /mnt/win

 I get the error:
 Connection to tarryn failed
 SMB connection failed
   
Can I ask if the firewall is the problem?? Have you checked it?

 If I try: mount -t smbfs //tarryn/d /mnt/win -o ip=192.168.196.44
 then I get the error:
 session request to TARRYN failed (Called name not present)
 
   It shouldn't be the problem as I did a: service iptables stop
   same error
 
  Okay.. Is samba running (may be a stupid question)
  
 Yes, that same win95 machine can browse shares in the linux box.
 
  Can you instead of using the name, try the IP address?
 
  mount -t smbfs //192,168.196.44/d /mnt/win
 
 Have tried using the IP same result.
 
  (is it really named d? of d$)
 Yes d, Can browse from other windows machines and an suse 9.1 box
 using smb://192.168.196.44/d can see all files fine.
 
 Tried to mount from suse box and get same error.
 
  how about
  mount -t smbfs -o guest //192,168.196.44/d /mnt/win
 
  or try listing the shares
 
  smbclient -L 192,168.196.44
 
 Cant connect error
 
  and please reply to the list.
 
 Sorry about that. (Why is the list not setup so that the default repy
 address is the list and not the respondent?)
 
 Scott

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] mount -t smbfs

2004-09-17 Thread Nathan Howard
Scott Ainslie wrote:
Still no go mounting the drive! smb://IPAddress in Konqueror works
great can browse the share/copy/delete with no password asked. Surely
if I can do this I should be able to mount the drive?
Getting desperate.
Thanks
Scott
snip
I usually use smbmount for mounting shares:
smbmount //tarryn/d /mnt/d
If that doesn't work then could try the following:
smbmount //tarryn/d /mnt/d -o username=guest
(samba doesn't use 'guest' as its guest user normally)
smbmount //tarryn/d /mnt/d -o ip=192.168.196.44
smbmount //192.168.196.44/d /mnt/d
(again spcifically tell it ip)
smbmount //tarryn/d /mnt/d -o workgroup=domain
or a mixture of the above ( -o username=guest,ip=192.168.196.44 etc...)
Also make sure that your computer has joined the domain
(done by doing : net rpc join -U Administrator)
Hope that helps
Nathan
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


[Samba] mount -t smbfs

2004-09-16 Thread Scott Ainslie
SME Server 6.0.1 as standalone (Domain controler, mail  file server)
samba version 2.2.8a

I have a win95 machine on my network logged onto the domain with it's
d drive shared with full access and no password.

On server-manager I have setup a hostname for this machine based on
mac address so that the DHCP server gives it the same IP every time.

I have created a directory /mnt/win

I can ping the machine name 'tarryn'

When I try:
mount -t smbfs //tarryn/d /mnt/win

I get the error:
Connection to tarryn failed
SMB connection failed

If I try: mount -t smbfs //tarryn/d /mnt/win -o ip=192.168.196.44
then I get the error:
session request to TARRYN failed (Called name not present)
session request to *SMBSERVER failed (Called name not present)

Can anyone please help, I am desperate!

Thanks
Scott
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] mount -t smbfs

2004-09-16 Thread Ow Mun Heng
On Thu, 2004-09-16 at 16:45, Scott Ainslie wrote:
 SME Server 6.0.1 as standalone (Domain controler, mail  file server)
 samba version 2.2.8a
 
 I have a win95 machine on my network logged onto the domain with it's
 d drive shared with full access and no password.
 
 On server-manager I have setup a hostname for this machine based on
 mac address so that the DHCP server gives it the same IP every time.
 
 I have created a directory /mnt/win
 
 I can ping the machine name 'tarryn'
 
 When I try:
 mount -t smbfs //tarryn/d /mnt/win
 
 I get the error:
 Connection to tarryn failed
 SMB connection failed

Can I ask if the firewall is the problem?? Have you checked it?
 
 If I try: mount -t smbfs //tarryn/d /mnt/win -o ip=192.168.196.44
 then I get the error:
 session request to TARRYN failed (Called name not present)
 session request to *SMBSERVER failed (Called name not present)
 
 Can anyone please help, I am desperate!
 
 Thanks
 Scott

-- 
Ow Mun Heng
Fedora GNU/Linux Core 2 on D600 1.4Ghz CPU kernel
2.6.7-2.jul1-interactive 
Neuromancer 17:01:16 up 1 day, 7:45, 7 users, load average: 0.82, 0.88,
1.05 
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] mount -t smbfs

2004-09-16 Thread Ow Mun Heng
On Thu, 2004-09-16 at 17:09, Scott Ainslie wrote:
 On Thu, 16 Sep 2004 17:01:37 +0800, Ow Mun Heng [EMAIL PROTECTED] wrote:
  On Thu, 2004-09-16 at 16:45, Scott Ainslie wrote:
   SME Server 6.0.1 as standalone (Domain controler, mail  file server)
   samba version 2.2.8a
  
   I have a win95 machine on my network logged onto the domain with it's
   d drive shared with full access and no password.
  
   I have created a directory /mnt/win
  
   I can ping the machine name 'tarryn'
  
   When I try:
   mount -t smbfs //tarryn/d /mnt/win
  
   I get the error:
   Connection to tarryn failed
   SMB connection failed
  
  Can I ask if the firewall is the problem?? Have you checked it?
  
   If I try: mount -t smbfs //tarryn/d /mnt/win -o ip=192.168.196.44
   then I get the error:
   session request to TARRYN failed (Called name not present)

 It shouldn't be the problem as I did a: service iptables stop
 same error

Okay.. Is samba running (may be a stupid question)

Can you instead of using the name, try the IP address?

mount -t smbfs //192,168.196.44/d /mnt/win

(is it really named d? of d$)

how about 
mount -t smbfs -o guest //192,168.196.44/d /mnt/win

or try listing the shares

smbclient -L 192,168.196.44

and please reply to the list.



-- 
Ow Mun Heng
Fedora GNU/Linux Core 2 on D600 1.4Ghz CPU kernel
2.6.7-2.jul1-interactive 
Neuromancer 17:31:49 up 1 day, 8:15, 7 users, load average: 0.67, 0.70,
0.76 
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] mount -t smbfs

2004-09-16 Thread Scott Ainslie
On Thu, 16 Sep 2004 17:38:19 +0800, Ow Mun Heng [EMAIL PROTECTED] wrote:
 
 
 On Thu, 2004-09-16 at 17:09, Scott Ainslie wrote:
  On Thu, 16 Sep 2004 17:01:37 +0800, Ow Mun Heng [EMAIL PROTECTED] wrote:
   On Thu, 2004-09-16 at 16:45, Scott Ainslie wrote:
SME Server 6.0.1 as standalone (Domain controler, mail  file server)
samba version 2.2.8a
   
I have a win95 machine on my network logged onto the domain with it's
d drive shared with full access and no password.
   
I have created a directory /mnt/win
   
I can ping the machine name 'tarryn'
   
When I try:
mount -t smbfs //tarryn/d /mnt/win
   
I get the error:
Connection to tarryn failed
SMB connection failed
  
   Can I ask if the firewall is the problem?? Have you checked it?
   
If I try: mount -t smbfs //tarryn/d /mnt/win -o ip=192.168.196.44
then I get the error:
session request to TARRYN failed (Called name not present)
 
  It shouldn't be the problem as I did a: service iptables stop
  same error
 
 Okay.. Is samba running (may be a stupid question)
 
Yes, that same win95 machine can browse shares in the linux box.

 Can you instead of using the name, try the IP address?
 
 mount -t smbfs //192,168.196.44/d /mnt/win

Have tried using the IP same result.
 
 (is it really named d? of d$)
Yes d, Can browse from other windows machines and an suse 9.1 box
using smb://192.168.196.44/d can see all files fine.

Tried to mount from suse box and get same error.
 
 how about
 mount -t smbfs -o guest //192,168.196.44/d /mnt/win
 
 or try listing the shares
 
 smbclient -L 192,168.196.44

Cant connect error
 
 and please reply to the list.

Sorry about that. (Why is the list not setup so that the default repy
address is the list and not the respondent?)

Scott
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


FW: [Samba] mount -t smbfs

2003-06-30 Thread Sadananda B Rai
Is anybody can help me on this please. 

Can I mount a Fat32(Win XP) file system on my Linux server(Red Hat 8). I
was able to mount windows 98 and not with Xp or NT.

smbmount //xp/e test -o username=srai
Password: 
3870: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed

mount -t smbfs //XP/e test -o username=srai
Password: 
3872: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed
Any help or suggestions on this ?
Thanks in advance
Sadanand

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Sadananda B Rai
Sent: Monday, June 30, 2003 4:47 PM
To: [EMAIL PROTECTED]
Subject: [Samba] smbmount

Hello All,
 I am trying to mount a network NTFS and FAT32 file system
to red hat 8 system. But I getting a error as 
 
smbmount //host/E /mnt/NT
Password:
960: session setup failed: ERRSRV - ERRbadpw
SMB connection failed
 
If u say this is the passwd and username problem. ( Can any one help
that I should use Linux user and passwd or Windows system user?)
 
Than some time I am getting a error as 
 
957: tree connect failed: ERRDOS - ERRnosuchshare
SMB connection failed
 
In the log I couldn’t find anything than
 
Jun 30 15:50:00 test last message repeated 13 times
Jun 30 15:51:05 test last message repeated 13 times
Jun 30 15:52:10 test last message repeated 13 times
Jun 30 15:53:15 test last message repeated 13 times
 
Any help will be appreciated and thanks in advance. I tried googling but
couldn’t find more about my problem. Plz someone help me on this.
 
Thanking You
Sada
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


Re: [Samba] mount -t smbfs

2003-06-30 Thread Gareth Davies
Try:

mount -t smbfs -o username=Administrator,password=YOURADMINPASSWORD
//YOURSERVER/E$ /windows/E

make sure /windows/E exists :)

Gareth Davies
- Original Message -
From: Sadananda B Rai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 30, 2003 2:37 PM
Subject: FW: [Samba] mount -t smbfs


Is anybody can help me on this please.

Can I mount a Fat32(Win XP) file system on my Linux server(Red Hat 8). I
was able to mount windows 98 and not with Xp or NT.

smbmount //xp/e test -o username=srai
Password:
3870: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed

mount -t smbfs //XP/e test -o username=srai
Password:
3872: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed
Any help or suggestions on this ?
Thanks in advance
Sadanand

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Sadananda B Rai
Sent: Monday, June 30, 2003 4:47 PM
To: [EMAIL PROTECTED]
Subject: [Samba] smbmount

Hello All,
 I am trying to mount a network NTFS and FAT32 file system
to red hat 8 system. But I getting a error as

smbmount //host/E /mnt/NT
Password:
960: session setup failed: ERRSRV - ERRbadpw
SMB connection failed

If u say this is the passwd and username problem. ( Can any one help
that I should use Linux user and passwd or Windows system user?)

Than some time I am getting a error as

957: tree connect failed: ERRDOS - ERRnosuchshare
SMB connection failed

In the log I couldn't find anything than

Jun 30 15:50:00 test last message repeated 13 times
Jun 30 15:51:05 test last message repeated 13 times
Jun 30 15:52:10 test last message repeated 13 times
Jun 30 15:53:15 test last message repeated 13 times

Any help will be appreciated and thanks in advance. I tried googling but
couldn't find more about my problem. Plz someone help me on this.

Thanking You
Sada
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba




*
This email has been checked by the altohiway e-Sweeper Service
*

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


RE: [Samba] mount -t smbfs

2003-06-30 Thread Sadananda B Rai
Hi,

 Thax and but still not working I have the folder windows/E and
I have shared with full permission on Xp/E. Please let me know if
anything I missed.

mount -t smbfs -o username=Administrator,password=passwd //XP/e
windows/E
4210: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed

Sadanand

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Gareth Davies
Sent: Monday, June 30, 2003 7:11 PM
To: Sadananda B Rai; [EMAIL PROTECTED]
Subject: Re: [Samba] mount -t smbfs 

Try:

mount -t smbfs -o username=Administrator,password=YOURADMINPASSWORD
//YOURSERVER/E$ /windows/E

make sure /windows/E exists :)

Gareth Davies
- Original Message -
From: Sadananda B Rai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 30, 2003 2:37 PM
Subject: FW: [Samba] mount -t smbfs


Is anybody can help me on this please.

Can I mount a Fat32(Win XP) file system on my Linux server(Red Hat 8). I
was able to mount windows 98 and not with Xp or NT.

smbmount //xp/e test -o username=srai
Password:
3870: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed

mount -t smbfs //XP/e test -o username=srai
Password:
3872: session setup failed: ERRDOS - ERRnoaccess
SMB connection failed
Any help or suggestions on this ?
Thanks in advance
Sadanand

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Sadananda B Rai
Sent: Monday, June 30, 2003 4:47 PM
To: [EMAIL PROTECTED]
Subject: [Samba] smbmount

Hello All,
 I am trying to mount a network NTFS and FAT32 file system
to red hat 8 system. But I getting a error as

smbmount //host/E /mnt/NT
Password:
960: session setup failed: ERRSRV - ERRbadpw
SMB connection failed

If u say this is the passwd and username problem. ( Can any one help
that I should use Linux user and passwd or Windows system user?)

Than some time I am getting a error as

957: tree connect failed: ERRDOS - ERRnosuchshare
SMB connection failed

In the log I couldn't find anything than

Jun 30 15:50:00 test last message repeated 13 times
Jun 30 15:51:05 test last message repeated 13 times
Jun 30 15:52:10 test last message repeated 13 times
Jun 30 15:53:15 test last message repeated 13 times

Any help will be appreciated and thanks in advance. I tried googling but
couldn't find more about my problem. Plz someone help me on this.

Thanking You
Sada
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba




*
This email has been checked by the altohiway e-Sweeper Service
*

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba


RE: [Samba] mount -t smbfs

2003-06-30 Thread Sadananda B Rai
Thax, I have the Administrator and srai users on Xp system.

Thax
Sadanand

-Original Message-
From: David Morel [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 30, 2003 7:28 PM
To: Sadananda B Rai
Subject: RE: [Samba] mount -t smbfs

Le lun 30/06/2003 à 15:50, Sadananda B Rai a écrit :
 Hi,
 
  Thax and but still not working I have the folder windows/E
and
 I have shared with full permission on Xp/E. Please let me know if
 anything I missed.
 
 mount -t smbfs -o username=Administrator,password=passwd //XP/e
 windows/E
 4210: session setup failed: ERRDOS - ERRnoaccess
 SMB connection failed
 

create a user on the xp box first

 
 
 *
 This email has been checked by the altohiway e-Sweeper Service
 *
 
 -- 
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
-- 
***
[EMAIL PROTECTED]
OpenPGP public key: http://www.amakuru.net/dmorel.asc
28192ef126bc871757cb7d97f4a44536



--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba