Search results

  1. P

    GitLab

    This is not an ideal but working Gitlab port: https://redports.org/browser/fidaj/devel/gitlab Please use: svn co https://svn.redports.org/fidaj/devel/gitlab
  2. P

    ProFTPD crashes with "Alarm clock!"

    Meybe this helps: http://bugs.proftpd.org/show_bug.cgi?id=3815
  3. P

    How can I make ZFS notify me when a disk fails?

    in FreeBSD 10 it is possible to expect the special daemon for ZFS fault: http://svnweb.freebsd.org/base?view=revision&revision=222836
  4. P

    How to clear the swap?

    It will work if you have free memory: swapoff -a && swapon -a
  5. P

    php 5.3.2 & 5.2.13 no longer support Zend Optimizer from FreeBSD ports??

    Looks like eaccelerator is a potentially dead project. Will be great, if in the appendices using in the work of Zend Optimizer (or hosting company) you will demand (even if now it actually isn't necessary for you) IonCube support. At least this team finds also resources, desire and motivation...
  6. P

    Determining the version of FreeBSD

    Try to obtain from sysctl: % sysctl -n kern.osrelease kern.ostype
  7. P

    ipfw doesn't count using pen+jails

    Why you don't want to use jail in ipfw? ipfw -q add count tcp from me to any jail 1
  8. P

    SFTP and umask. Where can I find pam_umask for FreeBSD?

    other way via /etc/sshd/sshd_config: Subsystem sftp "umask 0002; /usr/libexec/sftp-server"
  9. P

    tail memory usage

    Yea! As I see http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/tail/read.c?rev=1.16.2.1;content-type=text%2Fplain while ((ch = getc(fp)) != EOF) { ... if ((sp = realloc(sp, blen += 1024)) == NULL) ... if ((llines[recno].l = realloc(llines[recno].l, ..... if (ferror(fp)) { ierr(fn)...
  10. P

    tail memory usage

    Hi It is true that the tail utilites stored all processed information in memory? For example, I do not really understand why tail /dev/zero eats my memory. I understand that the "tail /dev/zero" - silly and infinity, this is an example.
  11. P

    Broadcom Wi-fi 4313 not fully support?

    Hi. The manual page of bwi drivers describes itself as: Broadcom BCM43xx IEEE 802.11b/g wireless network driver. At the moment, i have Asus EEE PC 1215N model with BCM4313 802.11b/g/n Wireless LAN Controller and it is not recognized (FreeBSD 9.0-beta1 i386). I just have not supported the model...
  12. P

    kqueue/kevent determine filename from file description

    Yea. But where can I get a filename that I can put in udata when i watching directory? FILE *fp = fopen("/tmp", "r"); ... EV_SET(&_kev, (*fp)._file, EVFILT_VNODE, EV_ADD | EV_ENABLE | EV_CLEAR | EV_ONESHOT, NOTE_DELETE | NOTE_WRITE | NOTE_EXTEND | NOTE_ATTRIB...
  13. P

    kqueue/kevent determine filename from file description

    Hi I want to watch directory for modification by kqueue mechanism. Simple code: #include <dirent.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> /* for strerror () */ #include <unistd.h> #include <sys/event.h> #include <sys/types.h> #include <dirent.h>...
  14. P

    bhyve mailinglist

    someone understood what was meant by what is the product can do without these drivers?
  15. P

    Problem with latest nvidia driver (270.41.19) for amd64

    Hi. May be i wrote to the wrong place, so i apologize if so. After upgrade to version 270.41.19 of x11/nvidia-driver i see problems on FreeBSD 9-amd64 - when everything freezes - the mouse and graphical output. Keyboard (for example cltr + alt + f {1-8}) does not work too. However - machine...
  16. P

    yet another Linux-only WM?

    On the creation FreeBSD DE - C/C++ (gtk/QT) developers not is mandatory can be required now. Look around at tendency of WEB OS. There can be now suitable time to write FreeBSD DE, but it will be HTML5-based? HTML5+JS - it is first of all standards, which may not affect for some view of...
  17. P

    Nginx company

    Unfortunately Rambler.RU company where Igor is working began the process of migrating servers from FreeBSD to Linux. The same thing is now doing Yandex.ru ;( Reasons as I understand it - lack of virtualization (and good work in virtualized environments) and a more lower perfomance (information...
  18. P

    Bring Process to foreground of another terminal

    You can snoop control via watch -W /dev/pts/<NUM>
  19. P

    Apply patch to port files?

    Good stuff for start: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/port-upgrading.html http://www.freebsd.org/cgi/query-pr-summary.cgi BTW, for pecl-APC you're a little late, patch already commited by other PR...
Back
Top