Results 11 to 15 of 15
Actually I want to access the linux pc as I access windows pc from windows pc....
- 04-26-2005 #11Just Joined!
- Join Date
- Apr 2005
- Posts
- 7
I am not able to access linux pc from windows 2000/xp/2003
Actually I want to access the linux pc as I access windows pc from windows pc.
- 04-26-2005 #12Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
Have you compiled support for cifs or smbfs into the kernel?
- 04-27-2005 #13Just Joined!
- Join Date
- Mar 2005
- Location
- india
- Posts
- 87
hii
i am also a newbie. but as far as i know, configuring samba will solve your problem . u can configure samba either manually thru smb.conf or by SWAT . swat is a web based tool to administer samba which runs on port 901. or else, u can start ssh on linux & login from windows thru ssh. it is gui based & u can c linux box as u use to c your m$ boxes. for ssh client for windows, pliz download from www.sfsu.edu/~doit/helpdesk/wdevapp.htm. if it was helpful , reply back. thanx
- 04-29-2005 #14Just Joined!
- Join Date
- Apr 2005
- Posts
- 7
I am not able to access linux pc from windows 2000/xp/2003
No .
Pls. tell me how will i do that
- 04-29-2005 #15Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
I suppose you have samba > 3.0 and smb.conf in /etc/samba. replace your config with this:
[global]
workgroup = WORKGROUP
null passwords = Yes
passdb backend = tdbsam:/etc/samba/private/passdb.tdb
log level = 3
ldap ssl = no
[root]
path = /
read only = No
This is enough to create access to your root dir.
Run this command: smbpasswd -a root
It will ask you for a password and create root user for samba. You can try to mount this root dir from localhost to be sure it work fine: "mount -t cifs //localhost/root /some/mount/point" or if you don't have cifs support "mount -t smbfs //localhost/root /some/mount/point". If you'll be able to mount it, then everything should be ok and you can try to access your linux box from windows. If it fails you can check for example dmesg or something. If the access from windows fail, there is something wrong with your network settings...


Reply With Quote