 |
 |
 |
 |
| Servers & Networking Discuss any Fedora server problems and Networking issues such as dhcp, IP numbers, wlan, modems, etc. |

21st December 2004, 05:06 PM
|
|
Registered User
|
|
Join Date: Feb 2004
Location: ND
Age: 66
Posts: 142

|
|
|
Samba FC3 rpm -qa | grep "samba"
[root@localhost craig]# rpm -qa | grep "samba"
samba-client-3.0.10-1.fc3
samba-common-3.0.10-1.fc3
My system rpm tool reports that both client and commom samba's are available for installation. However the GNOME "Add/Remove" system application reports that they are "not" available when I want to add either the
< windows server > or the < web server >
I just installed FC3 and made all the updates ( note : after completing the updates and rebooting it reported still more updates were needed which included the samba rpms) I ran the #uptodate again, rebooted and now the system does not report any updates needed)
What's the problem here? Why doesn't "Add/Remove" find the samba rpms for installation? Is the rpm database corrupted?
thank you
craig
|

21st December 2004, 06:22 PM
|
 |
Retired Community Manager
|
|
Join Date: Feb 2004
Location: Seattle, WA, USA
Age: 56
Posts: 3,423

|
|
|
They're already installed - that's what the rpm -qa ... tells you.
__________________
Linux User #28251 (April '93)
Professional Java Geek :cool:
|

22nd December 2004, 01:34 AM
|
|
Registered User
|
|
Join Date: Feb 2004
Location: ND
Age: 66
Posts: 142

|
|
|
if it's suppose to be "installed" then why does a
# slocate smbd
come up blank?
as does
#slocate nmbd
|

22nd December 2004, 02:52 AM
|
 |
Registered User
|
|
Join Date: May 2004
Location: That toddlin' town...
Posts: 296

|
|
|
Probably because the slocate database has not had a chance to update itself since the install. Check under /usr/sbin/ and see if smbd is there. Or, you can just update the slocate database:
slocate -u
Last edited by blammo; 22nd December 2004 at 02:55 AM.
|

22nd December 2004, 03:50 AM
|
 |
Retired Community Manager
|
|
Join Date: Feb 2004
Location: Seattle, WA, USA
Age: 56
Posts: 3,423

|
|
Quote:
|
Originally Posted by cwynn
if it's suppose to be "installed" then why does a
# slocate smbd
come up blank?
as does
#slocate nmbd
|
Because those are the server daemons - and they're in the samba-server package.
__________________
Linux User #28251 (April '93)
Professional Java Geek :cool:
|

22nd December 2004, 05:04 AM
|
 |
Registered User
|
|
Join Date: May 2004
Location: That toddlin' town...
Posts: 296

|
|
|
Aye carumba!!! You got a keen eye!
|

22nd December 2004, 09:31 PM
|
|
Registered User
|
|
Join Date: Feb 2004
Location: ND
Age: 66
Posts: 142

|
|
Quote:
|
Because those are the server daemons - and they're in the samba-server package.
|
You're saying?
they are daemon names wint the samba-server package inother words not files on the system
My /usr/bin does have a "smbclient" and ten other smb****** files
HOWEVER
I have no < smb > installed that I can find on my sytem.
As I ment to say in the beginning rpm reports that smbclient and smbcommon are both installed.
To install smb using gnome's "Add/Remove Pacakge":
iwhen I check the box and then select update the system reports that I do not have "samba-common" requried by samba-client 3.0.10-1. This contradicts what rpm qa | grep "samba" output.
This doesn't make sense to me does it to you
edit: 18:42 CST
found samba-3.0.10-1.fc3.i386.rpm on the web and installed it. Now a smb is in my /etc/rc.d/init.d
Last edited by cwynn; 23rd December 2004 at 01:00 AM.
|

30th December 2004, 01:22 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 25

|
|
|
i got the same error when trying to update the packages required for gdesklets ... needs "samba-common, libselinux, krb5-libs, libxml2" can't install samba with my fedora dvd for some odd reason ...
|

30th December 2004, 01:30 AM
|
 |
Registered User
|
|
Join Date: Apr 2004
Location: Warsaw, Poland
Age: 32
Posts: 1,085

|
|
|
the "Add/Remove" aka "Package Manager" aka system-config-packages is IMHO stupidly named this way... it has nothing to do with packages. it manages software (not exactly packages) - groups of software or given functionalities (as installing Web Server means installing few packages like apr, httpd etc.) - so this GUI shows aviable software not strict package list. this may be confused and IMHO this tool's name should changed and the tool itself should give some instructions on what it is actually doing.
anyway I recomend you not to use this crap but switch to something like yum or apt (I prefer APT).
|

30th December 2004, 01:36 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 25

|
|
|
you can't use apt with F3 .... therefore go with debian ... i would suggest knoppix
but if anyone has any idea how to install the files i listed in the previous post from me that would be great ... I really want to use these gdesklets so i can add components to my desktop!
|

30th December 2004, 06:23 AM
|
 |
Retired Community Manager
|
|
Join Date: Feb 2004
Location: Seattle, WA, USA
Age: 56
Posts: 3,423

|
|
Quote:
|
Originally Posted by mkyb14
you can't use apt with F3
|
You most certainly can! apt-rpm can be downloaded from several sources. Try http://freshrpms.net/apt
__________________
Linux User #28251 (April '93)
Professional Java Geek :cool:
|

30th December 2004, 09:09 AM
|
|
Registered User
|
|
Join Date: Oct 2004
Posts: 1,227

|
|
Quote:
|
Originally Posted by cwynn
You're saying?
they are daemon names wint the samba-server package inother words not files on the system
|
Those programs/services/daemons are indeed just files somewhere on your filesystem. The actual executable/program/application is "/usr/sbin/smbd", while the "startup script" is usually found in "/etc/rc.d/init.d" and has links pointing to it from the different "run-level" directories in "/etc/rc.d/rc#.d" (where # is the runlevel).
Quote:
My /usr/bin does have a "smbclient" and ten other smb****** files
|
Good, then samba is installed on your system.
Quote:
HOWEVER
I have no < smb > installed that I can find on my sytem.
As I ment to say in the beginning rpm reports that smbclient and smbcommon are both installed.
|
the samba server program is called "smbd" and is found in "/usr/sbin"
Quote:
To install smb using gnome's "Add/Remove Pacakge":
iwhen I check the box and then select update the system reports that I do not have "samba-common" requried by samba-client 3.0.10-1. This contradicts what rpm qa | grep "samba" output. This doesn't make sense to me does it to you
|
Doesn't make sense to me either, I just use "rpm -qa | grep somepackagehere" to see what's installed, or "yum install somepackagehere" to actually install things.
Quote:
edit: 18:42 CST
found samba-3.0.10-1.fc3.i386.rpm on the web and installed it. Now a smb is in my /etc/rc.d/init.d
|
Sounds like your problem is solved.
__________________
Only dead fish go with the flow....
Hmmm, what did I miss?
|

30th December 2004, 02:00 PM
|
 |
Registered User
|
|
Join Date: Apr 2004
Location: Warsaw, Poland
Age: 32
Posts: 1,085

|
|
Quote:
|
Originally Posted by mkyb14
you can't use apt with F3 ....
|
funny because I've been using APT since RHL7.2 and now on FC3 it works
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
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
|
|
|
Current GMT-time: 21:27 (Tuesday, 21-05-2013)
|
|
 |
 |
 |
 |
|
|