You can install rEFInd from a PPA:
$ sudo apt-add-repository ppa:rodsmith/refind
$ sudo apt-get update
$ sudo apt-get install refind
It will recommend doing so to the ESP, accept the default.
#!/bin/bash | |
MYSQL_ROOT_PASSWORD=$1 | |
if [ -z "$MYSQL_ROOT_PASSWORD" ]; then | |
echo 'Missing required $1 (password).' | |
exit 1 | |
fi | |
# check if mysql is running now. |
These commands are based on a askubuntu answer http://askubuntu.com/a/581497 | |
To install gcc-6 (gcc-6.1.1), I had to do more stuff as shown below. | |
USE THOSE COMMANDS AT YOUR OWN RISK. I SHALL NOT BE RESPONSIBLE FOR ANYTHING. | |
ABSOLUTELY NO WARRANTY. | |
If you are still reading let's carry on with the code. | |
sudo apt-get update && \ | |
sudo apt-get install build-essential software-properties-common -y && \ | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \ |
# | |
# Make gcc-4.8 the default compiler | |
# brew installs gcc-4.8, but does not create symlinks for it to be used | |
# without the version number. | |
# This script: | |
# 1. Generate symlinks for all gcc tools installed by brew | |
# 2. Make brew-installed software the first in path | |
# | |
BREW_CMD="brew" |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: jmeter-server | |
# Required-Start: $syslog $local_fs | |
# Required-Stop: $syslog $local_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Apache JMeter Remote Server | |
# Description: Apache JMeter Remote Server runs JMeter tests issued from a remote server. | |
### END INIT INFO |
$HOME/Downloads/instantclient_12_1
install.sh
and copy the following code and past it on that file.Assuming you already have the appropriate Akamai credentials, you should have some information like this:
Primary: rtmp://p.ep12345.i.akamaientrypoint.net/EntryPoint
Backup: rtmp://b.ep12345.i.akamaientrypoint.net/EntryPoint
User: ######
Pass: ******
Stream: [EVENT_ANGLE_BITRATE]@12345
Playback: http://zencoder_hd1_1-lh.akamaihd.net/[EVENT_ANGLE_BITRATE]@12345
Shortcut Description | |
--------------------------------------------------------------- | |
C-o Drop to the console | |
Insert Select/deselect file | |
* Invert selection on files | |
+ Specify file selection options (including custom pattern) | |
- The same as above, but for deselecting | |
F5/F6 Copy/move selected files |
% Values you will most likely want to change: | |
ROBOT_STEPS = 20; | |
COM_PORT = 'COM9'; | |
POLL_RATE = 0.1; | |
% Set up joystick | |
disp('Connecting to Xbox Controller... '); | |
XBOX_CONTROLLER = vrjoystick(1); | |
disp(caps(XBOX_CONTROLLER)); | |
%disp(INSTRFIND); |
% Values you will most likely want to change: | |
ROBOT_STEPS = 20; | |
COM_PORT = 'COM9'; | |
POLL_RATE = 0.1; | |
% Set up joystick | |
disp('Connecting to Xbox Controller... '); | |
XBOX_CONTROLLER = vrjoystick(1); | |
disp(caps(XBOX_CONTROLLER)); | |
%disp(INSTRFIND); |