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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
10-30-2006, 07:42 PM
|
#1
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Rep:
|
type smb unknown when trying to mount xp mount via samba
When running Fedora Core 3 I was able to:
mount /mnt/kodiak
Now when upgraded to Fedora Core 5 the same command gives:
mount: unknown filesystem type 'smb'
My /etc/fstab line is:
//kodiak/C /mnt/kodiak smb noauto,user,rw 0 0
Any insights?
Thanks,
|
|
|
|
10-30-2006, 09:52 PM
|
#2
|
|
Member
Registered: Sep 2004
Location: Malaysia, Johor
Distribution: Dual boot MacOS X/Ubuntu 9.10
Posts: 851
Rep:
|
i think you must change smb to smbfs
|
|
|
|
10-31-2006, 08:50 AM
|
#3
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
re: smb or smbfs
Actually I already tried that. Still unknown filesystem. The smb worked fine in FC3.
Strange...
Thanks,
|
|
|
|
10-31-2006, 12:11 PM
|
#4
|
|
Member
Registered: May 2004
Location: Cornwall, UK
Distribution: Ubuntu 8.04
Posts: 464
Rep:
|
Have you tried vfat as the filesystem
|
|
|
|
10-31-2006, 12:32 PM
|
#5
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
vfat vs smb/smbfs
I didn't expect vfat to work, since it is being shared on the Linux side by samba - and unfortunately I was correct.
The smb notation works fine on my other (FC3) machine - the problem seems to be the upgrade from FC3 to FC5 - something was left out or improperly updated.
Thanks,
|
|
|
|
11-01-2006, 05:51 PM
|
#6
|
|
LQ Newbie
Registered: Nov 2006
Posts: 1
Rep:
|
smbfs mount not working
I am having the same problem with a new FC5 install. Let me know if you find the solution.
Do you see smbfs listed when you type...
cat /proc/filesystems
I don't.
|
|
|
|
11-01-2006, 09:56 PM
|
#7
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
I have found out so far that I must replace smbfs with cifs, but it only works if I:
mount -t cifs //192.168.1.100/C /mnt/kodiak
it will fail if I use
mount -t cifs //kodiak/C /mnt/kodiak
which is lame, since man mount.cifs says it should work and nmblookup (also part of samba) can find //kodiak just fine (and returns an IP of 192.168.1.100)
|
|
|
|
11-01-2006, 10:40 PM
|
#8
|
|
Member
Registered: Sep 2004
Location: Malaysia, Johor
Distribution: Dual boot MacOS X/Ubuntu 9.10
Posts: 851
Rep:
|
mount -t cifs //192.168.1.100/C /mnt/kodiak
you use windows 2003 server?If I not mistaken we use cifs only with this OS
about the linux linux not understand host 'kodiak', it is definitely if you don't put it at dnsserver or /etc/hosts.
please add
kodiak 192.168.1.100
in /etc/hosts
|
|
|
|
11-02-2006, 11:08 AM
|
#9
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
Thanks - that worked, except kodiak uses DHCP, and won't always be 192.168.1.100 - samba is supposed to accept //kodiak as a share name, and resolve the IP that way.
nmblookup //kodiak (also part of samba) returns 192.168.1.100 without any changes to /etc/hosts
is cifs really unable to use windows sharenames?!
Last edited by jpantone; 11-02-2006 at 11:10 AM.
|
|
|
|
11-02-2006, 01:10 PM
|
#10
|
|
Member
Registered: Jan 2004
Location: Arizona
Distribution: Debian, Ubuntu, CentOS and SuSE
Posts: 126
Rep:
|
This is probably a little late for you, but if you want to go back to mounting it as a smb share, try installing the smbfs package for your distro. I had to install that seperately from Samba on my Debian box to mount network shares from my W2K server.
|
|
|
|
11-02-2006, 07:07 PM
|
#11
|
|
Member
Registered: Sep 2004
Location: Malaysia, Johor
Distribution: Dual boot MacOS X/Ubuntu 9.10
Posts: 851
Rep:
|
I had never try use it, but you can try add in wins in /etc/nsswitch.conf
|
|
|
|
11-06-2006, 03:49 PM
|
#12
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
OK - found my answer....
to mount a windows XP share in FC 5 (as root) do:
mount -t cifs //XPHostname/Sharename /mountpoint -o rw,password="password"
the -o is for options, here read/write and password=password
to unmount:
umount /mountpoint
in fstab:
//XPHostname/Sharename /mountpoint cifs noauto,rw,password="password"
then you can just
mount /mountpoint
|
|
|
|
11-06-2006, 03:51 PM
|
#13
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
To get the //XPHostname/Sharename to resolve winbind must be running at bootup, apparently it is not running by default. Use your favorite bootup configurator to get it going automatically at boot. (I really like webmin)
|
|
|
|
11-06-2006, 03:52 PM
|
#14
|
|
LQ Newbie
Registered: Mar 2003
Location: Poway, CA (San Diego)
Distribution: Fedora Core 5
Posts: 19
Original Poster
Rep:
|
Can anyone point me to a page to change my Newbie to something else :-)
|
|
|
|
11-07-2006, 06:49 PM
|
#15
|
|
Member
Registered: Sep 2004
Location: Malaysia, Johor
Distribution: Dual boot MacOS X/Ubuntu 9.10
Posts: 851
Rep:
|
please post more. from asking question to answering question. more than 30 post than u will level up to members. Just like New2Linux2, i think he just promoted.
If you want better title, I think you need to post more than 1000.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:48 AM.
|
|
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
|
|