This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* libwebsockets-test-server - libwebsockets test implementation | |
* | |
* Copyright (C) 2010-2011 Andy Green <[email protected]> | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation: | |
* version 2.1 of the License. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
* { | |
margin: 0; | |
padding: 0; | |
-webkit-font-smoothing: antialiased; | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scanning mmc 0:1... | |
Found U-Boot script /boot.scr | |
reading /boot.scr | |
287 bytes read in 27 ms (9.8 KiB/s) | |
## Executing script at 43100000 | |
reading uImage | |
4925504 bytes read in 264 ms (17.8 MiB/s) | |
reading sun7i-a20-cubietruck.dtb | |
26288 bytes read in 30 ms (855.5 KiB/s) | |
## Booting kernel from Legacy Image at 46000000 ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def main(): | |
x = 1 | |
y = "" | |
time = 0 | |
loop = 0 | |
f = open('prepare_data.txt','r') | |
for line in f: | |
if line.startswith('real'): | |
time+=(float(".".join(line.split("\t")[1].split('m')[1][:-2].split('.')))) | |
if x%10 == 0 : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#install remote desktop | |
sudo apt-get install xrdp | |
#install software | |
sudo apt-get install git | |
sudo apt-get install cmake | |
sudo apt-get install libusb-1.0-0.dev | |
sudo apt-get install build-essential | |
#get source code and compile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@rack-3-nodes-11:~# sudo docker -d -D | |
DEBU[0000] waiting for daemon to initialize | |
ERRO[0000] 'overlay' not found as a supported filesystem on this host. Please ensure kernel is new enough and has overlay support loaded. | |
DEBU[0000] Using graph driver vfs | |
DEBU[0000] Creating images graph | |
DEBU[0000] Restored 0 elements | |
DEBU[0000] Creating repository list | |
INFO[0000] +job init_networkdriver() | |
INFO[0000] +job serveapi(unix:///var/run/docker.sock) | |
INFO[0000] Listening for HTTP on unix (/var/run/docker.sock) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo gdisk /dev/disk0 | |
Password: | |
GPT fdisk (gdisk) version 1.0.1 | |
Warning: Devices opened with shared lock will not have their | |
partition table automatically reloaded! | |
Partition table scan: | |
MBR: hybrid | |
BSD: not present | |
APM: not present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== How to? == | |
1) แก้ source list ให้เป็นดังนี้ (ผมใส่ architecture มันเข้าไปด้วย ไม่งั้นมันอัพเดทไม่ได้ครับ) | |
''' | |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb [arch=armhf] http://ports.ubuntu.com/ubuntu-ports/ trusty main restricted universe multiverse | |
deb-src [arch=armhf] http://ports.ubuntu.com/ubuntu-ports/ trusty main restricted universe multiverse | |
## Major bug fix updates produced after the final release of the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Set environment following : | |
// set enviroment variable Hadoop - QFS interface. | |
$ export SPARK_CLASSPATH=/home/ubuntu/qfs-1.1.4/build/java/hadoop-qfs/hadoop-2.5.1-qfs-.jar:/home/ubuntu/qfs-1.1.4/build/java/qfs-access/qfs-access-.jar | |
// set enviroment variable for qfs_access library. (If not set qfs_accent can't be load) | |
$ export LD_LIBRARY_PATH=/home/ubuntu/qfs-1.1.4/build/release/lib/ | |
2) start sample QFS chunkserver and metaserver via python script. | |
$ ./examples/sampleservers/sample_setup.py -a install | |
and you can see something at http://localhost:22000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### Config network interface with static IP address) | |
vi /etc/network/interfaces | |
auto eth4 | |
iface eth4 inet static | |
address 192.168.5.201 | |
netmask 255.255.255.0 | |
gateway 192.168.5.9 |
OlderNewer