catchup
This commit is contained in:
parent
b1f5bf6266
commit
826c907a85
10 changed files with 49 additions and 56 deletions
|
|
@ -1,4 +0,0 @@
|
|||
RewriteEngine On
|
||||
RewriteCond %{SERVER_PORT} 80
|
||||
RewriteRule ^(.*)$ https://www.duckland.org/$1 [R,L]
|
||||
|
||||
BIN
images/Random/201701.jpg
Normal file
BIN
images/Random/201701.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 MiB |
17
posts/2017/01/p365-monthly-checkin-01.md
Normal file
17
posts/2017/01/p365-monthly-checkin-01.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<!--
|
||||
.. title: P365 - Monthly Checkin 01
|
||||
.. slug: p365-monthly-checkin-01
|
||||
.. date: 2017-01-31 22:51:20 UTC-06:00
|
||||
.. tags: photos
|
||||
.. category:
|
||||
.. link:
|
||||
.. description:
|
||||
.. type: text
|
||||
-->
|
||||
|
||||
Just a quick check on how I am doing for my [Project 365](https://p365.donaldharper.com).
|
||||
|
||||
As you can see, I missed one day so far.
|
||||

|
||||
|
||||
|
||||
32
posts/2017/02/quick-nmcli-notes.md
Normal file
32
posts/2017/02/quick-nmcli-notes.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<!--
|
||||
.. title: Quick nmcli notes
|
||||
.. slug: quick-nmcli-notes
|
||||
.. date: 2017-02-16 19:38:42 UTC-06:00
|
||||
.. tags: linux,sa,R810
|
||||
.. category:
|
||||
.. link:
|
||||
.. description:
|
||||
.. type: text
|
||||
-->
|
||||
|
||||
This is a quick post so I can remember these details.
|
||||
|
||||
So, on the [R810](/categories/r810.html), I am currently running [ArchLinux](http://archlinux.org), which uses by default [NetworkManager](https://wiki.archlinux.org/index.php/NetworkManager), which I have a love/hate relationship with. At my last job, I recommended removing it from our servers, as under [RHEL6](http://www.redhat.com), it does very odd things to the network and is hard to manage. I have heard that it is better under RHEL7. But, it does let you do some really cool things. On the R810, there is a cellular modem, and on previous installes, I have had it configured and scripted using **nmcli** to easily bring up and down the cellular connections.
|
||||
|
||||
The problem I am facing now is that my current DHCP server for the house does not let me provide two MAC Address for a single IP, so when I dock the R810, it gets a different IP address than when it is on WiFi. Very annoying. Also, for some reason, it would prefer to use WiFi when the ethernet connection was present, thus giving me a slower connection.
|
||||
|
||||
The documentation I found was a bit light in examples and/or dated (I am running version 1.6.2 of NetworkManager, and the examples were from 1.2.x or 1.4.x, which did not work). So, with a bit of expermenting, I finally got it fixed to:
|
||||
|
||||
- Chose the ethernet connection over the Wifi when both are present
|
||||
- 'Clone' the MAC address of the Wifi NIC to the ethernet NIC
|
||||
|
||||
Here are the commands. **local** is what I called the local ethernet connection, and **home-wifi** is what I call the house Wifi Network.
|
||||
|
||||
- To set the MAC adress:
|
||||
|
||||
>nmcli connection modify local ethernet.cloned-mac-address aa:bb:cc:dd:ee:ff
|
||||
|
||||
- To set the connection priorities:
|
||||
|
||||
>nmcli connection modify local connection.autoconnect-priority 999
|
||||
>nmcli connection modify home-wifi connection.autoconnect-priority 999
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"name": "reveal.js",
|
||||
"homepage": "https://github.com/hakimel/reveal.js",
|
||||
"version": "2.6.2",
|
||||
"_release": "2.6.2",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "2.6.2",
|
||||
"commit": "9da952fea30906090446d038430186b11dba7f13"
|
||||
},
|
||||
"_source": "git://github.com/hakimel/reveal.js.git",
|
||||
"_target": "~2.6.2",
|
||||
"_originalSource": "reveal.js",
|
||||
"_direct": true
|
||||
}
|
||||
6
themes/reveal-jinja/assets/reveal/.gitignore
vendored
6
themes/reveal-jinja/assets/reveal/.gitignore
vendored
|
|
@ -1,6 +0,0 @@
|
|||
.DS_Store
|
||||
.svn
|
||||
log/*.log
|
||||
tmp/**
|
||||
node_modules/
|
||||
.sass-cache
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- 0.8
|
||||
before_script:
|
||||
- npm install -g grunt-cli
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"name": "reveal.js",
|
||||
"homepage": "https://github.com/hakimel/reveal.js",
|
||||
"version": "2.6.2",
|
||||
"_release": "2.6.2",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "2.6.2",
|
||||
"commit": "9da952fea30906090446d038430186b11dba7f13"
|
||||
},
|
||||
"_source": "git://github.com/hakimel/reveal.js.git",
|
||||
"_target": "~2.6.2",
|
||||
"_originalSource": "reveal.js",
|
||||
"_direct": true
|
||||
}
|
||||
6
themes/reveal/assets/reveal/.gitignore
vendored
6
themes/reveal/assets/reveal/.gitignore
vendored
|
|
@ -1,6 +0,0 @@
|
|||
.DS_Store
|
||||
.svn
|
||||
log/*.log
|
||||
tmp/**
|
||||
node_modules/
|
||||
.sass-cache
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- 0.8
|
||||
before_script:
|
||||
- npm install -g grunt-cli
|
||||
Loading…
Add table
Add a link
Reference in a new issue