Search results

  1. M

    getty repeating too quickly

    I think you ran make delete-old-libs before installworld?
  2. M

    PHP 5.3.2 (was: php 5.3.0)

    Also, ports tree is in feature freeze, so major upgrades are out of the question. Unless 8.0 release is further delayed I wouldn't expect 5.3.0 until early october.
  3. M

    Linux vs. BSD = No real difference?

    Guess what, it's documented and largely enforced as per /etc/mtree/* and mtree.
  4. M

    Comand line torrent client

    The jail(8) manpage is one the better manpages of FreeBSD. Do everything it tells you to do in the EXAMPLES section, so you get a feel for the process.
  5. M

    Accidentally deleted all contents of /usr/port/sysutil using rm -rf

    That's not so bad. I call ubuntu MS Linux. (iow: can't we all get along? It really is a wrapper around the NDIS protocol, but the name was taken, hmm?)
  6. M

    FreeBSD 7.2 print/ghostscript8 installation fails

    One more thing: can you make print/ghostscript8 respect WITHOUT_CUPS, like every other port? I hacked it locally: Index: print/ghostscript8/Makefile =================================================================== RCS file: /home/ncvs/ports/print/ghostscript8/Makefile,v retrieving...
  7. M

    How-to Get Web Page Source ?

    This is easy with php + pcre and curl modules and can run from cron, as cli module, so you don't need it in apache. Apache can just SSI the file or you can write the output as json in the webroot, then use javascript to display the info. The only drawback, no matter what implementation you...
  8. M

    Network monitoring tool

    And adding net/bmon for per interface statistics capable of being saved to a database, flat html and rrdtool. Also, [file]sysutils/pftop[/port] view '8' is very useful for live monitoring of already existing queues, since the last time you reloaded the rules. Especially with borrows, it's good...
  9. M

    7.2-RELEASE: DTrace stability?

    Well, you need the pointers to see why this assertion fails: dtrace_copycheck(uintptr_t uaddr, uintptr_t kaddr, size_t size) { ASSERT(kaddr >= kernelbase && kaddr + size >= kaddr); Since size can't be negative, the second part is always true, unless size is so large that it causes a...
  10. M

    7.2-RELEASE: DTrace stability?

    Ack, horizontal scrolls.. Just weird that there's no symbols in there. Too many dtrace_assfail to even start guessing. I lack the last condition to try and reproduce it :P
  11. M

    7.2-RELEASE: DTrace stability?

    You'll get an edit function once you're all grown up ;) (search forum, I believe 10 posts or 10 days). I suppose you have deleted or not installed the .ko.symbols files? That would point to something more useful.
  12. M

    Upgrade a single port

    Updating parts of the ports tree will lead to hard to debug problems, as *_DEPENDS may reference new library versions, non existing ports, new files installed by a new version of a port not to mention changes in port infrastructure. You need to be very familiar with the ports system to be able...
  13. M

    7.2-RELEASE: DTrace stability?

    Can you get a backtrace?
  14. M

    Problem trying to use ezjail on new freebsd 7.2 install

    Any chance you got WITHOUT_NLS in /etc/make.conf?
  15. M

    how differnt are the bash shell commands gonna be

    BSD hacks, by Dru, the fabulous handbook and a linux to bsd primer.
  16. M

    Handling ports (recursively and obsolete)

    No, then you might as well run non-interactively. If you can't determine yourself what leaves you need, you shouldn't be uninstalling software in the first place.
  17. M

    Handling ports (recursively and obsolete)

    Don't believe the hype! FUD. This is the best way to do top-down package removal. As with most things in FreeBSD, you are allowed to do things detrimental to your system if there's a safe way to do it, because you're expected to know when it is. People thinking they know, shoot themself...
  18. M

    Get information of inode on FreeBSD

    And you're not using fts(3) because?
  19. M

    System halting

    You can test disk access, by running the following: #!/bin/sh me=$$ while(true); do date> /tmp/disktest.${me} sleep 60 done After halt and boot, cat the disktest file to view when it was last able to write. When you observe the halt you may want to keep on pinging at least for 60...
  20. M

    Rename FreeBSD Web Server

    Postfix comes with postconf -e, allowing to change setting by command line. Apache has no built-in support to change settings on the fly. Numerous applications have numerous different formats. You're trying to solve a problem that you can't solve. A much better idea would be to request devd...
Back
Top