Displaying 14 results from an estimated 14 matches for "cap_mkdb".
2008 Sep 13
3
Freebsd auto locking users
...bsd it seems that i need to use login.conf file. Here I made
necessary changes in that file:
>>>>>>
default:\
.............
.............
............. :login-retries=1:\
:passwordtime=90d:\
:warnpassword=7d:\
:warnexpire=7d:\
>>>>>>>
Then I made the cap_mkdb /etc/login.conf , and everything went normal,
no error messages, but after adding a test user I see no changes in the
master.passwd file.
The fields which are reserved for password aging parameters are 0:0
test:$1$F9yf.PuK$xqIsGEgK3MexpPZ4UBav0.:1001:1001::0:0:User
&:/home/test:/bin/sh
And...
2003 Apr 22
1
make installworld Error code 64
...ost to this list so please be gentle : )
I followed
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
But when I get to "21.4.9 Install the New System Binaries" This happens:
root@smeagol /usr/src # make installworld
mkdir -p /tmp/install.16560
for prog in [ awk cap_mkdb cat chflags chmod chown date echo egrep find
grep ln make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh sysctl test
true uname wc zic; do cp `which $prog` /tmp/install.16560; done
usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] src target
cp [-R [-H | -L | -P]] [-f | -i | -n] [-p...
2010 Nov 18
1
Can I set the locale for the file system?
I want the filenames are stored in utf8, can it be done?
and for non unicode programs would be locale such as in my case win1251
2015 Jan 26
0
imap-login: Fatal: pipe() failed: Too many open files
...may
> need to do something similiar to this:
>
> dovecot:\
> :openfiles-cur=512:\
> :openfiles-max=2048:\
> :tc=daemon:
>
> Rebuild the login.conf.db file if necessary:
>
> # [ -f /etc/login.conf.db ] && cap_mkdb /etc/login.conf
>
> Hope this helps.
>
Thanks for the hint. FreeBSD takes sysctl(8) settings as a base to
ulimit(3). I even tried tuning on those values.
sysctl kern.maxfilesperproc=405587
sysctl kern.maxfiles=428433
Unfortunately this does not solve the problem. I don't think it is...
2011 Nov 01
0
[LLVMdev] RFC: Upcoming Build System Changes
Óscar Fuentes <ofv at wanadoo.es> writes:
>> Chris is absolutely on-target as to why the current build is slow. It's
>> slow because recursive make hides the parallelism. It hides the
>> parallelism because it hides the dependencies. There is no way to get
>> around that problem with a recursive make build system.
>
> You keep repeating that and I say
2012 Jun 08
13
Default password hash
We still have MD5 as our default password hash, even though known-hash
attacks against MD5 are relatively easy these days. We've supported
SHA256 and SHA512 for many years now, so how about making SHA512 the
default instead of MD5, like on most Linux distributions?
Index: etc/login.conf
===================================================================
--- etc/login.conf (revision
2002 Aug 05
0
FreeBSD Security Advisory FreeBSD-SA-02:35.ffs
...ily accomplished by modifying
/etc/login.conf so that the appropriate login classes (typically
`default') contain a field entry such as the following:
:filesize=63m:\
After editing /etc/login.conf, the corresponding capability database
must be rebuilt with the following command:
# cap_mkdb /etc/login.conf
Please see login.conf(5) for details. Note that this will not affect
currently running processes, nor new processes started by users who
are already logged in.
The corresponding limit appropriate for filesystems with 32k or larger
blocks is not known at this time, and might be sm...
2015 Jan 26
3
imap-login: Fatal: pipe() failed: Too many open files
Am 26.01.2015 um 02:13 schrieb Leander Sch?fer:
> I just checked my ulimit again and it really seems like it has more
> than enough - so I still don't understand what I've configured wrong
> here ;/
>
> root at WM-01 [~]$ su -m dovecot -c "ulimit -a"
> socket buffer size (bytes, -b) unlimited
> core file size (blocks, -c) unlimited
> data
2011 Nov 01
4
[LLVMdev] RFC: Upcoming Build System Changes
greened at obbligato.org (David A. Greene) writes:
> Joachim Durchholz <jo at durchholz.org> writes:
>
>> On the reasons why make-based builds are slow, Peter Miller has some
>> insight to offer:
>> http://miller.emu.id.au/pmiller/books/rmch/ .
>> I'm not sure how widely recognized that paper is. Maybe it's widely
>> known and today's build
2005 Jan 07
0
Missing functionality in Blowfish for crypt(3)
...e than normal users. If root changes a user's password, the password will be encrypted with a higher cost than if the user changed it themselves. This doesn't seem to be all that bad.
To support this patch, /etc/login.conf must include an entry of the form ":ln_rounds=10:" and cap_mkdb must be run on /etc/login.conf to apply the change. This is slightly different than the way this feature is turned on in OpenBSD.
The patch can be applied by:
cd /usr/src
patch < /path/to/libcrypt.patch
I have submitted a change request/PR for this so that it can be considered for commitm...
2003 May 16
2
make installworld fails : touch not found ?
...and try to make installworld, I always got " touch: not found " error.
Does anyone encounter this situation ? I have no idea about that. :-(
Here is error message :
---------[make installworld ]-----------------------------------------------
mkdir -p /tmp/install.466
for prog in [ awk cap_mkdb cat chflags chmod chown date echo egrep find
grep l
n make makewhatis mkdir mtree mv perl pwd_mkdb rm sed sh sysctl test true
uname
wc zic; do cp `which $prog` /tmp/install.466; done
cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i386 MACHINE=i386
OBJFORM
AT_PATH=/usr/obj/usr/src/i386/...
2008 Apr 07
10
setting environment variables
Hi all,
I''m running Puppet on FreeBSD and recently I started building my own
packages. I would like to set the PKGROOT variable on all hosts so
that packages are fetched from my server instead of freebsd.org. Is
it possible to set this with puppet?
I''ve read the suggestion on Trac [1], and it solves the problem when
puppet is run with an rc script, but it won''t work
2015 Jan 26
1
imap-login: Fatal: pipe() failed: Too many open files
...liar to this:
>>
>> dovecot:\
>> :openfiles-cur=512:\
>> :openfiles-max=2048:\
>> :tc=daemon:
>>
>> Rebuild the login.conf.db file if necessary:
>>
>> # [ -f /etc/login.conf.db ] && cap_mkdb /etc/login.conf
>>
>> Hope this helps.
>>
> Thanks for the hint. FreeBSD takes sysctl(8) settings as a base to
> ulimit(3). I even tried tuning on those values.
>
> sysctl kern.maxfilesperproc=405587
> sysctl kern.maxfiles=428433
>
> Unfortunately this does n...
2015 Jan 26
4
imap-login: Fatal: pipe() failed: Too many open files
Hi
I keep on getting errors and can't connect/login to Dovecot. I did my
research but unfortunately without success. It is for sure not ulimit
because ulimit is set to unlimited per default already. Still , it
complains about "Too many open files" but this is a test system and the
service dovecot and postfix have just been started. No one except me is
testing on this system.