Search results

  1. crsd

    [pfSense] mpd5 on pfSense 2.0

    There's pptp_client example in /usr/local/etc/mpd5/mpd.conf.sample. Or you could just copy and fill required data (authname,password,peer) in the following config (it should be /usr/local/etc/mpd5/mpd.conf): startup: default: load pptpclient pptpclient: create bundle static B1...
  2. crsd

    libxul

    You could paste real error, not just ambiguous "Syntax Error: invalid syntax". Have you followed instructions in /usr/ports/UPDATING re: perl update?
  3. crsd

    FreeBSD 8: gdbm.h: No such file or directory

    You could try using vacation, which is in base.
  4. crsd

    FreeBSD 8.0 and VLAN's

    I just mean that you should check that the port you are connected to really has tagged vlan 1 on it before troubleshooting the FreeBSD side. :)
  5. crsd

    FreeBSD 8.0 and VLAN's

    May be vlan 1 is untagged on your switch? Try configuring the 10.100.1.1/22 network on em0 instead of vlan1.
  6. crsd

    Autocomplete in CSH

    set autolist = ambiguous set complete = enhance csh
  7. crsd

    Mailgraph Issue

    > pkg_info -Dx mailgraph ... Make sure this script should be invoked with privilege to read /var/log/maillog. For example, you may change the permission of maillog to be 644. Another way is to make maillog owned by the mail group, and put mailgraph_user in that group.
  8. crsd

    Sendmail crapped out

    Check /var/log/maillog.
  9. crsd

    Why did you choose to stay with FreeBSD?

    Mascot. Does anyone really need any other reason? :e
  10. crsd

    Kern.maxfiles

    The kern.maxfiles sysctl determines how many open files the system sup‐ ports. The default is typically a few thousand but you may need to bump this up to ten or twenty thousand if you are running databases or large descriptor‐heavy daemons. The read‐only kern.openfiles...
  11. crsd

    weird malloc & calloc behaviour (or i'm blind & stupid)

    Starting program: /usr/home/yuri/wtf/sd1.cgi Program received signal SIGSEGV, Segmentation fault. 0x0000000000400977 in main () at main.c:52 52 fprintf(stderr, "DEBUG1: %d\n", cgi_get->len); // cgi_get->len == 4 :-) And with env variables set: Program received signal SIGBUS...
  12. crsd

    Kern.maxfiles

    No clues in there, or I'm missing them.
  13. crsd

    Installing Firefox

    http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
  14. crsd

    Installing Firefox

    Please update your ports tree.
  15. crsd

    Kern.maxfiles

    Where is it documented? I'm asking because changing kern.maxfiles after boot seems to work: # sysctl kern.maxfiles kern.maxfiles: 8008 # sysctl kern.maxfiles=25000 kern.maxfiles: 8008 -> 25000 # sysctl kern.maxfiles kern.maxfiles: 25000
  16. crsd

    why sub processes not working in tcsh

    If it's not just an example, you could use: vim `grep -ril create .`
  17. crsd

    kernel module reading config file, design/code question

    You can set initial configuration via device.hints(9). And there are a lot of kernel modules reading sysctl's.
  18. crsd

    Proper way to make an INET6-less kernel?

    /sys/conf/NOTES on 8.0 still contains: # Note YOU MUST have both INET and INET6 defined. # you don't have to enable V6, but SCTP is # dual stacked and so far we have not teased apart # the V6 and V4.. since an association can span # both a V6 and V4 address at the SAME time :-) Haven't...
  19. crsd

    Proper way to make an INET6-less kernel?

    options SCTP depends on INET6, be sure to remove that as well.
  20. crsd

    C99: md5

    That one was from manpage :) : NAME MD5Init, MD5Update, MD5Pad, MD5Final, MD5End, MD5File, MD5FileChunk, MD5Data — calculate the RSA Data Security, Inc., ‘‘MD5’’ message digest LIBRARY Message Digest (MD4, MD5, etc.) Support Library (libmd, -lmd)
Back
Top