Search results

  1. Business_Woman

    network problem under FreeBSD13.1

    You probably need to build a driver for the nic. Find out what chipset the pi is using, and check for the corresponding module in /usr/src/sys/<arch>/conf/GENERIC or whatever kernel you are running
  2. Business_Woman

    Solved Check hashes on base system files

    You could also use mtree for this.
  3. Business_Woman

    Shell Accessing socat stdin/stdout from script

    Hi, I am looking for a way to access stdin/stdout of the processes that socat forks, from a script, as i need to pass input and read the output from within a running script. I found a solution for netcat, called coproc in bash, but the same solution will not work for socat as the file...
  4. Business_Woman

    Perl Net::SSH2 read call never returns

    Hi, Yes i am aware that any error handling is missing at this point. However the first iteration runs successfully. if ($line =~m/\ADevice ID:\s(.*)/){ $deviceid = "$1" if defined $1; print "$deviceid\n"; }
  5. Business_Woman

    Perl Net::SSH2 read call never returns

    Hi, I am trying to scrape the output from 'show cdp neighbor interface <interface> det' for a list of ports, in Perl. For some reason the read call never returns, causing everything to halt after the first entry in the list has been processed. The device i am trying to scrape has paging...
  6. Business_Woman

    Features in FreeBSD 12

    And here we are almost 9 years later.
  7. Business_Woman

    C Authenticating against master.passwd

    Hi, I'm trying to write a simple authentication plugin for use with openvpn. The idea is to authenticate users again master.passwd. For some reason the hashed password in master.passwd doesn't match the one supplied by the user (same clear text password and hashing algorithm in both cases)...
  8. Business_Woman

    Postfix a way to limit the frequency of brute force?

    You might want to consider fail2ban for this.
  9. Business_Woman

    Choosing a USB WiFi Dongle

    Dongle....
  10. Business_Woman

    Xorg intel HD4000 problems

    Hi, I have a laptop equipped with the Intel HD4000, and I'm trying to get Xorg running with the Intel driver, without any luck. Currently Xorg refuses to use anything other than VESA, and i am not sure why. If i try to comment out the VESA driver in Xorg.conf i just get the "No screens found"...
  11. Business_Woman

    imapd + Postgresql backend

    Hi, I am trying to set up Cyrus Imap to use PostgreSQL as a backend for looking up usernames and passwords, but so far i haven't had much luck. in /usr/local/lib/sasl2/smtpd.conf i have the following: pwcheck_method: auxprop auxprop_plugin: sql mech_list: PLAIN sql_verbose: yes sql_engine...
  12. Business_Woman

    Solved [Solved] how to shutdown the system in C code

    Re: how to shutdown the system in C code LOL, @285 die_you_gravy_sucking_pig_dog(); :e
  13. Business_Woman

    Intel em problems

    Nope, no firewall
  14. Business_Woman

    error=USB_ERR_TIMEOUT

    hw.usb.xhci.xhci_port_route=-1 Put that into /boot/loader.conf and see if it helps.
  15. Business_Woman

    Intel em problems

    Hi, I have a HP elitebook with an Intel I218-LM based card, using the em driver. The interface is exhibiting some strange behavior. After a while the interface seemingly stops responding, but a ping and a tcpdump shows something different. $ ping 192.36.125.18 PING 192.36.125.18...
  16. Business_Woman

    switching to slim, .profile not read

    No, i still don't know why this happens
  17. Business_Woman

    switching to slim, .profile not read

    Hi, After switching to slim from XDM I noticed my PATH wasn't set correctly. It looks like slim won't read my .profile. After disabling slim at startup, my .profile is again read at startup. Is there a good reason for this?
  18. Business_Woman

    shell redirection question

    Yes, I am sure. I tried both stdout and stderr.
  19. Business_Woman

    shell redirection question

    Hi, I ran in to the following scenario. I suspended a job, just to have it run silently in the background. [1] + suspended sudo make distclean But when issuing bg >&- it's still spewing text all over my stdout. Why?
Back
Top