Search results

  1. ikbendeman

    Loopback adapter questions.

    lo
  2. ikbendeman

    Solved Will wireless devices emit radiation in full power when no driver?

    Totally normal behavior... depending on who's trying to listen in.
  3. ikbendeman

    ena interface down and up repeatedly

    Isn't ena0 10GB ethernet? If I remember correctly, likely depricated, but low throughput mode on ethernet adapters would drop them down to 10M.
  4. ikbendeman

    ena interface down and up repeatedly

    He probably doesn't want to disable high throughput. It looks like the driver issue was causing DHCP to retry every 30 minutes even though one instance already recieved an ACK from the DHCP server. Did patching fix?
  5. ikbendeman

    Solved mouse cursor in the middle of the screen

    sysmouse ums /boot/loader.conf (maybe) module_blacklist="ums" But you're probably best using sysctl -a | grep ums and using the info you see to create a matching rule to block the device using devd configuration files.
  6. ikbendeman

    Solved mouse cursor in the middle of the screen

    Add moused_enable="NO" and check your devd.conf. Are there any pointing devices under /dev/? I would suspect there is one, for some reason.
  7. ikbendeman

    Solved mouse cursor in the middle of the screen

    aragats Newer versions of FreeBSD don't require moused. When I enabled it on my 11-STABLE it caused problems for me, as well. If you've ever used Linux or Unix, that's how X responds to the lack of a pointing device. If aragats solution doesn't work, it may be your Xorg.conf, which also...
  8. ikbendeman

    Solved Managing remote windows server 2012 with FreeBSD

    Yes, it depends on how you want to remote manage. There are plenty of RDP applications available in the tree. You could install an ssh server on the windows machine, as well. I believe I've done that on desktops in the past. Some people just use virtual machines to use RSAT. You can have a...
  9. ikbendeman

    ZFS Simple backup using rsync

    I was thinking there was an inverse of "sharenfs." Your solution is far better anyways.
  10. ikbendeman

    bhyve vm cannot access internet

    Add the lines from above; replace igb0 with wlan0. If you're using wlan0 you could also add an apbridge device. Setting the devices on monitor mode will help. You're going to have to read the ifconfig page and bhyve, for starters.
  11. ikbendeman

    bhyve vm cannot access internet

    Do you have the sysctl variables set? vmm.ko loaded? Any indications from dmesg? Everything set properly in rc.conf? Have you read the man pages? Wifi bridges can cause certain problems within VM's. It's been a recurring theme among many different virtualization technologies that, supposedly...
  12. ikbendeman

    C Low level str to uppercase?

    Use: ASCII Table Then a do <add or subtract> while <within bounds of A-Z or a-z> {Subtract/Add} It's up to you how you'd want to parse it but you could use an array and do the usual, as well as do the operation during the parsing loop.
  13. ikbendeman

    ZFS Simple backup using rsync

    Isn't it also possible to do an NFS mount inside of a ZFS filesystem (i.e. import, not the export function), and set that to be the default location for snapshots? Then you'd just have to specify, first, a full snapshot, then incrementals from that point on? I've not had to do that but I believe...
  14. ikbendeman

    bhyve vm cannot access internet

    From Serverfault : 4 down vote You likely need to do: ifconfig tap0 up and/or add net.link.tap.up_on_open=1 to /etc/sysctl.conf to make it auto-up. Normally, the tap interface doesn't come up until you give it an IP. This should make the bridge work. To configure the bridge in rc.conf...
  15. ikbendeman

    bhyve vm cannot access internet

    Why are you using dhcp in bHyve? Is that a necessity for you for some reason? You'll probably have to run a DHCP server on that tap0, from host that is, if you must have it. Otherwise, make sure you don't have pf, ipfw, or some other hinderance on the passing of packets. I think the tap method...
  16. ikbendeman

    bhyve vm cannot access internet

    Not necessarily the person to help you here but can you post your netstat -r for host and guest? (Never setup bHyve, myself)
  17. ikbendeman

    ZFS Simple backup using rsync

    Isn't there an incremental option for send?
  18. ikbendeman

    Solved Cannot buildworld on machine with 256MB memory

    Did it not work when you tried to pass KERNCONF from commandline? Either way, glad it worked out.
  19. ikbendeman

    C How to suspend and wake up the computer in C/C++

    You could do that with auto-throttling using sysctl variables. You could also use cron and cron from a gateway or router as well with magic packets but that still doesn't really give the OP what he was looking for. I'm sure scouring powerd's source could be beneficial for him, though.
  20. ikbendeman

    C How to suspend and wake up the computer in C/C++

    It would depend on the state you suspend to how you go about doing it. Probably have better luck getting this answered via the development mailing lists.
Back
Top