The document discusses containerd, a core container runtime used with various orchestration frameworks, and highlights its CNFC graduation status and integration with platforms like Docker and Kubernetes. It details features of containerd, including lazy pulling, runtime options, and plugins such as the stargz snapshotter, enhancing image management and performance. Furthermore, it references multiple resources and ongoing developments related to containerd's architecture and functionalities.
The document discusses containerd, a core container runtime used with various orchestration frameworks, and highlights its CNFC graduation status and integration with platforms like Docker and Kubernetes. It details features of containerd, including lazy pulling, runtime options, and plugins such as the stargz snapshotter, enhancing image management and performance. Furthermore, it references multiple resources and ongoing developments related to containerd's architecture and functionalities.
The document discusses hacking and customizing ARM mobile devices on Linux, featuring various devices like Nexus7 and Raspberry Pi. It addresses topics such as creating customized Linux OS for ARM devices, tools for emulation, and methods to utilize Debian on Android without root privileges. The presentation, given by Kenji Shimono at a conference in Taiwan, emphasizes the growing utility of ARM devices and their adaptability for various applications, including remote desktop and multi-platform functionality.
This short document promotes creating presentations using Haiku Deck on SlideShare. It encourages the reader to get started making their own Haiku Deck presentation by providing a button to click to begin the process. The document is advertising the creation of presentations on Haiku Deck and SlideShare.
Hacking with x86 Windows Tablet and mobile devices on openSUSE #opensuseasia17Netwalker lab kapper
This is openSUSE Asia Summit 2017 presentation materials.
I installed openSUSE a lot of mobile devices.
So let's install and play openSUSE!
2 in 1 Language English and Japanese.
#opensuse #opensuseja
Hacking with x86 Windows Tablet and mobile devices on Linux #FOSSASIANetwalker lab kapper
This is my prasentations about Fossasia summit 2018 in Singapore.
Mainline Kernel and Linux is too improving it on Windows Tablet.
Let's install and hacking Linux on Tablet, in your color.
はじめてUSBメモリへLinuxをインストールする方法 Beginner for install Linux in USB memory in 2021Netwalker lab kapper
The document outlines a presentation on installing Linux on USB memory, targeting beginners in 2021. It includes a self-introduction of the speaker, recent activities in hacking Linux on various devices, and specific instructions for using USB memory for Linux installation. Additionally, it covers recommendations for suitable operating systems, installation procedures, and troubleshooting tips like disabling secure boot and using USB 3.0 for better performance.
OSC 2020 online/kyotoで発表した資料です。
前に作った資料を修正加筆しました。
rEFIndの削除方法とか、UEFI32bitとか
必要な情報を多数追加しました。
発表動画はOSPNのYoutubeのサイトに公開されています。
是非ご感想をよろしくお願いいたします。
Thank you for your viewing.
Beginner for install Linux and *BSD in the inexpensive ARM and Intel based mo...Netwalker lab kapper
The document is a presentation by Kenji Shimono at COSCUP 2020 discussing the installation of Linux and *BSD on inexpensive ARM and Intel-based mobile devices. It covers various activities, models, and methods for installing different operating systems on devices like Nexus 7, Intel UMPC, and MacBook, while providing recommendations for device acquisition in Taiwan. It emphasizes the low-cost possibilities of running Linux on a range of devices and highlights the differences between Linux communities in Taiwan and Japan.
Hacking the third Smartphone OS and Some Mobile device in #COSCUP 2019 第三款智能...Netwalker lab kapper
This document summarizes Kenji Shimono's presentation on hacking third party smartphone operating systems and mobile devices at COSCUP 2019. The presentation covered installing various Linux distributions like Ubuntu, Debian, ArchLinux, and BSD variants on older Android smartphones and Windows tablets. It discussed hacking devices with Intel, Allwinner, Rockchip and Amlogic processors. It also provided details on installing third party mobile operating systems like SailfishOS, UBPorts, PostmarketOS on smartphones like the Nexus 5 to reuse older devices.
Hacking with x86 Windows Tablet and mobile devices on Debian #debconf18Netwalker lab kapper
The document is a presentation by Kenji Shimono at DebConf18 focused on hacking Linux on x86 Windows tablets and mobile devices using Debian. It discusses the installation of Debian on various tablet devices, compares Windows tablets to Android tablets, and outlines the advantages and challenges of using Linux on these platforms. Key topics include support for multi-architecture, bootloader issues, and the potential for using inexpensive Windows tablets for Linux experimentation.
2. 2
自己紹介 Self Introduction
●
My name: Kapper
●
Twitter account:@kapper1224
●
HP:http://kapper1224.sakura.ne.jp
●
Slideshare:
●
My Hobby:Linux、*BSD、and Mobile ARM Devices
●
My favorite words:Record than experiment important
●
Test Model:Netwalker(PC-Z1,T1)、Nokia N900、DynabookAZ、RaspberryPi
Nexus7(2012、2013)、Hercules eCAFE EX HD、Jetson TK-1、
OpenPandora、ARM Chromebook、ZTE OPEN C(FirefoxOS)
台湾Android電子辞書 無敵CD-920、CD-928
●
Recent Activity:
Netwalker on the Linux from Scratch.
Hacking of Android Nexus7.
I have recently often use the ARM Chromebook.
31. 31
Zygoteを落としてXサーバを使う
●
Kill Android GUI
setprop ctl.stop media & setprop ctl.stop zygote
●
Restart Android GUI
setprop ctl.start media & setprop ctl.start zygote
●
#mount chroot img;cd into folder and other mounts
mount -o loop -t ext4 debian_arm.img deb
cd deb
busybox mount --bind /dev dev
mount -t devpts devpts dev/pts
mount -t proc proc proc
mount -t sysfs sysfs sys
chroot . /bin/bash
●
#and link fb0
ln -s /dev/graphics/fb0 /dev/fb0
startx -- vt1 &
●
#find display
cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; don
●
#set display
export DISPLAY=:1
32. 32
Chroot環境を自分で構築してみる
●
初期設定のAndroidにchrootは出来ないので、
USB経由かSDCard経由にインストール。
●
端末からchrootコマンドで起動。
sudo debootstrap --arch=armhf --variant=minbase --foreign
wheezy /media/PHONE CARD/debian
http://http.debian.net/debian
export SDCARD=/sdcard
export ROOT=$SDCARD/debian
export
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:
$PATH
export HOME=/root
mount -o remount,exec,dev,suid $SDCARD
for f in dev dev/pts proc sys ; do mount -o bind /$f $ROOT/$f ; done
chroot $ROOT /bin/bash -l
debootstrap/debootstrap --second-stage