Displaying 10 results from an estimated 10 matches for "4ever".
Did you mean:
never
2007 Jan 29
3
Problem runing Samba 3.0.23d with LDAP on FreeBSD 6.2 sparc64
...contains 0 supplementary groups
[2007/01/29 10:17:26, 5] lib/smbldap.c:smbldap_search_ext(1179)
smbldap_search_ext: base => [ou=internal,o=centile,dc=com], filter =>
[(&(uid=administrator)(objectclass=sambaSamAccount))], scope => [2]
---
--
Guillaume
E-mail: silencer_<at>_free-4ever_<dot>_net
Blog: http://guillaume.free-4ever.net
----
Site: http://www.free-4ever.net
2006 Jul 24
1
One Windows computer not connecting directly to server
We have a RedHat samba server to which a whole department of Windows
connects directly when a user logs onto the Windows computer. So the
server is working fine.
We have a rebuilt Windows XP Pro computer that does not make the
connection directly. The user has to log into the server through the
Network Neighborhood. The Windows XP Pro has the correct ip address
and network name. The
2007 Jan 29
0
Samba/LDAP PDC problem
...ntains 0 supplementary groups
[2007/01/29 10:17:26, 5] lib/smbldap.c:smbldap_search_ext(1179)
smbldap_search_ext: base => [ou=internal,o=centile,dc=com], filter =>
[(&(uid=administrator)(objectclass=sambaSamAccount))], scope => [2]
---
--
Guillaume
E-mail: silencer_<at>_free-4ever_<dot>_net
Blog: http://guillaume.free-4ever.net
----
Site: http://www.free-4ever.net
2006 Sep 18
7
smb.conf
Hi all
My client want a shared folder so that only two people can access and
write to it.
I added the following to my smb.conf
[private]
writeble = yes
guest ok = no
path = /home/samba/private
valid users = wendy, pierre
write list = wendy, pierre
force user = nobody
All i need yo do now is make the folder "private" to nobody. How would i
go on by doing that and would this work.
2006 Oct 09
1
SAMBA + LDAP + TLS
Hi there guys, do not know if post this here or in openldap list, sorry if I
disturb you.
I configured samba+ldap as a PDC and byt now it's working fine, so, I
decided to put some security to the stuff.
The problem is that I coudl not make it work, here I what I've done.
This is what netstat shows.
tcp 0 0 0.0.0.0:389 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:636 0.0.0.0:* LISTEN
tcp 0 0
2006 Aug 02
2
PDC problem
Hello,
I have a problem with a LDAP backed based Samba PDC.
Last week, due an hardware problem, I lost my primary LDAP server
and PDC. I reinstalled the LDAP server and populated it with the old
data, I also reinstalled Samba.
The problem is that I can't log in to samba as root
(cn=root,dc=info,dc=uvt,dc=ro). All others user accounts ar working
except root.
Eg.:
2007 Apr 18
1
[Bridge] why ./brctl showmacs br0 display nothing?
hi:
my box use eth0 connect my pc. but I type command "./brctl showmacs br0", no mac addr display and the" brctl showmacs program" not exit,always exec
# ./brctl show
bridge name bridge id STP enabled interfaces
br0 8000.000123456789 no eth0
hdlc0
# ./brctl showmacs br0
2003 Sep 12
2
Prebinding for DragonFly/FreeBSD-4
I created patch for DragonFly/FreeBSD-4 for prebinding, based on
mdodd@'s patch for FreeBSD-5.
The main difference (apart from the target platform) is that the linker
needn't be patched. Rtld now uses a hash function to get an unique ID
for every ELF object.
This has been tested under DragonFly, but should run on FreeBSD-4 too.
Feedback appreciated :)
cheers
simon
--
/"\
2003 Mar 31
5
rfc3514 - Security Flag in the IPv4 Header
Any chance of this being implemented in fbsd? Could be usefull ;-)
ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt
--
:{ andyf@speednet.com.au
Andy Farkas
System Administrator
Speednet Communications
http://www.speednet.com.au/
2012 May 12
12
before_save messing up
#user.rb ------> Model
class User < ActiveRecord::Base
attr_accessible :email, :name, :password, :password_confirmation
has_secure_password
before_save :create_remember_token
.
.
.
.
.
.
.
private
def create_remember_token
self.remember_token = SecureRandom.urlsafe_base64
end
end
#sessions_controller.rb ------->