cd /etc/udev/rules.d
sudo wget https://raw.githubusercontent.com/Yubico/libu2f-host/master/70-u2f.rules
sudo udevadm control --reload
You can trigger and test this in Chrome by launching the browser with flag --user-data-dir
pointing at a smaller volume, e.g. sudo mount -t tmpfs -o size=1G tmpfs /mnt/mytmpfs
Consider a case where you have multiple features that all depending on each-other going into master at different times. Feature-C depends on Feature-B, and Feature-B depends on Feature-A and so on...
If we squash merge Feature-A into master we first have to resolve our base in Feature-B before it can be merged. Below is an example of resolving it after Feature-A has been merged into master (make sure master is up-to-date).
git fetch --all
Nginx tests only the request’s header field Host
to determine which server the request should be routed to.
If its value does not match any server name, or the request does not contain this header field at all,
then nginx will route the request to the default server, the first server block if no default is specified,
or determine the default alphabetical order.
TLS does not provide a mechanism for a client to tell a server the name of the server it is contacting. It may be desirable for clients to provide this information to facilitate secure connections to servers that host multiple 'virtual' servers at a single underlying network address.
display: grid;
grid-template-columns: repeat( auto-fit, minmax(500px, 1fr) );
grid-gap: 20px;
``
uname -r
dpkg --list 'linux-image*'
sudo dpkg --list 'linux-image*'|awk '{ if ($1=="ii") print $2}'|grep -v `uname -r`
sudo dpkg --force-all -P linux-image-3.13.0-32-generic
sudo apt-get install -f
sudo apt-get purge $(dpkg -l linux-{image,headers}-"[0-9]*" | awk '/ii/{print $2}' | grep -ve "$(uname -r | sed -r 's/-[a-z]+//')")
sudo dpkg-reconfigure unattended-upgrades