I entcountered a bug with virtualbox-ose-nox11-5.2.14_1
& virtualbox-ose-kmod
after upgrading to FreeBSD 11.2-RELEASE on first reboot.
The system would enter a boot loop with this crash error:
supdrvGipCreate: failed to allocate the GIP page
I entcountered a bug with virtualbox-ose-nox11-5.2.14_1
& virtualbox-ose-kmod
after upgrading to FreeBSD 11.2-RELEASE on first reboot.
The system would enter a boot loop with this crash error:
supdrvGipCreate: failed to allocate the GIP page
I'm running macOS 10.13.1 High Sierra.
- Q: Why can't I rename files in Finder? I receive an error code -8072.
an unexpected error has occurred error code -8072
- A: Did you run Disk Utility or Disk First Aid recently? Just reboot.
- Q: Why do I get an error about my Home folder moving or not having access to my Home folder?
- A: A: Did you run Disk Utility or Disk First Aid recently? Just reboot.
I updated pkg
on my freebsd jail 2017-05-25 and it said it needed to update to pkg-1.10.1
but pkg-devel-1.10.99.4
was installed. This completely fucked me and made pkg
inoperable.
The error:
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:11:amd64/quarterly, please wait...
Verifying signature with trusted certificate pkg.freebsd.org.2013102301... done
FreeNAS 9.10 is based on FreeBSD 10.3 and as such, supports the BSD hypervisor bhyve. There are different frontends for bhyve, one of them is iohyve which is included in FreeNAS 9.10. This document describes how to setup iohyve for operation on FreeNAS 9.10 and basic VM management tasks.
Iohyve is already installed in FreeNAS 9.10, so it only needs to be enabled. This is done by adding the following lines to /conf/base/etc/rc.conf
:
iohyve_enable="YES"
iohyve_flags="kmod=1 net=igb0 pool=storage-volume"
#!/bin/bash | |
# Thanks to https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7 | |
# Execute this script in your home directory. Lines 17 and 21 will prompt you for a y/n | |
# Install Oracle JDK 8 | |
add-apt-repository ppa:webupd8team/java | |
apt-get update | |
apt-get install -y oracle-java8-installer | |
apt-get install -y unzip make # NDK stuff |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
# Adapted from https://developers.yubico.com/ykneo-openpgp/ResetApplet.html | |
gpg-connect-agent <<EOF | |
/hex | |
scd serialno | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 81 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 | |
scd apdu 00 20 00 83 08 40 40 40 40 40 40 40 40 |
#!/bin/bash | |
### Google Domains provides an API to update a DNS "Syntheitc record". This script | |
### updates a record with the script-runner's public IP, as resolved using a DNS | |
### lookup. | |
### | |
### Google Dynamic DNS: https://support.google.com/domains/answer/6147083 | |
### Synthetic Records: https://support.google.com/domains/answer/6069273 | |
USERNAME="" |
--- | |
- name: Check status of jailing | |
shell: "sysctl security.jail.jailed | cut -d: -f2 | tr -d ' '" | |
register: is_jail | |
when: "ansible_os_family == 'FreeBSD' " | |
- name: Fetch and Install Updates | |
command: "{{ item }}" | |
when: "ansible_os_family == 'FreeBSD' and is_jail.stdout == '0'" |