Search results

  1. M

    rc.d shutdown script

    Thank you very much!
  2. M

    rc.d shutdown script

    Hello, I have successfully made an rc.d startup script for a VirtualBox virtual machine; however, when I reboot my host machine with shutdown -r now the virtual machine gets shutdown hard. Here is my /usr/local/etc/rc.d/freebsdvbox1 command: #!/bin/sh # Add the following line to /etc/rc.conf...
  3. M

    Compiling from Source - OpenSSH/OpenSSL

    You should install OpenSSH portable through the ports instead of compiling directly from source. cd /usr/ports/security/openssh-portable make install clean
  4. M

    php extension / portupgrade problem

    Hello, After running this command: portaudit -Fda I got this output: New database installed. Database created: Mon Jan 10 13:05:00 CST 2011 Affected package: php5-5.3.4 Type of problem: php -- multiple vulnerabilities. Reference...
  5. M

    Updating OpenSSL

    I just installed a fresh copy of FreeBSD 8.1 (amd64) onto a new server. I noticed that the OpenSSL version was 0.9.8n, and that the current version of OpenSSL is 1.0.0c. What is the proper way to upgrade to 1.0.0c? I tried installing the security/openssl port, but that simply installed another...
  6. M

    PHP 5.3.2 (was: php 5.3.0)

    PHP 5.3.2 has been released.
  7. M

    PHP 5.3.2 (was: php 5.3.0)

    Yes. My bad. fetch would be better. I'm just used to using wget.
  8. M

    PHP 5.3.2 (was: php 5.3.0)

    Save the file in your home directory. Example: wget http://www.alexdupre.com/php53.diff mv php53.diff ~/ cd /usr/ports patch -p0 -E < ~/php53.diff
  9. M

    PHP 5.3.2 (was: php 5.3.0)

    Success. I am now running PHP 5.3.1 with all the extensions (php5-extensions) working using ports. Thank you Alex Dupre. :beergrin
  10. M

    PHP 5.3.2 (was: php 5.3.0)

    This command didn't work: cd /usr/ports && patch -p0 -E ~/php53.diff I think it is missing a < character, because this worked: cd /usr/ports && patch -p0 -E < ~/php53.diff
  11. M

    cups-base broken on amd64?

    csup -L 2 -h cvsup10.FreeBSD.org /usr/share/examples/cvsup/ports-supfile
  12. M

    8.0 portupgrade -af: CONTINUE

    http://www.daemonology.net/blog/2009-07-11-freebsd-update-to-8.0-beta1.html The upgrade instructions say to follow these instructions when upgrading to 8.0. Part of the instructions say to do this: Step 7: Update ruby and delete portupgrade's package database (UPDATE 2009-09-08: this is not...
  13. M

    cups-base broken on amd64?

    I have this problem on FreeBSD 8.0 / amd64.
  14. M

    X11 Forwarding Tutorial

    From http://www.chiark.greenend.org.uk/~sgtatham/putty/faq.html A.3.3 What's the point of the Unix port? Unix has OpenSSH. All sorts of little things. pterm is directly useful to anyone who prefers PuTTY's terminal emulation to xterm's, which at least some people do. Unix Plink has...
  15. M

    PHP 5.3.2 (was: php 5.3.0)

    Mailing list discussion: http://freebsd.markmail.org/message/qgfakyk7honjle4h
  16. M

    PHP 5.3.2 (was: php 5.3.0)

    Be patient. PHP 5.3.0 has only been out for 4 months.
  17. M

    PHP 5.3.2 (was: php 5.3.0)

    I want to use 5.3's Late Static Binding feature ASAP so I can get rid of a ton of duplicated code. I also want to be able to use anonymous functions, which is a new feature in 5.3. And of course with 5.3 I will be able to namespace all my code. Since there is no port yet, for testing purposes...
Back
Top