LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-29-2003, 05:03 PM   #1
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Rep: Reputation: 30
Red face Konqueror->smb://<IP>/<share>->HANG!


Alrighty, I open up konqueror to access the shares on the Windows XP/2k computers on my network... I input 'smb://192.168.0.<comp specific 1-21>' I get the shares OK but when I try to access them konqueror hangs... It doesn't freeze... I can still stop it from trying to access the share... and the gear Icon is still moving... but nothing happens... no matter how big or small the share I'm trying to access is. What's wrong here? LISA is running... Samba too... in fact all the Win comps can access my Samba shares... but I can't access the Win shares...
 
Old 01-29-2003, 07:55 PM   #2
tied2
Member
 
Registered: Jun 2002
Location: Florida
Distribution: Redhat, FreeBSD, FC 6
Posts: 220

Rep: Reputation: 30
I believe you need to be running a fat32 file system on your Win box to be able to access your Win files from Konq. If your running a NTFS file system on your Win box you need to add a NTFS module to konq.
 
Old 01-31-2003, 03:52 PM   #3
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Original Poster
Rep: Reputation: 30
Ok... Where do I get that?
 
Old 02-01-2003, 07:35 AM   #4
marsonist
Member
 
Registered: Sep 2002
Location: Stuttgart, Germany
Distribution: SuSE 9.1 Pro
Posts: 171

Rep: Reputation: 30
I could be very wrong, but my understanding of the SMB protocol was that it was platform and format type independant. I can access fat32, NTFS, ext3, and reiserFS all from konq using SMB://<IP Address>

As for your problem, are you sure that you have the latest versions of the samba client and or the kio_samba package for KDE? If so, is your samba set up to use encrypted passwords. By default samba tries to use unencrypted passwords, while windows, by default, encrypts them.

Write back with what you find :-)

Steve
 
Old 02-11-2003, 05:46 PM   #5
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Original Poster
Rep: Reputation: 30
Sorry, was away for a little bit. Up Ok here's the deal. I cannot access ANY shares on the network, FAT32, NTFS, Anything. Shmeg, I can't even access the shares on the Quantum Snap Server we've got here, I mean, even the Macintrash can access those... but yeah, konqueror just hangs. I have the packages that came with RH8 and the Win XP/2K Comps can all access my Samba shares but not the other way around... the samba config file says that it's using password encryption.... Is there somewhere else I need to check... Oh, this is is off the topic but as a side note... KDE has been popping up these annoying little boxes asking me what to do with a certain internet address.... How do I make it stop doing that...
 
Old 02-12-2003, 08:08 AM   #6
marsonist
Member
 
Registered: Sep 2002
Location: Stuttgart, Germany
Distribution: SuSE 9.1 Pro
Posts: 171

Rep: Reputation: 30
Have you tried mounting samba shares outside of KDE?

should go something like this :

open root console
'mkdir /mnt/myshare'
'mount -t smbfs -u username=foo,password=bar //windowsbox/sharename /mnt/myshare'

now you can copy to and from /mnt/myshare. If it doesn't work try using the ip address of your windows box: 'mount -t smbfs -u username=foo,password=bar //192.168.0.1/sharename /mnt/myshare'

You would obviously want to replace the username and password with something valid. Let me know how it goes.

--Steve
 
Old 02-12-2003, 05:34 PM   #7
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Original Poster
Rep: Reputation: 30
FINALLY! Thank-you my friend. Oh, the part "-u username=foo,password=bar" doesn't work. mount doesn't recognize the argument. Instead I remove that line and it asks me for a password after I run the command.
 
Old 02-12-2003, 05:48 PM   #8
marsonist
Member
 
Registered: Sep 2002
Location: Stuttgart, Germany
Distribution: SuSE 9.1 Pro
Posts: 171

Rep: Reputation: 30
Cool, (that's what command lines are for :-) It would still be great to know why the kio-server for samba is locking up on you, as I find it more user friendly. I'll give it some thought once I get off of work and get back with you.

--Steve
 
Old 03-10-2003, 04:33 AM   #9
zidour
LQ Newbie
 
Registered: Mar 2003
Distribution: Red Hat 9
Posts: 6

Rep: Reputation: 0
I have similar problem as mentioned above... When I try smb://computer in Konqueror, it shows me the list of available shares, that's ok. But when I try to enter ANY share on any computer on our LAN, Konqueror just rotates its gear wheel and shows nothing. However, smbmount works perfectly, but I wanted comfort! Please help if you can. Thanks
 
Old 03-10-2003, 06:11 PM   #10
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Original Poster
Rep: Reputation: 30
Here's a solution. Since fstab doesn't seem to like mounting anything if there is a space in it's name, just create a script to mount all the shares you need. I've kind of gone in the direction of windows on this one. I have a directory on my desktop labeled 'My Network' and under that I have a directory for every computer and in those dirs I have a dir for their respective shares. I can simply run my script to mount all the shares to their respective folders in there. The only problem is that I can't write to any of the mounts here's a line that I use in my script:

mount -t smbfs -o username=<user>,password=<pass> '//<IP>/<Share>' '//home/Daniel/Desktop/My Netowrk/<Comp>/<Share>'

works but I can't write to the share...
 
Old 03-10-2003, 06:24 PM   #11
zidour
LQ Newbie
 
Registered: Mar 2003
Distribution: Red Hat 9
Posts: 6

Rep: Reputation: 0
Yes, this solution came to my mind too. There is only one problem: what if I know the name of the computer (or IP) but I don't know the name of the share? Yes, i know about the "smbclient -L", but I wanted a little bit complex solution...

Does anybody has the same problem except two of us? Do you think it's a bug or just a bad configuration?
 
Old 03-10-2003, 06:43 PM   #12
kierl
Member
 
Registered: Oct 2002
Location: Utah
Distribution: Gentoo(2.6.23-r3)
Posts: 181

Original Poster
Rep: Reputation: 30
look at the computer that the share is on. or get on a windoze comp.. it'll give you the names of the shares in Networking Neighborhood...
 
Old 03-28-2003, 12:00 PM   #13
dvogel
LQ Newbie
 
Registered: Mar 2003
Posts: 9

Rep: Reputation: 0
Post libsmbclient

Install libsmbclient, if it isn't already installed. That fixed the smb:// issue for me.
 
Old 03-28-2003, 12:29 PM   #14
zidour
LQ Newbie
 
Registered: Mar 2003
Distribution: Red Hat 9
Posts: 6

Rep: Reputation: 0
I am sorry, libsmbclient is installed.
 
Old 03-28-2003, 02:46 PM   #15
dvogel
LQ Newbie
 
Registered: Mar 2003
Posts: 9

Rep: Reputation: 0
Other issues

Have you tried running konqueror from a konsole to see what error messages are printed out?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
smb mount folders disappear on mount & konqueror smb fails: network unreachable tisource Linux - Networking 1 10-17-2007 12:30 AM
smb share GiX Linux - Newbie 2 10-25-2005 01:29 AM
SMB Share bharaniks Linux - Networking 2 08-05-2005 04:46 AM
Konqueror causes system to hang and crashes riemann_noodles Linux - Newbie 0 02-16-2005 01:08 AM
SMB (netfs) hang on startup cherup Linux - Newbie 0 04-13-2003 07:13 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 12:22 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration