Created 2013-12-10
Howto install the logitech media server formerly known as squeezebox server on Cubieboard 2 (arm linux) via cubian.
- Cubian: http://cubian.org/
- Site: http://downloads.slimdevices.com/
- Current version: LogitechMediaServer_v7.7.3
| keychain.csv | |
| keychain.txt |
Created 2013-12-10
Howto install the logitech media server formerly known as squeezebox server on Cubieboard 2 (arm linux) via cubian.
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: openhab | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: OpenHAB Daemon | |
| ### END INIT INFO |
| var app = require(process.cwd() + '/app'); | |
| var winston = require('winston'); | |
| var _ = require('lodash'); | |
| // Set up logger | |
| var customColors = { | |
| trace: 'white', | |
| debug: 'green', | |
| info: 'green', | |
| warn: 'yellow', |
| if [ `uname` = "Darwin" ]; then | |
| PHPVER=$(/usr/libexec/PlistBuddy -c "print phpVersion" ~/Library/Preferences/de.appsolute.mamppro.plist) | |
| #echo "Version: $PHPVER" | |
| export PATH=/Applications/MAMP/bin/php/php${PHPVER}/bin:$PATH | |
| fi | |
These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| config.use_transactional_fixtures = false | |
| config.before(:suite) do | |
| # Do truncation once per suite to vacuum for Postgres | |
| DatabaseCleaner.clean_with :truncation | |
| # Normally do transactions-based cleanup | |
| DatabaseCleaner.strategy = :transaction | |
| end | |
| config.around(:each) do |spec| |
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/arm 3.10.25 Kernel Configuration | |
| # | |
| CONFIG_ARM=y | |
| CONFIG_SYS_SUPPORTS_APM_EMULATION=y | |
| CONFIG_HAVE_PROC_CPU=y | |
| CONFIG_STACKTRACE_SUPPORT=y | |
| CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |
| CONFIG_LOCKDEP_SUPPORT=y |
| #!/bin/bash | |
| rm -rf /usr/local/etc/config/addons/mh 2>&1 > /dev/null | |
| rm /usr/local/etc/config/addons/www/mh 2>&1 > /dev/null | |
| rm -rf /opt/mh 2>&1 > /dev/null | |
| sed -i 's/\/opt\/mh\/startup.sh/#\/opt\/mh\/startup.sh/g' /etc/init.d/S99eQ3SystemStarted |