Search results

  1. c00kie

    SFTP fails with packet loss

    OK, thanks for that Sir Dice. Nice introduction into peering also.
  2. c00kie

    SFTP fails with packet loss

    Will it resolve itself? Only I work from home and without the tunnel I kinda can't do my job at all.
  3. c00kie

    SFTP fails with packet loss

    Are my ISP able to track this faulty node?
  4. c00kie

    SFTP fails with packet loss

    Hi My SFTP file transfer tunnel suddenly stopped working from my home today: Command: open "user@222.333.444.56" 2222 Command: Pass: *************** Error: Authentication failed. Error: Critical error: Could not connect to server I'm in the UK with my ISP being Virgin media. I had...
  5. c00kie

    Shell tar: Option --transform is not supported

    #!/bin/sh # backup mysql databases shell script # Usage: /home/andy/scripts/./backup.sh DATE=$(date +%Y-%m-%d) MYSQL=$(which mysql) MYSQLDUMP=$(which mysqldump) MYSQL_USER="user" MYSQL_PASS="pass" HOSTNAME=$(hostname) GZIP=$(which gzip) ARG="-u $MYSQL_USER -p$MYSQL_PASS" DATABASES=$($MYSQL $ARG...
  6. c00kie

    Shell tar: Option --transform is not supported

    That's a shame, for me. It seems gtar is more feature rich? Is there something similar to --transform in tar ?
  7. c00kie

    Shell tar: Option --transform is not supported

    hi I'm dabbling with shell scripting a little and trying to get a backup script running on FreeBSD. #!/bin/csh NOW=$(date +"%Y-%m-%d-%H%M") FILE="example.com.$NOW.tar" BACKUP_DIR="/usr/home/andy/backups" WWW_DIR="/var/www/" DB_USER="user" DB_PASS="pass" DB_NAME="dbname"...
  8. c00kie

    Locating dependencies for Apache server

    I took this advice, re-extracted the ports tree, update and re-install Apache and, voila...works. I'm pretty sure I did this originally, strange :/.
  9. c00kie

    Locating dependencies for Apache server

    I just tried: pkg autoremove and cd /usr/ports/www/apache24/ && make clean
  10. c00kie

    Locating dependencies for Apache server

    Are you, or do you know of a command which can clean-up broken or fragmented partially installed ports?
  11. c00kie

    Locating dependencies for Apache server

    It sure is. I go in search of my dependencies: cd /usr/ports/devel/m4/ && make install clean # cd /usr/ports/misc/help2man/ && make install clean autoconf-2.69 depends on executable: autoconf-wrapper - not found cd /usr/ports/devel/autoconf-wrapper/ && make install clean cd...
  12. c00kie

    Locating dependencies for Apache server

    Erm...it seems this is undefined: ls -l /etc/ ... -rw-r--r-- 1 root wheel 566 Aug 12 11:27 mac.conf drwxr-xr-x 3 root wheel 512 Aug 17 09:58 mail -rw-r--r-- 1 root wheel 106 Aug 12 11:27 mail.rc -rw------- 1 root wheel 1838 Nov 22 04:17 master.passwd -rw-r--r-- 1 root wheel 937...
  13. c00kie

    Locating dependencies for Apache server

    Hang on, am I getting closer following: ']http://www.freshports.org/www/apache24/ and installing: libcrypto.so.8 : security/openssl autoconf-2.69 : devel/autoconf autoheader-2.69 : devel/autoconf autoreconf-2.69 : devel/autoconf aclocal-1.15 : devel/automake automake-1.15 : devel/automake...
  14. c00kie

    Locating dependencies for Apache server

    With an up-to-date ports tree running on FreeBSD 10.2-RELEASE cd /usr/ports/www/apache24/ && make install clean ===> apache24-2.4.18 depends on executable: autoconf-2.69 - not found ===> autoconf-2.69 depends on executable: gm4 - not found ===> autoconf-2.69 depends on executable: gm4 - not...
  15. c00kie

    pkg delete -a: Software remains

    Hi. After performing a pkg delete -a my webserver Apache with PHP is still up, i.e. working? pkg info pkg-1.6.1_2 Package manager If I delete all my packages should my webserver now be deleted also?
  16. c00kie

    SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz

    Wow, I just installed that software and ran the command you mention. It didn't complain about anything; so guess I'm good.
  17. c00kie

    SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz

    Was a temporary thing. It's now installed beautifully. Thanks.
  18. c00kie

    SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz

    Thanks @wblock@. So binaries and ports don't mix well. Is my system now affected by this or can I just carry on as normal?
  19. c00kie

    SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz

    Hmm, I tried that, it must have given me 50+ warnings: pkg: WARNING: locally installed php55-5.5.13 conflicts on /usr/local/lib/php/build/scan_makefile_in.awk with: - php5-5.4.29 pkg: WARNING: locally installed php55-5.5.13 conflicts on /usr/local/lib/php/build/shtool with: -...
  20. c00kie

    SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz

    Hi My ports tree is up-to-date rm -f /var/db/portsnap/tag && portsnap fetch extract I'm trying to install composer which has devel/pecl-intl as a dependency. Here's a snapshot from cd /usr/ports/devel/pecl-intl/ && make install clean => SHA256 Checksum mismatch for PECL/intl-3.0.0.tgz. ===>...
Back
Top