Software reference: Difference between revisions
No edit summary |
No edit summary |
||
Line 70: | Line 70: | ||
! [[Raspberry Pi Raspbian setup]] | ! [[Raspberry Pi Raspbian setup]] | ||
|} | |} | ||
{| class="mw-collapsible mw-collapsed wikitable" | |||
! Set up OpenWRT on buffalo | |||
|- | |||
| | |||
choices: | |||
1) hardcode all wan info and hope meraki doesn't over-assign (this sucks) | |||
2) DCHP WAN, bridge lan so ports just become another switch | |||
this is perfect if i have a static IP | |||
how do i find out the IP if it is dynamic? | |||
jim's tool? yes but use a linux equivalent | |||
no need: | |||
i can connect laptop to LAN port and get a 192.168.1 address on laptop from router DHCP | |||
then i can connect PA LAN to router WAN port and get router IP from | |||
steps: | |||
* reset buffalo as needed! | |||
it always starts with LAN DHCP support for 192.168.1 range, yeah baby | |||
wire laptop into LAN port and browse to 192.168.1.1 | |||
* set up to get WAN IP via DHCP; make note of it using LAN connection: 192.168.50.57 | |||
* Allow ssh from WAN IPs to router | |||
openwrt admin page->Network->Firewall->Traffic rules->"open ports on router" | |||
name: allow-wan-ssh | |||
Protocol: TCP+UDP | |||
external port: 22 (i could make it non-standard...) | |||
ADD | |||
then you can ssh to the WAN DHCP port, if you know it! for now, it's: | |||
ssh root@192.168.50.57 | |||
* leave LAN support of 192.168.1 ON | |||
remember you can simply wire anything into LAN ports to get an address! | |||
and then you can browse to http://192.168.1.1 to admin the router | |||
--- | |||
now i can ssh to it from wallee (or anywhere on PA LAN) | |||
ssh root@192.168.50.57 root/p* | |||
--- | |||
open https port too! let's admin from wallee | |||
you have to open WAN port 443 in firewall config | |||
you also have to install support for this! | |||
opkg update | |||
opkg install luci-ssl | |||
/etc/init.d/uhttpd restart | |||
but others have commented that this exposes your router and it WILL get hacked. good point. | |||
skip for now | |||
|} | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! OpenELEC multi-boot install | ! OpenELEC multi-boot install | ||
Line 114: | Line 156: | ||
* when the boot: line comes up, type "live" to get run a live Kodi rather than run the crufty old installer | * when the boot: line comes up, type "live" to get run a live Kodi rather than run the crufty old installer | ||
|} | |} | ||
[[Update gentoo kernel]] | |||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Windows 10 new setup | ! Windows 10 new setup |
Revision as of 16:18, 24 May 2016
Mediawiki - Wordpress - Phabricator
CodeLite - Eclipse - Sublime - Scite - Emacs
LibreOffice - Gimp - i3
Chromium - Firefox - IceWeasel
OS installation | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Cloud and AWS tasks | ||||
---|---|---|---|---|
|
Ubuntu set up networking |
---|
Install NetworkManager, as the wpagui UI sucks
|
Ubuntu install Sublime |
---|
Sublime editor seems way better than anything else out there on linux:
|
Install Node.js |
---|
Windows
Linux
|
Ubuntu install Java |
---|
Install Oracle JDK 8 (9 is scheduled for release in 2016)
su - add-apt-repository ppa:webupd8team/java apt-get update apt-get install oracle-java8-installer apt-get install oracle-java8-set-default
update-alternatives --config java # make note of path update-alternatives --config javac # make note of path sudo subl /etc/environment JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course |