SlideShare a Scribd company logo
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

More Related Content

What's hot

Linux booting sequence
Linux booting sequenceLinux booting sequence
Linux booting sequence
kuldeep singh shishodia
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting Process
Gaurav Sharma
 
Booting Process OS
Booting Process OSBooting Process OS
Booting Process OS
anilinvns
 
Linux booting process
Linux booting processLinux booting process
Linux booting process
Prashant Hegde
 
Boot process: BIOS vs UEFI
Boot process: BIOS vs UEFIBoot process: BIOS vs UEFI
Boot process: BIOS vs UEFI
Alea Soluciones, S.L.
 
Troubleshooting linux booting process
Troubleshooting linux booting processTroubleshooting linux booting process
Troubleshooting linux booting process
Manolis Kartsonakis
 
Linux installation and booting process
Linux installation and booting processLinux installation and booting process
Linux installation and booting process
Siddharth Jain
 
Booting & shut down,
Booting & shut down,Booting & shut down,
Booting & shut down,
Bhushan Pawar -Java Trainer
 
Linux Boot Process
Linux Boot ProcessLinux Boot Process
Linux Boot Process
darshhingu
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot process
Hari Shankar
 
Linux boot process
Linux boot processLinux boot process
Linux boot process
Archana Chandrasekharan
 
Understanding The Boot Process
Understanding The Boot ProcessUnderstanding The Boot Process
Understanding The Boot Process
Dominique Cimafranca
 
Kernel Configuration and Compilation
Kernel Configuration and CompilationKernel Configuration and Compilation
Kernel Configuration and Compilation
Bud Siddhisena
 
6 stages of linux boot process
6 stages of linux boot process6 stages of linux boot process
6 stages of linux boot process
Teja Bheemanapally
 
System Booting Process overview
System Booting Process overviewSystem Booting Process overview
System Booting Process overview
RajKumar Rampelli
 
Boot process
Boot processBoot process
Boot process
Salman Memon
 
Development platform virtualization using qemu
Development platform virtualization using qemuDevelopment platform virtualization using qemu
Development platform virtualization using qemu
Premjith Achemveettil
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
Dhaval Kaneria
 
5. boot process
5. boot process5. boot process
5. boot process
Marian Marinov
 
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
Hardeep Bhurji
 

What's hot (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
 

Viewers also liked

東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談東海岸拓荒記:SITCON推廣甘苦談
東海岸拓荒記:SITCON推廣甘苦談
Eunice Lin
 
104學年度學士班課規說明會
104學年度學士班課規說明會104學年度學士班課規說明會
104學年度學士班課規說明會
Eunice Lin
 
6.04
6.046.04
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 taxslideshow
Lauren Cappello
 
SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始SITCON新手村:從夏令營開始
SITCON新手村:從夏令營開始
Eunice Lin
 
Geld verdienen met social media
Geld verdienen met social mediaGeld verdienen met social media
Geld verdienen met social media
ArtikelMarketingExtreme
 
Jackson Hewitt for Session 1
Jackson Hewitt for Session 1Jackson Hewitt for Session 1
Jackson Hewitt for Session 1
Lauren Cappello
 
Web260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdfWeb260 ip5 cappello lauren pdf
Web260 ip5 cappello lauren pdf
Lauren 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
 

Viewers also liked (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 to Ubuntu初體驗:脫離邪惡微軟帝國吧!_150606

Grub and dracut ii
Grub and dracut iiGrub and dracut ii
Grub and dracut ii
plarsen67
 
Linux kernel
Linux kernelLinux kernel
Linux boot process – explained
Linux boot process – explainedLinux boot process – explained
Linux boot process – explained
LinuxConcept
 
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
Sourabh 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 involved
divyammo
 
Ch04 system administration
Ch04 system administration Ch04 system administration
Ch04 system administration
Raja Waseem Akhtar
 
Ch04
Ch04Ch04
Linux Kernel Development
Linux Kernel DevelopmentLinux Kernel Development
Linux Kernel Development
Priyank 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 it
Behzad Soltaniyan Hemat
 
Release notes 3_d_v61
Release notes 3_d_v61Release notes 3_d_v61
Release notes 3_d_v61
sundar sivam
 
Introduction to Linux Kernel Development
Introduction to Linux Kernel DevelopmentIntroduction to Linux Kernel Development
Introduction to Linux Kernel Development
Levente Kurusa
 
101 1.2 boot the system
101 1.2 boot the system101 1.2 boot the system
101 1.2 boot the system
Acácio Oliveira
 
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
Sourabh Singh Tomar
 
Linux Booting Process
Linux Booting ProcessLinux Booting Process
Linux Booting Process
Rishabh5121993
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
Opersys inc.
 
Linux
LinuxLinux
Linux
LinuxLinux
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
NETWAYS
 
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 Project
 
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 to 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
 
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
 
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
 
install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -
 

Recently uploaded

Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Vivekanand Anglo Vedic Academy
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
 

Recently uploaded (20)

Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
 

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