Skip to main content

List of posted Odroid Magazine articles

Avid readers of my blog (ha!) will complain that there's hardly anything to read. Well, that's because I've published most of my work in Odroid Magazine, since it was related to SBCs.

Here is a list of published articles (quite a few, it seems), for your (and my) enjoyment:

Multi Screen Desktop Using VNC - Part 2: An Improved And Simplified Version
Running Linux under Android
Multiscreen Desktops using VNC
Manage your kid's computer time with mqttNanny
Lutris: Gaming on the ODROID-H2
ODROID Crossgrading: From armhf to arm64
Upgrading Ubuntu to 18.04
KeePass: Password Manager 
Home Assistant: A DIY Smart Light Project
Home Assistant: Tracking People With Wi-Fi Using Kismet
Home Assistant: Using Infrared, Motors, and Relays
Home Assistant: Scripts for Customization
Home Assistant: Designing A Fancy Dashboard
Setting Up Your ODROID: ODROID-XU4 As A General Purpose NAS
Mycroft: Open Source Artificial Intelligence
Home Automation With Home Assistant: A Smart House With Your ODROID By Your Side
Getting Kernel Boot And Panic Messages With NetConsole: Monitor Your System Even Without A Serial Console
Multiclick Button Handler For 3.5” LCD And Webcam: Getting The Most Out Of The Hardware Buttons
Boot.Ini Persistence: Preserving Changes During An Upgrade
Accelerated Video Playback For Browsing On The ODROID-C2: Watch Your Web Media Content In Full HD
Transforming Your ODROID Into an IP Webcam
Taking a Crack at Breaking WPA Networks - Part 2
Taking a Crack at Breaking WPA Networks - Part 1: Bulletproofing Your Own System
Attacking WPS-Enabled Wireless Networks
Breaking WEP Security: A Guide to Cracking the Simplest Wireless Encryption
Wireless Injection: A Hands-On Approach to Learning 802.11
Kismet: Wireless Network Monitoring
Backup Scripts: Keep Your Data Safe For Your Peace of Mind
Byobu: Your Linux Terminal on Steroids
Munin: An Open Source Performance Analyzer
Linux Containers: Quickly Prepare a Fully Configured Isolated System for Testing
Gently Release the Handbrake: Transcode Videos to Any Format
CPU and Fan Control: Tame Your XU3 and XU4 Heat Output When You Don’t Need Full Octa-Core Power

Comments

Popular posts from this blog

Home Assistant + Android TV = fun

Here's a quick setup guide for controlling your Android TV from within Home Assistant. I've used it to control a genuine Android TV (Philips 7304) and an Odroid N2 running Android TV. For this to work you need ADB access. It can usually be enabled from within Developer Settings. The great part is - you don't need root access! The most important things are described in the androidtv component for Home Assistant: https://www.home-assistant.io/integrations/androidtv/ Make sure you go through the adb setup. My configuration is simple (inside configuration.yaml): media_player:   - platform: androidtv     name: TV Bedroom ATV     host: 192.168.1.61     device_class: androidtv Once Home Assistant restarts, your TV might require you to accept the connection (adb authentication). This happens only once (or until you reset your ATV to factory settings). Once running the integration will show you the current ATV state (on or off) and al...

SmokePing + InfluxDB export + docker + slaves + Grafana = fun

I've been working for a while on this project - with the purpose of getting SmokePing measurements from different hosts (slaves) into InfluxDB so that we can better graph them with Grafana. The slaves run multiple Smokeping instances inside Docker so that they have separate networking (measure through different uplinks, independently). This will not be a comprehensive configuration guide, but a quick "how to" to handle setup and basic troubleshooting. It assumes you already know how to set up and operate a regular Smokeping install with or without slaves and that you are fluent in Smokeping configuration syntax, know your way around Docker and aren't a stranger from InfluxDB and Grafana (sorry, there's a lot of information to take in). 1. Getting Smokeping with InfluxDB support - you can get it either from the official page (most changes have been merged) - https://github.com/oetiker/SmokePing (PR discussion here: https://github.com/oetiker/SmokePing/issues/...

Android: Adding scp/sftp support to dropbear and mounting with sshfs

I have recently received an android smartphone, and one of the first things I did with it was to root it :). This allows power-usres to get the most out of their hardware. The next thing on my list was to set up a SSH server and to be able to transfer files between my Linux system and my phone (by the way, I'm running Android 4.1 and it seems USB mass storage support has been removed. MTP/PTP modes have either horrible transfer speed or are poorly supported in Ubuntu). With the above in mind, the plan was to: Enable tethering on the phone Run a SSH server to support issuing remote commands and file transfer (FTP might have been an alternative, but I'm a SSH adept). Browsing the market I found  SSHDroid which does all that it advertised. Problem is - the free version conflicts with my add-blocking apps and requests that they are disabled to run. For me, this is a big nuisance, so I kept looking. I found Dropbear SSH Server 2 , which is completely free, but doesn'...