Displaying 3 results from an estimated 3 matches for "winbind_clear".
2016 Apr 20
4
Ubuntu 14.04 samba update
...quot;
net ads join -U $admin osName="${OSNAME}" osVersion="${OSVERSION}"
Here is my script to leave the domain. I call it net_leave.sh
read admin
net ads leave -U $admin
Here is my script to clear the winbind cache with a change from samba to
smb when samba changed. I call it winbind_clear.sh
service winbind stop
service smbd stop
#service samba stop
net cache flush
rm -f /var/lib/samba/*.tdb
rm -f /var/lib/samba/group_mapping.ldb
sleep 1
#service samba start
service smbd start
service winbind start
Can anyone point me to why my setup has stopped working? Or maybe some
steps I can...
2016 Apr 20
0
Ubuntu 14.04 samba update
...quot;${OSNAME}" osVersion="${OSVERSION}"
>
> Here is my script to leave the domain. I call it net_leave.sh
>
> read admin
> net ads leave -U $admin
>
> Here is my script to clear the winbind cache with a change from samba to
> smb when samba changed. I call it winbind_clear.sh
>
> service winbind stop
> service smbd stop
> #service samba stop
> net cache flush
> rm -f /var/lib/samba/*.tdb
> rm -f /var/lib/samba/group_mapping.ldb
> sleep 1
> #service samba start
> service smbd start
> service winbind start
>
> Can anyone point me...
2016 Apr 20
1
Ubuntu 14.04 samba update
...quot;${OSVERSION}"
>>
>> Here is my script to leave the domain. I call it net_leave.sh
>>
>> read admin
>> net ads leave -U $admin
>>
>> Here is my script to clear the winbind cache with a change from samba to
>> smb when samba changed. I call it winbind_clear.sh
>>
>> service winbind stop
>> service smbd stop
>> #service samba stop
>> net cache flush
>> rm -f /var/lib/samba/*.tdb
>> rm -f /var/lib/samba/group_mapping.ldb
>> sleep 1
>> #service samba start
>> service smbd start
>> service...