Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
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.
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.
I cannot access my kid's shares on their Windows XP. I can see the shares at smb://kidsPC but when I try to browse around, I get "PLEASE ENTER AUTHENTICATION INFORMATION FOR SERVER=kidsPC SHARE=xxxxx" and even though I enter my user name and password (I have administrative rights on their machine) I cannot go forward... what can be happening?
First you can do 'smbclient -U <username> -L KidsPC' to see if you have any reaction from the Windows PC. This will give you the available shares on KidsPC.
Next you can take one of the shares shown and fill this url in konqueror or nautilus :
smb://KidsPC/<sharename>
Often windows pc's won't show you their shares in konqueror or nautilus, I don't know why...
Originally posted by elluva First you can do 'smbclient -U <username> -L KidsPC' to see if you have any reaction from the Windows PC. This will give you the available shares on KidsPC.
Next you can take one of the shares shown and fill this url in konqueror or nautilus :
smb://KidsPC/<sharename>
Often windows pc's won't show you their shares in konqueror or nautilus, I don't know why...
Doing this works -- but I can also see the shares directly from Konqueror. However, trying to examine the shares doesn't work; I get the authentication window again.
Originally posted by shanenin what command are you using to mount your samba share?
you could try this
Code:
mkdir /mnt/samba
mount -t smbfs //kidsPC/sharename /mnt/samba
if this fails, what error message is it giving you
also,
this is assumbing your windows computer name is kidsPC
I'm using Konqueror directly, and I also tried Smb4k. I can see the shares, but when I click on them to see the files, I get the authentication window.
Originally posted by FKereki I cannot access my kid's shares on their Windows XP. I can see the shares at smb://kidsPC but when I try to browse around, I get "PLEASE ENTER AUTHENTICATION INFORMATION FOR SERVER=kidsPC SHARE=xxxxx" and even though I enter my user name and password (I have administrative rights on their machine) I cannot go forward... what can be happening?
EXTRA INFORMATION: When my kids had Windows 98, I had no problem getting at the shares. I found somewhere that you had to include ENCRYPT PASSWORDS=TRUE in smb.conf, but it didn't seem to work.
What I told you to type (with the helpful additions of the other LQ geeks ) will work, if it doesn't, drop the output into here and we'll help troubleshoot. It's a little confusing that you gave extra information, does that mean what I said didn't work and you are trying to help us help you from there?
I think what I told you to enter doesn't need smb.conf as it specifies some things that smb.conf just provides defaults for. give it a burl.
Originally posted by Elomis What I told you to type (with the helpful additions of the other LQ geeks ) will work, if it doesn't, drop the output into here and we'll help troubleshoot. It's a little confusing that you gave extra information, does that mean what I said didn't work and you are trying to help us help you from there?
I think what I told you to enter doesn't need smb.conf as it specifies some things that smb.conf just provides defaults for. give it a burl.
Sorry, I wasn't clear -- my fault. I tried all suggestions, and they didn't work. With the "mount -t smbfs..." command, I can see the shares, but when I try to look into any directory, I get
/bin/ls: reading directory .: Permission denied
total 0
The windows PC will be a member of either a workgroup or a domain, these are the two types of groups that you can have a windows computer in. Usually a win98 box will be in a workgroup and the name will be "workgroup" or "common".
If you do
Quote:
mount -t smbfs -o username=USERNAME,password=PASSWORD,workgroup=WORKGROUPNAME //KidsPC/Sharename remote
and subsitute USERNAME for the username of the admin account on the windows computer ("Administrator") and PASSWORD for the password of that account, and WORKGROUPNAME for the workgroup the machine is in, it should work fine.
Alternatively, leave out password=PASSWORD and if it is working correctly, it'll prompt you for the password, if not it might raise a different, more informative error message.
Reading the Windows XP help on file sharing (RTFM!!) it says you cannot use it to share any folders such as "Program Files", "Documents and Settings", or other users documents. I created a directory of my own in that machine, shared it, and I can access it with no problems at all. GRR!!!
Now I have to guess some way to be able to get at the files I need in that machine...
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.