Link to home
Start Free TrialLog in
Avatar of walkerdba
walkerdba

asked on

equivalent

apt-get install winbind

What is equivalent for the above for rhel linux..

please help?

This is nothing to get windows machine connection through linux machine
ie to ping...
Avatar of Mazdajai
Mazdajai
Flag of United States of America image

In rhel it is
yum install winbind

Open in new window

Avatar of walkerdba
walkerdba

ASKER

[root@mac ~]# yum install winbind
Loading "installonlyn" plugin
Loading "security" plugin
Loading "rhnplugin" plugin
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
Setting up repositories
No Repositories Available to Set Up
Reading repository metadata in from local files
Parsing package install arguments
Setting up repositories
No Repositories Available to Set Up
Reading repository metadata in from local files
No Match for argument: winbind
Nothing to do
[root@mac ~]#
ASKER CERTIFIED SOLUTION
Avatar of walkerdba
walkerdba

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
try

yum install samba-winbind
remember mine is rhel

[root@mac ~]# yum install samba-winbind
Loading "installonlyn" plugin
Loading "security" plugin
Loading "rhnplugin" plugin
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
Setting up repositories
No Repositories Available to Set Up
Reading repository metadata in from local files
Parsing package install arguments
Setting up repositories
No Repositories Available to Set Up
Reading repository metadata in from local files
No Match for argument: samba-winbind
Nothing to do
[root@mac ~]# 

Open in new window

You will need to register your system with Redhat.

up2date --register

For text-only mode:
up2date-nox --register

To Re-register:
rhnreg_ks --username=<RHN or Satellite login> --password<RHN or Satellite password> --force


Or you can add/enable the yum repo manually in /etc/yum.repos.d/rhel-beta.repo
when you have it registered...

try searching for it if you dont know the full package name.
yum search winbind

Then install the package that best matches your requirement, if it's not listed then try the `whatprovides` query eg/ yum whatprovides "*/*winbind*"

yum install <package>
yes