Building Tizen Development Environment

Size: px
Start display at page:

Download "Building Tizen Development Environment"

Transcription

1 Building Tizen Development Environment Minsoo Ryu Real-Time Computing and Communications Lab. Hanyang University

2 Outline Install Ubuntu on Virtual Machine Build Tizen Development Environment Build Specific Package Install Tizen 2.4 SDK Update Tizen 2.4 SDK Create Sample Application at Tizen SDK Introduce Tizen Emulator 2 2

3 Install Ubuntu on Virtual Machine

4 Install Virtual Machine(1) Install virtual machine x86 Virtualization product Open Source Software Download from VMware Workstation 12 Player Install Linux Ubuntu version 14.04(LTS) Download from 4 4

5 Install Virtual Machine(2) 5 5

6 Install Virtual Machine(3) 6 6

7 Install Ubuntu on Virtual Machine(1) 7 7

8 Install Ubuntu on Virtual Machine(2) 8 8

9 Install Ubuntu on Virtual Machine(3) 9 9

10 Install Ubuntu on Virtual Machine(4) 10 10

11 Install Ubuntu on Virtual Machine(5) 11 11

12 Virtual Machine Settings(1) 12 12

13 Virtual Machine Settings(2) 13 13

14 Build Tizen Development Environment

15 Tizen 2.4 Development Environment Target hardware device Tizen Z3 (Launched in India) Display Chipset CPU Sensors Camera Wi-Fi Bluetooth GPS Super AMOLED capacitive touch screen with 16M colors. Size 720 X 1280 pixels. Spreadtrum SC7730S Quad-core 1.3GHz A7 Accelerometer, Proximity. Main Camera 8MP, Front Camera 5MP Yes Yes Yes Getting Started Tizen Samsung Z3 Samsung Developer site Tizen 2.4 Platform Linux Foundation site Tizen 2.4 SDK

16 Set Up Development Environment Set up development Tizen forums(community)

17 Set Up Gerrit Access Registering a user account to gain access to tizen.org Configuring Secure Shell(SSh) for Gertit access Configuring Git 17 17

18 Set Up Gerrit Access Registering a User Account 18 18

19 Set Up Gerrit Access Configuring Secure Shell (SSH) Generate RSA keys by executing the following command $ ssh-keygen Follow the on-screen prompt Enter file in which to save the key (/home/(user)/.ssh/id_rsa) : (enter) Enter passphrase (empty for no passphrase) : (enter) Enter same passphrase again : (enter) Create an SSH configuration file with a full path of ~/.ssh/config $ vim ~/.ssh/config 19 19

20 Set Up Gerrit Access Configuring Secure Shell (SSH) Replace your Tizen ID with xxxxxxx Host tizen review.tizen.org Hostname review.tizen.org IdentityFile ~/.ssh/id_rsa User xxxxxxx Port #The line below is optional configuration applicable to Ubuntu and opensuse. #Add when using proxy, otherwise, skip it. #ProxyCommand nc -X5 -x : %h %p #The line below is optional configuration applicable to Fedora. #Add when using proxy, otherwise, skip it. #ProxyCommand nc --proxy-type socks4 --proxy : %h %p 20 20

21 Set Up Gerrit Access Configuring Secure Shell (SSH) SSH public key vim ~/.ssh/id_rsa.pub Register SSH public key

22 Set Up Gerrit Access Configuring Secure Shell (SSH) Check SSH connection $ ssh tizen **** Welcome to Gerrit Code Review **** Hi Kyusang Choi, you have successfully connected over SSH. Unfortunately, interactive shells are disabled. To clone a hosted Git repository, use: git clone ssh://kyusang@review.tizen.org:29418/repository_name.git 22 22

23 Set Up Gerrit Access Configuring Git for Gerrit Access Install Git $ sudo apt-get install git Configure Git $ git config --global user.name xxx" $ git config --global user. xxx@mail.com" 23 23

24 Install Tizen Development tools Configure Tizen tools repository $ sudo vim /etc/apt/sources.list deb / $ sudo apt-get update Install gbs, mic package $ sudo apt-get install gbs mic $ sudo apt-get update $ sudo apt-get upgrade cf)

25 Cloning All Projects over SSH Create ~/bin/ subdirectory, include it in PATH $ mkdir ~/bin/ $ PATH=~/bin:$PATH Download the repo script by executing the following command : $ curl > ~/bin/repo Change the attribute of repo $ sudo chmod a+x ~/bin/repo Create a new directory $ mkdir ~/<Tizen_Project> ex) $ mkdir ~/Tizen_2.4 $ cd ~/<Tizen_Project> $ cd ~/Tizen_

26 Cloning Tizen Source Initialize the repository Tizen 2.4 $ ~/bin/repo init -u ssh://<username>@review.tizen.org:29418/scm/manifest -b tizen_2.4 -m mobile.xml Checking $ ls -a.repo $ cd.repo Synchronize the repository by executing the following command $ ~/bin/repo sync 26 26

27 Git Build System(GBS) GBS A developer command line tool that supports Tizen package development It's used to generate tarballs based on Git repositories, to do local test buildings, and to submit code to OBS (Tizen's main build service) 27 27

28 Git Build System(GBS) Prebuilt binary packages The <Tizen_Project>/pre-built directory contains a group of prebuilt projects that provides base and toolchain binary RPM packages for GBS build. Dependency cycles in Repos Building packages with dependency cycles is not supported by GBS. Known cycles are as follows: gcc->eglibc->gcc gcc->binutils->gettext->gcc gettext->gcc->eglibc->gettext cmake->curl->c-ares->cmake filesystem->setup->filesystem aul->privacy-manager-server->aul libtool->texinfo->libzio->bzip2->libtool libmm-sound->avsystem->pulseaudio->system-server- >libfeedback->libmm-sound 28 28

29 Git Build System(GBS) Accelerator Packages Tizen provides cross-compilers and other accelerator packages, as shown below, in <Tizen_Project>/pre-built/toolchain-arm/ for ARM build. accel_pkgs=" bash,bzip2-libs,c-ares,cmake,coreutils,diffutils,eglibc,elfutils-libelf,elfutilslibs,elfutils,fdupes,file,findutils,gawk,gmp,gzip,libacl,libattr,libcap,libcurl, libfile,libgcc,liblua,libstdc++,make,mpc,mpfr,ncurses-libs,nodejs,nspr,nss-softokn-freebl, nss,openssl,patch,popt,rpm-build,rpm-libs,rpm,sed,sqlite,tar,xz-libs,zlib,binutils,gcc For the first build, these packages need to be excluded, otherwise built out packages will be installed and used, which will make accelerator packages fail to work

30 Git Build System(GBS) Tizen 2.4 Source code Cross Platform Build $ gbs build -A armv7l --threads=4 --clean-once --exclude=${accel_pkgs},filesystem,aul,libmm-sound,libtool,tct-behavior-tests 30 30

31 Mic Image Creator MIC is an image creator It's used to create images for Tizen With the MIC tool, users can create images of different types for different verticals, including live CD images, live USB images, raw images for KVM, loop images for IVI platforms, and fs images for chrooting entire framework Result of specific package build 31 31

32 Creating Tizen Image With MIC Preparing the Kickstart File $ curl mobile_ /builddata/images/target-tm1/imageconfigurations/mobile_target-tm1.ks > mobile_target-tm1.ks Create a Tizen Image $ sudo mic create loop <KS-File> --local-pkgs-path=<localpath>/ -- pack-to=<image name>.tar.gz $ gbs createimage --ks-file=mobile_target.ks 32 32

33 MIC Image Creator $ sudo mic create loop tizen-2.4-mobile_ _mobile_target.ks --local-pkgs-path=localpath/ --packto=tizen_0416.tar.gz Note that tizen_0416 is the result of MIC and localpath is the result of GBS 33 33

34 Putting Image Into Tizen Download the following images from #Mobile platform Image mobile_ /images/target-tm1/mobile_target-tm1/tizen-2.4- mobile_ _mobile_target-tm1.tar.gz Remark: Tizen 2.4 is based on Linux kernel linux-3.10-sc7730 Platform Upgrade Enter the download mode for your device with PowerKey+VolDown Flash the boot image and the platform image $ Sudo lthor mobile_target-tm1/tizen-2.4-mobile_target-tm1.tar.gz 34 34

35 Build Specific Package

36 Cloning a Specific Package over SSH Clone the required package by executing the following command $ git clone ssh: //<usermode>@review.tizen.org:29418 /adaptation/devices/system-tools You can check if it is the master branch by executing the following command and checkout to other branch $ git branch a $ git checkout tizen_2.4 Build package in architecture armv7l $ gbs build -A armv7l include-all 36 36

37 Building a Specific Package Move to Project folder $ cd <Project folder> Configuring.gbs.conf $ vi.gbs.conf # caution. gbs.conf [general] profile=profile.tizen_2.4_mobile [repo.tizen_2.4_mobile] url= mobile_ /repos/target-tm1/packages/ [repo.tizen_2.4_base] url= [repo.tizen_2.4_base_live] url= [repo.tizen_2.4_mobile_live] url= [profile.tizen_2.4_mobile] repos=repo.tizen_2.4_mobile,repo.tizen_2.4_base 37 37

38 INSTALL TIZEN 2.4 SDK

39 Install Tizen 2.4 SDK 39 39

40 Install Tizen 2.4 SDK 40 40

41 Install Tizen 2.4 SDK 41 41

42 Install Tizen 2.4 SDK JRE $ tar xvzf jdk-8u45-linux-x64.tar.gz $ sudo mkdir -p /usr/lib/jvm/jre1.8.0 $ sudo mv jdk1.8.0_45/* /usr/lib/jvm/jre1.8.0/ JRE install path $ sudo update-alternatives --install <link> <name> <path> <priority> $ sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jre1.8.0/bin/java 0 Adding configuration to depend on PCs $ sudo apt-get install expect gtk2-engines-pixbuf libgnome2-0 qemu-user-static libwebkitgtk gettext gksu module-init-tools libudev-dev libsdl1.2debian ruby $ sudo apt-get install libudev-dev libwebkitgtk libpython2.7 make findutils rpm2cpio cpio bridge-utils openvpn 42 42

43 Install Tizen 2.4 SDK 43 43

44 Install Tizen 2.4 SDK 44 44

45 Install Tizen 2.4 SDK 45 45

46 Install Tizen 2.4 SDK 46 46

47 Install Tizen 2.4 SDK 47 47

48 Update Tizen 2.4 SDK

49 Update Tizen 2.4 SDK 49 49

50 Update Tizen 2.4 SDK 50 50

51 Create Sample Application at Tizen SDK

52 Create Sample Application at Tizen SDK Path: Preferences > Tizen SDK > Security Profiles 52 52

53 Create Sample Application at Tizen SDK 53 53

54 Create Sample Application at Tizen SDK 54 54

55 Create Sample Application at Tizen SDK 55 55

56 Create Sample Application at Tizen SDK 56 56

57 Introduce Emulator

58 Introduce Emulator 58 58

59 Introduce Emulator 59 59

60 Introduce Emulator 60 60

61 Introduce Emulator 61 61

62 Assignment Z3 Kernel Build and update Kernel Image Modify EXTRAVERSION at Makefile in the kernel Change to Your name Update kernel into Tizen Z3 Check kernel information by uname command Capture your screen and submit to

63 Assignment Download kernel source linux-3.10-sc7730.git Preparing tools for Building Kernel Creating./dtbtool,./mkdzImage $ git clone ssh://username@review.tizen.org:29418/adaptation/devices/system-tools Build system-tools by using GBS Location of system-tools.rpm $ cd ~/GBS-ROOT/local/BUILD-ROOTS/scratch.armv7l.0/home/abuild/rpmbuild /RPMS/armv7l $ sudo cp system-tools armv7l.rpm <your own location> Convert system-tools.rpm $ rpm2cpio system-tools armv7l.rpm cpio -idv 63 63

64 Assignment Process of Z3 Kernel build $ export CROSS_COMPILE=arm-linux-gnueabi- $ vi release.sh Change dtbtool >./dtbtool Change mkdzimage >./mkdzimage $./release.sh tm1 $ cp r arch/arm/boot/dzlmage ~/ Copy dzimage from your local area to Z3 Phone directory 64 64

65 Assignment Update kernel Image at Z3 $ cd ~/tizen-sdk/tools Confirm to connect devices by sdb $./sdb devices Root Mode $./sdb devices cd opt/usr/media cat./dzimage > /dev/disk/by-partlabel/kernel # dump kernel image cat./modules.img > /dev/disk/by-partlabel/module # dump kernel external module Sync > reboot 65 65

Building Tizen Development Environment

Building Tizen Development Environment Building Tizen Development Environment Minsoo Ryu Real-Time Computing and Communications Lab. Hanyang University msryu@hanyang.ac.kr Tizen 2.3 Development Environment Target hardware device Tizen Reference

More information

Tizen Project Guideline. SKKU Embedded Software Lab.

Tizen Project Guideline. SKKU Embedded Software Lab. 1 Tizen Project Guideline Tizen Project Process 2 Assume that you have done flashing Tizen images. 1. Preparation Install Tizen Development Environments 2. Github 1. Sign in Github 2. Make an Organization

More information

Best Practice for Tizen Platform from Code to Device. Zhang, Qiang Chen, Gui (Intel Open Source Technology Center)

Best Practice for Tizen Platform from Code to Device. Zhang, Qiang Chen, Gui (Intel Open Source Technology Center) Best Practice for Tizen Platform from Code to Device Zhang, Qiang Chen, Gui (Intel Open Source Technology Center) Agenda Tizen Development Tools Workflow Overview Downloading Tizen source code Building

More information

Tizen * IVI Hands-on Lab

Tizen * IVI Hands-on Lab Tizen * IVI Hands-on Lab Geoffroy VanCutsem, Technical Marketing Engineer, Intel Tosh Mitsue, Technical Marketing Engineer, Intel Tonny Tzeng, Technical Marketing Engineer, Intel SFTL004 Agenda Lab Objective

More information

Tizen TCT User Guide

Tizen TCT User Guide Tizen 2.3.1 TCT User Guide Table of Contents 1. Environment setup... 3 1.1. Symbols and abbreviations... 3 1.2. Hardware Requirements... 3 1.3. Software Requirements... 3 2. Getting TCT-source and TCT-manager...

More information

One-click Solution for Tizen Image Creation Based on Jenkins Framework. Zhang, Qiang (Intel Open Source Technology Center)

One-click Solution for Tizen Image Creation Based on Jenkins Framework. Zhang, Qiang (Intel Open Source Technology Center) One-click Solution for Tizen Image Creation Based on Jenkins Framework Zhang, Qiang (Intel Open Source Technology Center) Agenda Tizen Build Workflow Overview Detailed steps Downloading Tizen Source Code

More information

Tizen EFL UTC User Guide

Tizen EFL UTC User Guide Tizen 2.3.1 EFL UTC User Guide Table of Contents 1. Environment setup... 3 1.1. Symbols and abbreviations... 3 1.2. Hardware Requirements... 3 1.3. Software Requirements... 3 2. Making the EFL UTC package...

More information

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering GIT A free and open source distributed version control system User Guide January, 2018 Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Table of Contents What is

More information

REX-RED Community Android 4.3

REX-RED Community Android 4.3 REX-RED Community Android 4.3 Build Guide REXNOS CO.,Ltd Document Information Version 1.1 File Name REX5260 Android 4.3 Build Guide.doc Date May 20, 2014 Status Working Revision History Date Version Update

More information

Getting the Source Code

Getting the Source Code Getting the Source Code The CORD source code is available from our Gerrit system at gerrit.opencord.org. Setting up a Gerrit account and ssh access will also enable you to submit your own changes to CORD

More information

Lab 6: OS Security for the Internet of Things

Lab 6: OS Security for the Internet of Things Department of Computer Science: Cyber Security Practice Lab 6: OS Security for the Internet of Things Introduction The Internet of Things (IoT) is an emerging technology that will affect our daily life.

More information

Lab 6: OS Security for the Internet of Things

Lab 6: OS Security for the Internet of Things Department of Computer Science: Cyber Security Practice Lab 6: OS Security for the Internet of Things Introduction The Internet of Things (IoT) is an emerging technology that will affect our daily life.

More information

WES 237A Project Part 1 Guide

WES 237A Project Part 1 Guide WES 237A Project Part 1 Guide A. Environment Setup Guide Goals The purpose of this document is to prepare your development machine for the project by: 1. Installing any missing, required tools 2. Setting

More information

CS3210: Operating Systems

CS3210: Operating Systems CS3210: Operating Systems Lab 1 Tutorial 1 / 39 Lab session general structure Session A - overview presentation (30 min) Concepts, tutorial, and demo Session B - group activity (30 min) Each student will

More information

DEVELOPMENT GUIDE VAB-630. Android BSP v

DEVELOPMENT GUIDE VAB-630. Android BSP v DEVELOPMENT GUIDE VAB-630 Android BSP v1.0.3 1.00-08112017-153900 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

Zephyr Kernel Installation & Setup Manual

Zephyr Kernel Installation & Setup Manual Zephyr Kernel Installation & Setup Manual Zephyr kernel is a small footprint Single address space OS, i.e, it combines application specific code with a custom kernel to create a monolithic image that gets

More information

Tizen.IoTivity.Init. Tizen IoTivity 를시작하기위한환경설정. Geunsun Lee

Tizen.IoTivity.Init. Tizen IoTivity 를시작하기위한환경설정. Geunsun Lee Tizen.IoTivity.Init Tizen IoTivity 를시작하기위한환경설정 Geunsun Lee 1 Installing Tizen Platform How to install IoT Headless image on RPi3(for Ubuntu) 2 Booting The RPi3 Connecting a Host PC to RPi3 via UART 3 Building

More information

IoTivity Programmer s Guide Resource Encapsulation

IoTivity Programmer s Guide Resource Encapsulation IoTivity Programmer s Guide Resource Encapsulation 1 CONTENTS 2 Revision History... 4 3 Terminology... 5 4 Introduction to Resource Encapsulation... 6 4.1 Overall Architecture... 6 4.2 Iotivity Service

More information

DEVELOPMENT GUIDE VAB-630. Linux BSP v

DEVELOPMENT GUIDE VAB-630. Linux BSP v DEVELOPMENT GUIDE VAB-630 Linux BSP v1.0.1 100-09182017-114400 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

Project 1 Setup. Some relevant details are the output of: 1. uname -a 2. cat /etc/*release 3. whereis java 4. java -version 5.

Project 1 Setup. Some relevant details are the output of: 1. uname -a 2. cat /etc/*release 3. whereis java 4. java -version 5. Project 1 Setup The purpose of this document is to help you to prepare your development machine for the project by: 1. Installing any missing tools 2. Setting up required environment variables and paths

More information

Mars ZX3 Android manual. Antmicro

Mars ZX3 Android manual. Antmicro Mars ZX3 Android manual Antmicro Sep 27, 2017 Contents 1 Introduction 1 1.1 Acknowledgements..................................... 1 1.2 Version information..................................... 1 2 Compiling

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

Lab2 - Bootloader. Conventions. Department of Computer Science and Information Engineering National Taiwan University

Lab2 - Bootloader. Conventions. Department of Computer Science and Information Engineering National Taiwan University Lab2 - Bootloader 1 / 20 Cross-compile U-Boot. Connect to Raspberry Pi via an USB-TTL cable. Boot Raspberry Pi via U-Boot. 2 / 20 Host Machine OS: Windows Target Machine Raspberry Pi (2 or 3) Build Machine

More information

Introduction of Linux

Introduction of Linux Introduction of Linux 阳 oslab2018_class1@163.com 寅 oslab2018_class2@163.com PART I Brief Introduction Basic Conceptions & Environment Install & Configure a Virtual Machine Basic Commands PART II Shell

More information

Building a ROM for Android on Ubuntu in Virtualbox

Building a ROM for Android on Ubuntu in Virtualbox Building a ROM for Android on Ubuntu 14.04 in Virtualbox 1. Introduction a) Read AOSP Tour from "Embedded Android" Book b) Created Ubuntu 14.04 Virtual Machine with 2 CPUs, 5GB RAM and 200GB dynamic allocation

More information

Digi Embedded Yocto 1.6. First Steps Guide

Digi Embedded Yocto 1.6. First Steps Guide Digi Embedded Yocto 1.6 First Steps Guide Revision history 90001423 Revision Date Description E July, 2015 Updated to Digi Embedded Yocto 1.6.6 F October, 2015 Updated to Digi Embedded Yocto 1.6.7 G November,

More information

Cubieboard4 Linux Sdk Guide TF BOOT & TF WRITE EMMC. Website: Support:

Cubieboard4 Linux Sdk Guide TF BOOT & TF WRITE EMMC. Website:  Support: Cubieboard4 Linux Sdk Guide TF BOOT & TF WRITE EMMC Website:http://cubieboard.org/ Support: support@cubietech.com Version Author Modification Check V-0.1-20141226 A.K Init version V-1.0-20150113 A.K Release

More information

Intel Do-It-Yourself Challenge Compile C/C++ for Galileo Nicolas Vailliet

Intel Do-It-Yourself Challenge Compile C/C++ for Galileo Nicolas Vailliet Intel Do-It-Yourself Challenge Compile C/C++ for Galileo Nicolas Vailliet www.intel-software-academic-program.com paul.guermonprez@intel.com Intel Software 2014-02-01 Why? C/C++ code? Why C/C++ code? Arduino

More information

EE516: Embedded Software Project 1. Setting Up Environment for Projects

EE516: Embedded Software Project 1. Setting Up Environment for Projects EE516: Embedded Software Project 1. Setting Up Environment for Projects By Dong Jae Shin 2015. 09. 01. Contents Introduction to Projects of EE516 Tasks Setting Up Environment Virtual Machine Environment

More information

Building CircuitPython

Building CircuitPython Building CircuitPython Created by Dan Halbert Last updated on 2018-05-18 03:47:12 AM UTC Guide Contents Guide Contents Introduction Linux Setup Install a Real or Virtual Linux Machine Native Linux Linux

More information

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux...

1. Install a Virtual Machine Download Ubuntu Create a New Virtual Machine Seamless Operation between Windows an Linux... Introduction APPLICATION NOTE The purpose of this document is to explain how to create a Virtual Machine on a Windows PC such that a Linux environment can be created in order to build a Linux kernel and

More information

Creating a profile from Tizen:Common. Stéphane Desneux Senior Software Engineer Eurogiciel

Creating a profile from Tizen:Common. Stéphane Desneux Senior Software Engineer Eurogiciel Creating a profile from Tizen:Common Stéphane Desneux Senior Software Engineer Eurogiciel Eurogiciel IT Services Company Open source development and integration:

More information

Pengwyn Documentation

Pengwyn Documentation Pengwyn Documentation Release 1.0 Silica October 03, 2016 Contents 1 Introduction 3 1.1 Platforms................................................. 3 1.2 Hardware requirements.........................................

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit Gerrit About the Tutorial Gerrit is a web-based code review tool, which is integrated with Git and built on top of Git version control system (helps developers to work together and maintain the history

More information

Initial setting up of VPN Java version.

Initial setting up of VPN Java version. VPN Linux 64 bit To access work documents from home you will need to create a VPN connection. This will allow you to securely connect to Exeter University network from other location such as your home.

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 Linux development ENVIRONMENT 2 3 References ubuntu documentation Kernel/Compile https://help.ubuntu.com/community/kernel/compile 3 4 Tools $ software-properties-gtk

More information

Android ROM Porting: A Review

Android ROM Porting: A Review MIT International Journal of Computer Science and Information Technology, Vol. 5, No. 2, August 2015, pp. 71-75 71 Android ROM Porting: A Review Shubham Raj Singh er.shubhamrajs@gmail.com Rameez Arshad

More information

IoTivity Development on ARTIK 530s

IoTivity Development on ARTIK 530s Getting Started Guide Sungdong Kim SAMSUNG IoTivity Development on ARTIK 530s G E T T I N G S T A R T E D G U I D E Version 1.0, October 24, 2018 Table of Contents Summary... 3 OCF and IoTivity... 3 The

More information

Git & Github Fundamental by Rajesh Kumar.

Git & Github Fundamental by Rajesh Kumar. Git & Github Fundamental by Rajesh Kumar About me Rajesh Kumar DevOps Architect @RajeshKumarIN www.rajeshkumar.xyz www.scmgalaxy.com 2 What is git Manage your source code versions Who should use Git Anyone

More information

TrinityCore Documentation

TrinityCore Documentation TrinityCore Documentation Release TrinityCore Developers February 21, 2016 Contents 1 Compiling TrinityCore 3 1.1 Requirements............................................... 3 1.2 Build Environment............................................

More information

MariaDB ColumnStore C++ API Building Documentation

MariaDB ColumnStore C++ API Building Documentation MariaDB ColumnStore C++ API Building Documentation Release 1.1.3-acf32cc MariaDB Corporation Feb 22, 2018 CONTENTS 1 Licensing 1 1.1 Documentation Content......................................... 1 1.2

More information

Tizen Platform Practice Part 3. Project. SKKU Embedded Software Lab.

Tizen Platform Practice Part 3. Project. SKKU Embedded Software Lab. 1 Tizen Platform Practice Part 3. Project Contents 2 Part 1. Overview Tizen Platform & Kernel Overview Development System Overview Appendix: Tizen Source Code Management Part 2. Setting Tizen Development

More information

Introduction to Pintos. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Introduction to Pintos. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University Introduction to Pintos Jin-Soo Kim (jinsookim@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu Welcome to Pintos! What is Pintos? An instructional operating system Developed

More information

Cross-compilation with Buildroot

Cross-compilation with Buildroot Instituto Superior de Engenharia do Porto Mestrado em Engenharia Eletrotécnica e de Computadores Arquitetura de Computadores Cross-compilation with Buildroot Introduction Buildroot is a tool that can be

More information

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS This tutorial shows the steps required to setup your Crowdcoin Masternode on a Linux server and run your wallet on a Windows operating system

More information

Parallel Programming

Parallel Programming Parallel Programming Installing Eclipse Parallel Tools Platform (PTP) (Linux Distributions) Preliminaries - Install Java Author B. Wilkinson - Modification date May 29, 2015 Java is needed for the Eclipse

More information

SCM-i.MX 6 Series Yocto Linux User's Guide

SCM-i.MX 6 Series Yocto Linux User's Guide NXP Semiconductors Document Number: SCMIMX6LRNUG User's Guide Rev. L4.1.15-2.0.0-ga, 04/2017 SCM-i.MX 6 Series Yocto Linux User's Guide 1. Introduction The NXP SCM Linux BSP (Board Support Package) leverages

More information

mangoh Red Getting Started WPx5xx + Linux Dev Machine + CLI

mangoh Red Getting Started WPx5xx + Linux Dev Machine + CLI mangoh Red Getting Started WPx5xx + Linux Dev Machine + CLI 41110481 Rev 3 Contents subject to change mangoh Red Getting Started Important Notice Limitation of Liability Patents Document details Copyright

More information

MAGPIE Installation Guide (version 1.0)

MAGPIE Installation Guide (version 1.0) MAGPIE Installation Guide (version 1.0) June 2017 Authors: Sophiane Senni, Pierre-Yves Péneau, Abdoulaye Gamatié 1 Contents 1 About this guide 3 2 Framework installation 4 2.1 Dependencies...................................

More information

Development Environment Embedded Linux Primer Ch 1&2

Development Environment Embedded Linux Primer Ch 1&2 Development Environment Embedded Linux Primer Ch 1&2 Topics 1) Systems: Host and Target 2) Host setup 3) Host-Target communication CMPT 433 Slides #3 Dr. B. Fraser 18-05-05 2 18-05-05 1 Host & Target Host

More information

DEVELOPMENT GUIDE AMOS-820. Linux BSP v

DEVELOPMENT GUIDE AMOS-820. Linux BSP v DEVELOPMENT GUIDE AMOS-820 Linux BSP v4.1.1 1.00-05242017-134700 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

CSCI 350 Virtual Machine Setup Guide

CSCI 350 Virtual Machine Setup Guide CSCI 350 Virtual Machine Setup Guide This guide will take you through the steps needed to set up the virtual machine to do the PintOS project. Both Macintosh and Windows will run just fine. We have yet

More information

SAROS MasterNode Guide V1.1

SAROS MasterNode Guide V1.1 SAROS MasterNode Guide V1.1 Pre-requisites Local Windows wallet holding at least 1501 SAROS coins Remote VPS Ubuntu 14.04 VPS (in this guide I am using a XS ordered from www.masterhash.us) OVERVIEW This

More information

Simulation Manager Configuration Guide

Simulation Manager Configuration Guide Cornell University College of Veterinary Medicine Student Training Simulation Project Simulation Manager Configuration Guide 2018-Oct-1 Version 1.9 Prepared by: I-Town Design David Weiner 117 Burleigh

More information

u-root: / with the convenience of scripting and the performance of compilation

u-root: / with the convenience of scripting and the performance of compilation u-root: / with the convenience of scripting and the performance of compilation Ron Minnich Google Andrey Mirtchovski Cisco Outline What u-root is Why we re doing it How it all works Try it! sudo docker

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

Introduction to Linux. Woo-Yeong Jeong Computer Systems Laboratory Sungkyunkwan University

Introduction to Linux. Woo-Yeong Jeong Computer Systems Laboratory Sungkyunkwan University Introduction to Linux Woo-Yeong Jeong (wooyeong@csl.skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu What is Linux? A Unix-like operating system of a computer What is an

More information

MV 4412 Android 4.0 Compilation

MV 4412 Android 4.0 Compilation MV 4412 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MV4412 Android Compilation.doc Date 2012. 7. 12 Satus Working Revision History Date Version Update Descriptions

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 ubuntu Linux Download https://www.ubuntu.com/download/desktop http://gofile.me/3qiyp/pj6fzmojf 2 3 VMware Workstation Player (optional) Download https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

More information

Lab 1 1 Due Wed., 2 Sept. 2015

Lab 1 1 Due Wed., 2 Sept. 2015 Lab 1 1 Due Wed., 2 Sept. 2015 CMPSC 112 Introduction to Computer Science II (Fall 2015) Prof. John Wenskovitch http://cs.allegheny.edu/~jwenskovitch/teaching/cmpsc112 Lab 1 - Version Control with Git

More information

Denial-of-Service (DoS) Attacks in an SDN Environment

Denial-of-Service (DoS) Attacks in an SDN Environment Denial-of-Service (DoS) Attacks in an SDN Environment Contents Experiment Task Design:... 3 Submission:... 3 Start the Experiment... 3 Conduct the Experiment... 6 Section 1.1: Installing Dependencies...

More information

Embedded Systems Programming

Embedded Systems Programming Embedded Systems Programming OS Linux - Toolchain Iwona Kochańska Gdansk University of Technology Embedded software Toolchain compiler and tools for hardwaredependent software developement Bootloader initializes

More information

Lab #9: Configuring A Linux File Server

Lab #9: Configuring A Linux File Server Lab #9 Page 1 of 6 Theory: Lab #9: Configuring A Linux File Server The Network File System (NFS) feature provides a means of sharing Linux file systems and directories with other Linux and UNIX computers

More information

Version Control. Software Carpentry Github s Hello World Git For Ages 4 And Up You need source code control now

Version Control. Software Carpentry Github s Hello World Git For Ages 4 And Up You need source code control now A version control system (VCS) is a tool or system for keeping track of changes in files. A primitive form of VCS would be making a copy of a file every time you want to make a new version of the file.

More information

DEVELOPMENT GUIDE VIA VAB-820. Android BSP v

DEVELOPMENT GUIDE VIA VAB-820. Android BSP v DEVELOPMENT GUIDE VIA VAB-820 Android BSP v5.0.9 1.00-12202018-135700 Copyright Copyright 2018 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted,

More information

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again:

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again: Storage Node Setup A storage node (or system as your scale) is a very important unit for an HPC cluster. The computation is often about the data it produces and keeping that data safe is important. Safe

More information

DEVELOPMENT GUIDE VAB-820. Android BSP v

DEVELOPMENT GUIDE VAB-820. Android BSP v DEVELOPMENT GUIDE VAB-820 Android BSP v5.0.6 1.01-08112017-095100 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

Software Installation Guide 2.4

Software Installation Guide 2.4 Software Installation Guide 2.4 Software Installation Guide μtca Edition i Revision history Revision Date Comments 0.8 February 2013 New layout ready for revision 0.9 February 2013 Screenshots updated

More information

Formatting 1. Commands starting with $ are Linux console commands on the host PC:

Formatting 1. Commands starting with $ are Linux console commands on the host PC: Custom Kernel Guide by Arrvindh Shriraman Last update: April 1, 2016 This document guides the user through: 1. Downloading and compiling the Linux kernel's source code. 2. Running a custom kernel inside

More information

Raspberry Pi Kernel Install. By: Daniel Rizko

Raspberry Pi Kernel Install. By: Daniel Rizko Raspberry Pi Kernel Install By: Daniel Rizko Introduction In this presentation I will be demonstrating three things. 1. Building a cross compiler from scratch using crosstool-ng for Raspberry Pi hardware.

More information

Installing and Using Docker Toolbox for Mac OSX and Windows

Installing and Using Docker Toolbox for Mac OSX and Windows Installing and Using Docker Toolbox for Mac OSX and Windows One of the most compelling reasons to run Docker on your local machine is the speed at which you can deploy and build lab environments. As a

More information

POSTouch Open Source Driver (OSE) Installation Guide

POSTouch Open Source Driver (OSE) Installation Guide POSTouch Open Source Driver (OSE) Installation Guide 2012/5/4 1. Confirm right driver before start OSE driver version x-window version request V1.0.0.7 before v1.10 V1.0.0.8 v1.10 or above If you are running

More information

Intel Do-It-Yourself Challenge Rebuild (with) Yocto Nicolas Vailliet

Intel Do-It-Yourself Challenge Rebuild (with) Yocto Nicolas Vailliet Intel Do-It-Yourself Challenge Rebuild (with) Yocto Nicolas Vailliet www.intel-software-academic-program.com paul.guermonprez@intel.com Intel Software 2014-02-01 Why? Should I? Yocto? Is Yocto a distribution?

More information

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Configuration Guide for Unix/Linux

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Configuration Guide for Unix/Linux The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING VPN Configuration Guide for Unix/Linux Table of Contents VPN Configuration Guide for Unix/Linux... 1 Pulse Secure Client for Ubuntu

More information

D1 - Embedded Linux. Building and installing an embedded and real-time Linux platform. Objectives. Course environment.

D1 - Embedded Linux. Building and installing an embedded and real-time Linux platform. Objectives. Course environment. Training Embedded Linux: Building and installing an embedded and real-time Linux platform - Operating Systems: Linux D1 - Embedded Linux Building and installing an embedded and real-time Linux platform

More information

Android Studio Setup Procedure

Android Studio Setup Procedure Android Studio Setup Procedure System Requirements : Windows OS Linux OS Mac OS Microsoft Windows 7/8/10 (32- or 64-bit) 3 GB RAM minimum, 8 GB RAM recommended; plus 1 GB for the Android Emulator 2 GB

More information

swiftenv Documentation

swiftenv Documentation swiftenv Documentation Release 1.3.0 Kyle Fuller Sep 27, 2017 Contents 1 The User Guide 3 1.1 Installation................................................ 3 1.2 Getting Started..............................................

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on a fresh installations of

Installation of Apache OpenMeetings on Ubuntu LTS. This tutorial is made based on a fresh installations of Installation of Apache OpenMeetings 4.0.2 on Ubuntu 18.04 LTS This tutorial is made based on a fresh installations of ubuntu-mate-18.04-beta1-desktop-amd64.iso It is tested with positive result. We will

More information

SAS Event Stream Processing for Edge Computing 4.3: Deployment Guide

SAS Event Stream Processing for Edge Computing 4.3: Deployment Guide SAS Event Stream Processing for Edge Computing 4.3: Deployment Guide SAS Documentation June 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2017. SAS Event Stream

More information

User Guide Yocto Linux. Board Support Package For Intel Quark

User Guide Yocto Linux. Board Support Package For Intel Quark User Guide Yocto Linux Board Support Package For Intel Quark 1 Table of Contents Table of Contents... 2 1. Getting Started... 3 1.1 Prerequisites... 4 1.1.1 To install required packages... 4 1.1.2 To install

More information

Android System Development Training 4-day session

Android System Development Training 4-day session Android System Development Training 4-day session Title Android System Development Training Overview Understanding the Android Internals Understanding the Android Build System Customizing Android for a

More information

Uninstalling And Manually Install Vmware Tools Ubuntu Guest

Uninstalling And Manually Install Vmware Tools Ubuntu Guest Uninstalling And Manually Install Vmware Tools Ubuntu 12.04 Guest VMware Tools in an Ubuntu 14.04 Guest. Use the guest OS provided Open VM Tools or install the VMware Tools, as needed. Installing the additional

More information

MOOSE-Based Application Development on GitLab

MOOSE-Based Application Development on GitLab MOOSE-Based Application Development on GitLab MOOSE Team Idaho National Laboratory February 22, 2016 Introduction The intended audience for this talk is developers of INL-hosted, MOOSE-based applications.

More information

IBM z Systems Development and Test Environment Tools User's Guide IBM

IBM z Systems Development and Test Environment Tools User's Guide IBM IBM z Systems Development and Test Environment Tools User's Guide IBM ii IBM z Systems Development and Test Environment Tools User's Guide Contents Chapter 1. Overview......... 1 Introduction..............

More information

Package Management Over Tor

Package Management Over Tor Package Management Over Tor Alexander Nasonov alnsn@netbsd.org 1 The NetBSD Project 2 XMM Swap Ltd February 2018, FOSDEM, Brussels About Myself Member of the NetBSD project Author of bpfjit and aes-xts

More information

The instructions in this document are applicable to personal computers running the following Operating Systems:

The instructions in this document are applicable to personal computers running the following Operating Systems: Preliminary Notes The instructions in this document are applicable to personal computers running the following Operating Systems: Microsoft Windows from version 7 up to 10 Apple Mac OS X from versions

More information

Windows cold wallet managing Linux VPS connected Masternode

Windows cold wallet managing Linux VPS connected Masternode Discount Coin Masternodes How to setup a Discount Coin Masternode Single and Multiple masternodes Windows cold wallet managing Linux VPS connected Masternode Version 1.0.2 The DiscountCoin Core Team February

More information

Vaango Installation Guide

Vaango Installation Guide Vaango Installation Guide Version Version 17.10 October 1, 2017 The Utah Vaango team and Biswajit Banerjee Copyright 2015-2017 Parresia Research Limited The contents of this manual can and will change

More information

SUB1X Masternode Setup Guide: LINUX Version

SUB1X Masternode Setup Guide: LINUX Version SUB1X Masternode Setup Guide: LINUX Version What you will need for this guide: 1) Local computer with Windows, MacOS or Linux. 2) Remote server VPS [Vultr.com or AWS for instance] 3) PuTTY to configure

More information

Ingenic. Newton Android Development Guide

Ingenic. Newton Android Development Guide Ingenic Date: Apr. 2014 Ingenic Copyright Ingenic Semiconductor Co. Ltd 2014. All rights reserved. Release history Date Revis ion Apr. 2014 1.0 First release Change Disclaimer This documentation is provided

More information

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1 SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim.

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim. Head Node Make sure that you have completed the section on Precursor Steps and Storage. Key parts of that are necessary for you to continue on this. If you have issues, please let an instructor know to

More information

Configuring and Building Palacios/Linux

Configuring and Building Palacios/Linux Configuring and Building Palacios/Linux 1/3/2011 1. Check out the Palacios repository The central Palacios repository is directly accessible from newskysaw.cs.northwestern.edu and newbehemoth.cs.northwestern.edu.

More information

Revision Control and GIT

Revision Control and GIT Revision Control and GIT On UD HPC Community Clusters William Totten Network & Systems Services Why use revision control You can go back in time It makes it easy to try things out which might not work

More information

OpenStack Havana All-in-One lab on VMware Workstation

OpenStack Havana All-in-One lab on VMware Workstation OpenStack Havana All-in-One lab on VMware Workstation With all of the popularity of OpenStack in general, and specifically with my other posts on deploying the Rackspace Private Cloud lab on VMware Workstation,

More information

Centreon SSH Connector Documentation

Centreon SSH Connector Documentation Centreon SSH Connector Documentation Release 1.1.2 Centreon November 24, 2015 Contents i ii Centreon SSH Connector is a free software from Centreon available under the Apache Software License version

More information

Git Command Line Tool Is Not Installed

Git Command Line Tool Is Not Installed Git Command Line Tool Is Not Installed Make Sure It Is Accessible On Y Error: "git" command line tool is not installed: make sure it is accessible on y I have installed git tool. even in git bash its showing

More information

Introduction to Git and Github Repositories

Introduction to Git and Github Repositories Introduction to Git and Github Repositories Benjamin Audren École Polytechnique Fédérale de Lausanne 29/10/2014 Benjamin Audren (EPFL) CLASS/MP MP runs 29/10/2014 1 / 16 Version Control survey Survey Who

More information