Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
10-20-2005, 10:22 AM
|
#1
|
LQ Newbie
Registered: Oct 2005
Location: atlanta
Distribution: red hat 9
Posts: 3
Rep:
|
samba password/connection woes
Techno-virgin here. Having frustrations over Samba-
Trying to set up RedHat Linbox as a file server on my Windows LAN.
I can see the workgroup>shared folder and printers in network neighborhood- YEah!!- but when I try to logon I am prompted for username and password. I use the correct username/password that has been set up on Samba and also matches my winXP machine name\logon, but nothing happens. I mean nothing. No error message, no nada. I try reconfiguring usernames/encrypt vs. unencrypt pw, user=share, whatever, but I get the same results. Can anybody anybody help???? I've been all over the boards but haven't found a remedy that a techno-naive person can handle. Will post conf. file if that is helpful.
|
|
|
10-20-2005, 11:31 AM
|
#2
|
LQ Newbie
Registered: Oct 2005
Posts: 2
Rep:
|
Re: samba password/connection woes
Quote:
Originally posted by AmBeRfromAtlanta
Techno-virgin here. Having frustrations over Samba-
Trying to set up RedHat Linbox as a file server on my Windows LAN.
I can see the workgroup>shared folder and printers in network neighborhood- YEah!!- but when I try to logon I am prompted for username and password. I use the correct username/password that has been set up on Samba and also matches my winXP machine name\logon, but nothing happens. I mean nothing. No error message, no nada. I try reconfiguring usernames/encrypt vs. unencrypt pw, user=share, whatever, but I get the same results. Can anybody anybody help???? I've been all over the boards but haven't found a remedy that a techno-naive person can handle. Will post conf. file if that is helpful.
|
Please post your config file.
|
|
|
10-20-2005, 11:57 AM
|
#3
|
LQ Newbie
Registered: Oct 2005
Location: Houston, TX
Distribution: Red Hat 8.0 and Ubuntu 6.0.6
Posts: 7
Rep:
|
AmBeRfromAtlanta,
I'm not an expert, but I've been running a fully functional 25-user Red Hat 8.0 Samba fileserver/printserver at my company for 2+ years now. When I set it up, I ran into similar problems. Here's a list of what I had to do to achieve success:
1. I had to create a domain and have everyone log into it for sharing to work right (more so for printing, as I recall). You probably know this already, but Win XP Home doesn't work with domains.
2. In the /etc/samba/smbpasswd file, I had to create a machine name for each computer, in addition to the individual user names. This machine name must exactly match the computer name in the user's My Computer/Network Identification tab. You can do this manually with the smbpasswd -a -m command, or you can do as I did and put the following line in your smb.conf file:
add user script = /usr/sbin/useradd -d dev/null -g machines -s /bin/false -M %m$
which will automatically add the machine name whenever you are adding a computer to the Domain from the user's desktop.
3. For Win XP Professional, you must run a registry patch on the user desktops called SignOrSeal_and_SignSecureChannel.reg for the logon process to work-- I don't know why-- I'm sure plenty other forum members know much more about this than I do.
I apologize if all this is a little bit sketchy. Like I said, I'm no expert. But it works.
Good luck.
|
|
|
10-20-2005, 01:19 PM
|
#4
|
Member
Registered: Sep 2005
Location: New delhi
Distribution: RHEL 3.0/4.0
Posts: 777
Rep:
|
Quote:
Originally posted by dmckee8615
AmBeRfromAtlanta,
I'm not an expert, but I've been running a fully functional 25-user Red Hat 8.0 Samba fileserver/printserver at my company for 2+ years now. When I set it up, I ran into similar problems. Here's a list of what I had to do to achieve success:
1. I had to create a domain and have everyone log into it for sharing to work right (more so for printing, as I recall). You probably know this already, but Win XP Home doesn't work with domains.
2. In the /etc/samba/smbpasswd file, I had to create a machine name for each computer, in addition to the individual user names. This machine name must exactly match the computer name in the user's My Computer/Network Identification tab. You can do this manually with the smbpasswd -a -m command, or you can do as I did and put the following line in your smb.conf file:
add user script = /usr/sbin/useradd -d dev/null -g machines -s /bin/false -M %m$
which will automatically add the machine name whenever you are adding a computer to the Domain from the user's desktop.
3. For Win XP Professional, you must run a registry patch on the user desktops called SignOrSeal_and_SignSecureChannel.reg for the logon process to work-- I don't know why-- I'm sure plenty other forum members know much more about this than I do.
I apologize if all this is a little bit sketchy. Like I said, I'm no expert. But it works.
Good luck.
|
DMCKEE Never suggest some newbie to directly implement SAMBA as a PDC.
It will make him even more frustating of samba.
Dear Amber
First of all dont get frustated. you need to keep yourself cool a bit. SAMBA is easy but sometimes a small mistake could lead you into further problems.
Post your SMB.CONF
And for the time, let me clear you few things...
As if you mentioned that your samba n XPP logins are same & again you mentioned you are getting prompt to enter username password while accessing your samba share thru XP.
You should not get prompt again for entering user : pass combination if your XP credentials were accepted by samba.
So do this :
1. Add you 'root' user to samba with
smbpasswd -a -e root
2. add you user login to samba also & also enable it.
smbpasswd -a -e <XP-username>
-a is for adding
-e is for enabling the user
Restart samba service & check back on XP.
Feed me back.
Last edited by amitsharma_26; 10-20-2005 at 01:25 PM.
|
|
|
10-24-2005, 02:20 PM
|
#5
|
LQ Newbie
Registered: Oct 2005
Location: atlanta
Distribution: red hat 9
Posts: 3
Original Poster
Rep:
|
It works!!!! It works!!! Yippeeee!
|
|
|
All times are GMT -5. The time now is 01:37 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|