Search results

  1. J

    Solved ntpd and some ports not starting after upgrade to 11.1

    OK I think it got my problem fixed. All of this happend because of security.bsd.stack_guard_page=512. ntpd and other applications are starting and running smoothly now. Thank you all for comments!
  2. J

    Solved ntpd and some ports not starting after upgrade to 11.1

    I checked out the source via svn and did the usual procedure described in the handbook (buildworld, buildkernel, ...). As far as I remember, there were no errors or other unusual behaviour during this procedure. This is unmodified GENERIC. Yesterday, I did the whole procedure again, this time...
  3. J

    Solved ntpd and some ports not starting after upgrade to 11.1

    Hi, after upgrading from 11.0 to 11.1, ntpd fails to start at boot: ntpd [447]: start_blocking_thread: pthread_create() -> Resource temporarily unavailable chrome fails to start with "Illegal instruction" vlc fails to start with "core playlist error: cannot spawn playlist thread" I ran...
  4. J

    My ordeal with FreeBSD...

    Maybe this can help (not tested): http://blog.cochard.me/2012/10/using-bcm4313-wireless-chip-under.html
  5. J

    Solved Sendmail masquerading with yahoo

    Well, that does explain why it's not working. Thank you!
  6. J

    Solved Sendmail masquerading with yahoo

    Hi. I do have a mail account at yahoo (foobar@yahoo.com). I do want to send mail as me@mycompany.com. I'm using mutt & sendmail and configured them to send/masquerade as mycompany.com. I can send email this way but it still is delivered as foobar@yahoo.com. Below some config files...
  7. J

    What would you like to see in FreeBSD

    I would love to see header lines in output of some commands, describing what the column stands for. Good examples are: ps netstat -i w but is missing here, for example: who ipfw show
  8. J

    Help identify my network adapter

    Maybe you can get your card working following this blogpost: http://blog.cochard.me/2012/10/using-bcm4313-wireless-chip-under.html
  9. J

    Solved Mistake in Handbook? (Configuring NAT)

    kpa: Thank you for the clarification.
  10. J

    Solved Mistake in Handbook? (Configuring NAT)

    In section 30.4.4 (Configuring NAT) there is a ruleset for inbound/outbound NAT. Below that, a scenario is drawn: #!/bin/sh ipfw -q -f flush cmd="ipfw -q add" skip="skipto 500" pif=dc0 ks="keep-state" good_tcpo="22,25,37,53,80,443,110" $cmd 005 allow all from any to any via xl0 # exclude LAN...
  11. J

    Remove user password (to prevent ssh login using password).

    Why not just use pw lock name pw unlock name Very easy to remember.
  12. J

    Lock user in home directory

    DENOxCOOL: I´m also not sure what you want but you can try to achieve that with OpenSSH. Here is a simple example how to do it: First, you edit the configuration file of sshd(8): Subsystem sftp internal-sftp Match group sftpusers ChrootDirectory %h ForceCommand...
  13. J

    torrents.freebsd.org

    +1 :beer
  14. J

    How many mount points?

    mount | wc -l would be correct :P
  15. J

    sudo

    If you are the only one on your system, there is no need to install it. But if there are other users besides you and you want to give them some amount of privileges (don´t use the ALL configuration flag), sudo is the way to go.
  16. J

    Useful scripts

    When it comes to programming/scripting I´m a pretty newbie. But I try ;) Here is a script that I´m using occasionally: #!/bin/sh -e # mfetch - a wrapper to fetch(1) # it mimics wget --input-file behaviour # argument $1: inputlist # optional argument $2: directory unset PATH # Handling...
  17. J

    Is there a way to know my JID?

    According to jexec(8) you can use the jid or the name to execute commands. But this does not work for me if I use the name. No problem when I use the jid. I´m using ezjail to create/manage my jails. # jls JID IP Address Hostname Path 1 10.0.0.82...
  18. J

    Jail boot order

    Hi olav, when using ezjail, look in the files located in /usr/local/etc/ezjail. If you are familiar with the startup order of rc.d scripts, you know what to do. ;)
  19. J

    what is the command to configure pam?

    LOL, good one! :e
  20. J

    Sysinstall not installing packages?

    Hi geoB, don´t use sysinstall(8). It´s deprecated. If you want to install a package use pkg_add -r packagename. If you want to install it from the portstree, first fetch and extract a current portstree with portsnap(8)portsnap fetch extract and go to the directory where the port live...
Back
Top