SlideShare una empresa de Scribd logo
1 de 72
Descargar para leer sin conexión
Ubuntu初體驗
脫離邪惡微軟帝國吧!
ws育慈、VAIZ
SITCON花蓮定期課程#11
2015-06-06
About speaker
● 林育慈(ws育慈)
● 博班學姊、場務女王
● SITCON Founder
● SITCON@Hualien Founder
● 莊佾庭(VAIZ)
● SITCON@Hualien Founder
● ……
Before we start...
● VirtualBox
● Ubuntu 14.04
● http://134.208.3.22
Outline
● Operating System?
● Microsoft Windows
● Mac OS X
● Unix/Linux
● Ubuntu
Operating System?
Microsoft Windows
Mac OS X
Unix / Linux
應用程式 Ingres SDB Kangatools User
Level
系統程式 Compiler Text Editor Linker Interpreter
--------------- System Call Interface --------
核心程式 Operating System Kernel Kernel
Level硬體驅動程式 Driver
硬體 Hardware
此頁之後都是附錄(茶
………所以接下來都是Live Demo了
相信大家的iso檔應該已經抓完了(點頭
Linux 環境架設
102-1 Operating System
林超群
VirtualBox
https://www.virtualbox.org/
Install VM
Ubuntu iso
If you have blackscreen problem
Solution to the problem
Terminal model :ctrl+alt+f1
4.sudo apt-get install virtualbox-guest-
dkms
Program editer
vim
Call terminal (ctrl+alt+t)
Set Java and Environment
sudo apt-get install openjdk-7-jdk
Check java install command :
1.java -version
2.javac -version
Set Environment
1.Change the root passwd use command :sudo passwd root
2.login root command:su
Find the path jdk you install ex:/usr/lib/jvm/java-7-openjdk-i386
Find the file /root/.bashrc use vim edit and add :
export PATH=/usr/lib/jvm/java-7-openjdk-i386/bin:$PATH 
export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-i386" 
export CLASSPATH=.:/usr/lib/jvm/java-7-openjdk-i386
Example 1
Hello word.c
Use command open the program editor : vim filename.filetype
Write the program hello_word
Leave and save command is “ esc + :wq “
Compiler :
Comand :
gcc –c hello_word.c
gcc –o hello_word hello_word.o
Program execution and result : (./filename)
Example 2
Hello word.java
Use command open the program editor : vim filename.filetype
Write the program hello_word
Leave and save command is “ esc + :wq “
Compiler
Comand :
javac hello_word.java
Program execution and result : (java filename)
How to build a kernel
103-1 Operating System
黃彥豪
2014/10/28
What’s a kernel
“The one program running at all times on the
computer”
The program control hardware!
-
-
Why we need to rebuild kernel
Make process working, you need kernel supported.
Kernel is a system file.
There are different module which can drive hardware.
What you want your kernel do
Step
1. System checking
2. Setting config
3. Making Kernel / Image / Initial Ram Disk
4. Edit grub
5. Reboot and checking
1.System checking
2.Setting config
3.Making Kernel / Image / Initial Ram Disk
4.Edit grub
5.Reboot and checking
Get start
Open terminal and become root user (#su)
If you using Debian or Ubuntu.
In default those systems may not have root account.
--Using root (#sudo su)
Checking version (#uname -r)
Checking hardware(#lspci)
About version
2.5.x VS 2.6.x (2.5.x is development of 2.6)
2.4.x VS 2.6.x (Is two different version)
http://www.kernel.org
#cd /(where you want to place this bz2-file)
(view ftp://linux.cis.nctu.edu.tw/kernel/linux/kernel/ before you start )
#wget ftp://linux.cis.nctu.edu.tw/kernel/linux/kernel/vx.x/linux-x.x.xx.xx.tar.bz2
(according to your version)
Cont.
#tar –jxvf linux-x.x.xx.xx.tar.bz2 –C /usr/src/kernels/
#cd /usr/src/kernels/
#ls
linux-x.x.xx.xx
#cd linux-x.x.xx.xx
#ls
Cont.
#make mrproper (clean residues file ex: *.o)
note: it will clean extra file include old config data
#make clean (target file only)
Make XXconfig
make menuconfig
make oldconfig (if you already have ./.config)
make config (one by one)
make xconfig (X window)
make gconfig (Gnome)
Make config Cont.
#make menuconfig
before this you may need
#yum /apt-get install gcc (CentOS)
#yum install ncurses-devel (CentOS)
#apt-get install libncurses5-dev (Ubuntu)
According to your operating system
1.System checking
2.Setting config
3.Making Kernel / Image / Initial Ram Disk
4.Edit grub
5.Reboot and checking
Control
Use only ↑ ↓ ← → <Enter> <Space>
y includes
n excludes
m modularizes
----> other option
<*> built-in
<M> module
[ ] / < > excluded /module capable
Note: Don’t use <Esc> to Exit
Each Option
Different version have different module
Same module have different uses in different version
LOOK HELP!
Notice
Processor type and features ---->
Processor family ← This is very important.
MAKE SURE WHAT YOU CHOOSE
Device Drivers ← according your device
“Make your own kernel”
Choose default if you don’t really sure about it.
Make sure you view all of them
If you choose something that your hardware doesn’t exist ➔nothing
effect, your kernel can still work
If you choose something that your kernel doesn’t support ➔ rebuild it
1.System checking
2.Setting config
3.Making Kernel / Image / Initial Ram Disk
4.Edit grub
5.Reboot and checking
Make
#make clean
#make bzImage
#make modules
(Both of them will take a while)
#make modules_install
Copy
#cp /usr/src/kernels/linux-x.x.xx.xx/arch/x86/boot/bzImage 
> /boot/vmlinuz-x.x.xx.xx
↑
Your kernel
# cp /usr/src/kernels/linux-x.x.xx.xx/.config 
> /boot/config-x.x.xx.xx
↑
Config file
Initial Ram Disk (initrd)
#mkinitrd –v /boot/initrd-x.x.xx.xx.img x.x.xx.xx
The initial RAM disk (initrd) is an initial root file system that is mounted prior
to when the real root file system is available.
1.System checking
2.Setting config
3.Making Kernel / Image / Initial Ram Disk
4.Edit grub
5.Reboot and checking
Edit Grub for CentOS
#vi /boot/grub/menu.list
title CentOS testing kernel from
root (hd0,0)
kernel /boot/vmlinuz-2.6.xx.xx ro root=xxxxxxxxxxxxxxxxxx rhgb quiet
initrd /boot/initrd-2.6.xx.xx.img
Edit Grub for Ubuntu
#update-grub
(#vi /etc/default/grub)
GRUB_HIDDEN_TIMEOUT=0
1.System checking
2.Setting config
3.Making Kernel / Image / Initial Ram Disk
4.Edit grub
5.Reboot and checking
Reboot
#uname –a
Q&A
Reference
http://linux.vbird.org/linux_basic/0540kernel.php#config_config

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Linux booting sequence
Linux booting sequenceLinux booting sequence
Linux booting sequence
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting Process
 
Booting Process OS
Booting Process OSBooting Process OS
Booting Process OS
 
Linux booting process
Linux booting processLinux booting process
Linux booting process
 
Boot process: BIOS vs UEFI
Boot process: BIOS vs UEFIBoot process: BIOS vs UEFI
Boot process: BIOS vs UEFI
 
Troubleshooting linux booting process
Troubleshooting linux booting processTroubleshooting linux booting process
Troubleshooting linux booting process
 
Linux installation and booting process
Linux installation and booting processLinux installation and booting process
Linux installation and booting process
 
Booting & shut down,
Booting & shut down,Booting & shut down,
Booting & shut down,
 
Linux Boot Process
Linux Boot ProcessLinux Boot Process
Linux Boot Process
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot process
 
Linux boot process
Linux boot processLinux boot process
Linux boot process
 
Understanding The Boot Process
Understanding The Boot ProcessUnderstanding The Boot Process
Understanding The Boot Process
 
Kernel Configuration and Compilation
Kernel Configuration and CompilationKernel Configuration and Compilation
Kernel Configuration and Compilation
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot process
 
System Booting Process overview
System Booting Process overviewSystem Booting Process overview
System Booting Process overview
 
Boot process
Boot processBoot process
Boot process
 
Development platform virtualization using qemu
Development platform virtualization using qemuDevelopment platform virtualization using qemu
Development platform virtualization using qemu
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
 
5. boot process
5. boot process5. boot process
5. boot process
 
An Insight into the Linux Booting Process
An Insight into the Linux Booting ProcessAn Insight into the Linux Booting Process
An Insight into the Linux Booting Process
 

Destacado

東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談Eunice Lin
 
104學年度學士班課規說明會
104學年度學士班課規說明會104學年度學士班課規說明會
104學年度學士班課規說明會Eunice Lin
 
56711633 near-field-communication (1)
56711633 near-field-communication (1)56711633 near-field-communication (1)
56711633 near-field-communication (1)karthik4803
 
開開心心上網去:淺談網路安全
開開心心上網去:淺談網路安全開開心心上網去:淺談網路安全
開開心心上網去:淺談網路安全Eunice Lin
 
Session 1 review2013 basic taxslideshow
Session 1 review2013 basic taxslideshowSession 1 review2013 basic taxslideshow
Session 1 review2013 basic taxslideshowLauren Cappello
 
SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始Eunice Lin
 
Jackson Hewitt for Session 1
Jackson Hewitt for Session 1Jackson Hewitt for Session 1
Jackson Hewitt for Session 1Lauren Cappello
 
Web260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdfWeb260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdfLauren Cappello
 
141031_Lagrange Relaxation Based Method for the QoS Routing Problem
141031_Lagrange Relaxation Based Method for the QoS Routing Problem 141031_Lagrange Relaxation Based Method for the QoS Routing Problem
141031_Lagrange Relaxation Based Method for the QoS Routing Problem Eunice Lin
 

Destacado (11)

東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談
 
104學年度學士班課規說明會
104學年度學士班課規說明會104學年度學士班課規說明會
104學年度學士班課規說明會
 
6.04
6.046.04
6.04
 
56711633 near-field-communication (1)
56711633 near-field-communication (1)56711633 near-field-communication (1)
56711633 near-field-communication (1)
 
開開心心上網去:淺談網路安全
開開心心上網去:淺談網路安全開開心心上網去:淺談網路安全
開開心心上網去:淺談網路安全
 
Session 1 review2013 basic taxslideshow
Session 1 review2013 basic taxslideshowSession 1 review2013 basic taxslideshow
Session 1 review2013 basic taxslideshow
 
SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始
 
Geld verdienen met social media
Geld verdienen met social mediaGeld verdienen met social media
Geld verdienen met social media
 
Jackson Hewitt for Session 1
Jackson Hewitt for Session 1Jackson Hewitt for Session 1
Jackson Hewitt for Session 1
 
Web260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdfWeb260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdf
 
141031_Lagrange Relaxation Based Method for the QoS Routing Problem
141031_Lagrange Relaxation Based Method for the QoS Routing Problem 141031_Lagrange Relaxation Based Method for the QoS Routing Problem
141031_Lagrange Relaxation Based Method for the QoS Routing Problem
 

Similar a Ubuntu初體驗:脫離邪惡微軟帝國吧!_150606

Grub and dracut ii
Grub and dracut iiGrub and dracut ii
Grub and dracut iiplarsen67
 
Linux boot process – explained
Linux boot process – explainedLinux boot process – explained
Linux boot process – explainedLinuxConcept
 
Crafting GNU/ linux distributions for embedded target using Builroot
Crafting GNU/ linux distributions for embedded target using BuilrootCrafting GNU/ linux distributions for embedded target using Builroot
Crafting GNU/ linux distributions for embedded target using BuilrootSourabh Singh Tomar
 
Linux booting process, Dual booting, Components involved
Linux booting process, Dual booting, Components involvedLinux booting process, Dual booting, Components involved
Linux booting process, Dual booting, Components involveddivyammo
 
Linux Kernel Development
Linux Kernel DevelopmentLinux Kernel Development
Linux Kernel DevelopmentPriyank Kapadia
 
7-compiling the Linux kerne pdf type is it
7-compiling the Linux kerne pdf type is it7-compiling the Linux kerne pdf type is it
7-compiling the Linux kerne pdf type is itBehzad Soltaniyan Hemat
 
Release notes 3_d_v61
Release notes 3_d_v61Release notes 3_d_v61
Release notes 3_d_v61sundar sivam
 
Introduction to Linux Kernel Development
Introduction to Linux Kernel DevelopmentIntroduction to Linux Kernel Development
Introduction to Linux Kernel DevelopmentLevente Kurusa
 
Crafting GNU/Linux distributions for Embedded target from Scratch/Source
Crafting GNU/Linux distributions for Embedded target from Scratch/SourceCrafting GNU/Linux distributions for Embedded target from Scratch/Source
Crafting GNU/Linux distributions for Embedded target from Scratch/SourceSourabh Singh Tomar
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux DevelopersOpersys inc.
 
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph Galuschka
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph GaluschkaOpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph Galuschka
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph GaluschkaOpenNebula Project
 
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaOpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaNETWAYS
 
install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -Naoto MATSUMOTO
 

Similar a Ubuntu初體驗:脫離邪惡微軟帝國吧!_150606 (20)

Grub and dracut ii
Grub and dracut iiGrub and dracut ii
Grub and dracut ii
 
Linux kernel
Linux kernelLinux kernel
Linux kernel
 
Linux boot process – explained
Linux boot process – explainedLinux boot process – explained
Linux boot process – explained
 
Crafting GNU/ linux distributions for embedded target using Builroot
Crafting GNU/ linux distributions for embedded target using BuilrootCrafting GNU/ linux distributions for embedded target using Builroot
Crafting GNU/ linux distributions for embedded target using Builroot
 
Linux booting process, Dual booting, Components involved
Linux booting process, Dual booting, Components involvedLinux booting process, Dual booting, Components involved
Linux booting process, Dual booting, Components involved
 
Ch04 system administration
Ch04 system administration Ch04 system administration
Ch04 system administration
 
Ch04
Ch04Ch04
Ch04
 
Linux Kernel Development
Linux Kernel DevelopmentLinux Kernel Development
Linux Kernel Development
 
7-compiling the Linux kerne pdf type is it
7-compiling the Linux kerne pdf type is it7-compiling the Linux kerne pdf type is it
7-compiling the Linux kerne pdf type is it
 
Release notes 3_d_v61
Release notes 3_d_v61Release notes 3_d_v61
Release notes 3_d_v61
 
Introduction to Linux Kernel Development
Introduction to Linux Kernel DevelopmentIntroduction to Linux Kernel Development
Introduction to Linux Kernel Development
 
101 1.2 boot the system
101 1.2 boot the system101 1.2 boot the system
101 1.2 boot the system
 
Crafting GNU/Linux distributions for Embedded target from Scratch/Source
Crafting GNU/Linux distributions for Embedded target from Scratch/SourceCrafting GNU/Linux distributions for Embedded target from Scratch/Source
Crafting GNU/Linux distributions for Embedded target from Scratch/Source
 
Linux Booting Process
Linux Booting ProcessLinux Booting Process
Linux Booting Process
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
 
Linux
LinuxLinux
Linux
 
Linux
LinuxLinux
Linux
 
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph Galuschka
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph GaluschkaOpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph Galuschka
OpenNebulaConf 2014 - CentOS, QA and OpenNebula - Christoph Galuschka
 
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph GaluschkaOpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
OpenNebula Conf 2014: CentOS, QA an OpenNebula - Christoph Galuschka
 
install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -
 

Último

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 

Último (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 

Ubuntu初體驗:脫離邪惡微軟帝國吧!_150606