State as of 2017-11-08.
You can also check a guide to upgrade CUDA on a [PC with with GTX 980 Ti and Ubuntu 16.04](https://gist.github.com/bzamecnik/61b293a3891e166797491f38d579d060.
- NVIDIA driver 384.81
[Desktop Entry] | |
Type=Application | |
Version=1.2 | |
Name=Cloudflare Connect | |
Comment=Connect to the Zero Trust Tunnel | |
Exec=warp-cli connect | |
StartupNotify=false | |
Keywords=warp connect cloudflare vpn | |
Icon=zero-trust-connected | |
Terminal=false |
State as of 2017-11-08.
You can also check a guide to upgrade CUDA on a [PC with with GTX 980 Ti and Ubuntu 16.04](https://gist.github.com/bzamecnik/61b293a3891e166797491f38d579d060.
#!/bin/bash | |
cat > /usr/local/etc/pf-nat.conf << EOF | |
nat on en0 from vnic1:network to any -> (en0) | |
EOF | |
sudo pfctl -d | |
sudo sysctl -w net.inet.ip.forwarding=1 | |
sudo pfctl -f /usr/local/etc/pf-nat.conf -e |
# Command line for libvirt | |
<qemu:commandline> | |
<qemu:arg value='-drive'/> | |
<qemu:arg value='file=/var/lib/libvirt/centos.img,format=raw,if=none,id=drive-nvme-disk0'/> | |
<qemu:arg value='-device'/> | |
<qemu:arg value='nvme,id=drive-nvme-disk0,serial=serial0'/> | |
</qemu:commandline> | |
# IO tune | |
<disk type='file' device='disk'> |
#!/bin/sh | |
# Make a certificate/private key pair using a locally generated | |
# root certificate. | |
OPENVPN_KEYS=$EASY_RSA/keys | |
IPADDR=$(ifconfig eth0 | grep 'inet addr:'| cut -d: -f2 | awk '{print $1}') | |
export EASY_RSA="${EASY_RSA:-.}" | |
#"$EASY_RSA/pkitool" --interact $* | |
"$EASY_RSA/pkitool" $* |