comparison seminar2013/0430.html @ 2:7f4128b2369a

update seminar slides
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Tue, 04 Jun 2013 17:15:27 +0900
parents
children
comparison
equal deleted inserted replaced
1:d3f740120b55 2:7f4128b2369a
1 <!--
2 Google IO 2012 HTML5 Slide Template
3
4 Authors: Eric Bidelman <ebidel@gmail.com>
5 Luke Mahé <lukem@google.com>
6
7 URL: https://code.google.com/p/io-2012-slides
8 -->
9 <!DOCTYPE html>
10 <html>
11 <head>
12 <title>Presentation</title>
13 <meta charset="utf-8">
14 <meta http-equiv="X-UA-Compatible" content="chrome=1">
15 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
16 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
17 <!--This one seems to work all the time, but really small on ipad-->
18 <!--<meta name="viewport" content="initial-scale=0.4">-->
19 <meta name="apple-mobile-web-app-capable" content="yes">
20 <link rel="stylesheet" media="all" href="css/default.css">
21 <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css">
22 <base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
23 <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script>
24 </head>
25 <body style="opacity: 0">
26
27 <slides class="layout-widescreen">
28
29 <!--
30 <slide class="logoslide nobackground">
31 <article class="flexbox vcenter">
32 <span><img src="../io2012slides/images/google_developers_logo.png"></span>
33 </article>
34 </slide>
35 -->
36
37 <slide class="title-slide segue nobackground">
38 <aside class="gdbar"><img src="../images/concurrent.png"></aside>
39 <!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
40 <hgroup class="auto-fadein">
41 <h1 data-config-title><!-- populated from slide_config.json --></h1>
42 <h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
43 <p data-config-presenter><!-- populated from slide_config.json --></p>
44 </hgroup>
45 </slide>
46
47 <slide>
48 <hgroup>
49 <h2>研究目的</h2>
50 </hgroup>
51 <article>
52 <ul>
53 <li>動作が軽く、落ちにくいカーネルを実装する</li>
54 <li>ブートが最速で、コンパクトなカーネルを実装する</li>
55 <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li>
56 </ul>
57 </article>
58 </slide>
59
60 <slide>
61 <hgroup>
62 <h2>今週の作業</h2>
63 </hgroup>
64 <article>
65 <ul>
66 <li>Linux 3.8.9 を読む</li>
67 <li>メモリ初期化のデバッグ</li>
68 </ul>
69 </article>
70 </slide>
71
72 <slide>
73 <hgroup>
74 <h2>ELILO</h2>
75 </hgroup>
76 <article>
77 <h3>ELILO の中でのカーネル、という方針</h3>
78 <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p>
79 <ol>
80 <li>1.GDT/LDT を設定</li>
81 <li>2.別セグメントに飛ぶ</li>
82 <li>3.メモリの初期化</li>
83 </ol>
84 </article>
85 </slide>
86
87 <slide>
88 <hgroup>
89 <h2>エラーメッセージ</h2>
90 </hgroup>
91 <article>
92 <h3>cr0 の PE bit を無効にした時</h3>
93 <img src='images/err_message01.png'>
94 <h3>cr3 に値を入れた時</h3>
95 <img src='images/err_message02.png'>
96 </article>
97 </slide>
98
99 <slide>
100 <hgroup>
101 <h2>PostgreSQL</h2>
102 </hgroup>
103 <article>
104 <h3>手順</h3>
105 <ol>
106 <li>./initdb -D $PGDATA<br>
107 データベースの初期化<li>
108 <li>./pg_ctl -D $PGDATA -l [logfile_name] start<br>
109 PostgreSQL の起動<li>
110 <li>./psql user<br>
111 対話プロンプトが開く<li>
112 <li>
113 ps -ef | grep postgres<br>
114 PostgreSQL のプロセスを探し出す<li>
115 <li>gdb $DIR/bin/postgres [process number]<br>
116 で読む<li>
117 </ol>
118 </article>
119 </slide>
120
121 <slide>
122 <hgroup>
123 <h2>これからやること</h2>
124 </hgroup>
125 <article>
126 <ul>
127 <li>引き続き Paging の設定</li>
128 <li>うまくいったら User/特権 mode の切り替え</li>
129 </ul>
130 </article>
131 </slide>
132
133 <slide>
134 <hgroup>
135 <h2>Code Slide (with Subtitle Placeholder)</h2>
136 </hgroup>
137 <article>
138 <p>Press 'h' to highlight important sections of code (wrapped in <code>&lt;b&gt;</code>).</p>
139 <pre class="prettyprint" data-lang="javascript">
140 &lt;script type='text/javascript'&gt;
141 // Say hello world until the user starts questioning
142 // the meaningfulness of their existence.
143 function helloWorld(world) {
144 <b>for (var i = 42; --i &gt;= 0;) {
145 alert('Hello ' + String(world));
146 }</b>
147 }
148 &lt;/script&gt;
149 </pre>
150 </article>
151 </slide>
152
153 <slide>
154 <hgroup>
155 <h2>Code Slide (Smaller Font)</h2>
156 </hgroup>
157 <article class="smaller">
158 <pre class="prettyprint" data-lang="javascript">
159 // Say hello world until the user starts questioning
160 // the meaningfulness of their existence.
161 function helloWorld(world) {
162 for (var i = 42; --i &gt;= 0;) {
163 alert('Hello ' + String(world));
164 }
165 }
166 </pre>
167 <pre class="prettyprint" data-lang="css">
168 &lt;style&gt;
169 p { color: pink }
170 b { color: blue }
171 &lt;/style&gt;
172 </pre>
173 <pre class="prettyprint" data-lang="html">
174 &lt;!DOCTYPE html>
175 &lt;html>
176 &lt;head>
177 &lt;title>My Awesome Page&lt;/title>
178 &lt;/head>
179 &lt;body>
180 &lt;p&gt;Hello world&lt;/p&gt;
181 &lt;body>
182 &lt;/html>
183 </pre>
184 </article>
185 </slide>
186
187 <slide>
188 <aside class="note">
189 <section>
190 <ul>
191 <li>Point I wanted to make #1</li>
192 <li>Point I wanted to make #2</li>
193 <li>Point I wanted to make #3</li>
194 <li>Example <a href="#">link</a> in notes.</li>
195 </ul>
196 <p><b>Remember to say this tag line!</b></p>
197 </section>
198 </aside>
199 <hgroup>
200 <h2>Slide with Speaker Notes</h2>
201 </hgroup>
202 <article>
203 <p>Press 'p' to toggle speaker notes.</p>
204 </article>
205 </slide>
206
207 <slide>
208 <aside class="note">
209 <section>
210 <ul>
211 <li>See this amazing link: <a href="http://www.google.com">link</a>.</li>
212 </ul>
213 <p><b>Remember to say this tag line!</b></p>
214 </section>
215 </aside>
216 <hgroup>
217 <h2>Presenter Mode</h2>
218 </hgroup>
219 <article>
220 <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode.
221 This setting is sticky, meaning refreshing the page will persist presenter
222 mode.</p>
223 <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p>
224 </article>
225 </slide>
226
227 <slide>
228 <hgroup>
229 <h2>Slide with Image</h2>
230 </hgroup>
231 <article>
232 <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description">
233 <footer class="source">source: place source info here</footer>
234 </article>
235 </slide>
236
237 <slide>
238 <hgroup>
239 <h2>Slide with Image (Centered horz/vert)</h2>
240 </hgroup>
241 <article class="flexbox vcenter">
242 <img src="../io2012slides/images/barchart.png" alt="Description" title="Description">
243 <footer class="source">source: place source info here</footer>
244 </article>
245 </slide>
246
247 <slide>
248 <hgroup>
249 <h2>Table Option A</h2>
250 <h3>Subtitle Placeholder</h3>
251 </hgroup>
252 <article>
253 <table>
254 <tr>
255 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
256 </tr>
257 <tr>
258 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
259 </tr>
260 <tr>
261 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
262 </tr>
263 <tr>
264 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
265 </tr>
266 <tr>
267 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
268 </tr>
269 <tr>
270 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
271 </tr>
272 </table>
273 </article>
274 </slide>
275
276 <slide>
277 <hgroup>
278 <h2>Table Option A (Smaller Text)</h2>
279 <h3>Subtitle Placeholder</h3>
280 </hgroup>
281 <article class="smaller">
282 <table>
283 <tr>
284 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
285 </tr>
286 <tr>
287 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
288 </tr>
289 <tr>
290 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
291 </tr>
292 <tr>
293 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
294 </tr>
295 <tr>
296 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
297 </tr>
298 <tr>
299 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
300 </tr>
301 </table>
302 </article>
303 </slide>
304
305 <slide>
306 <hgroup>
307 <h2>Table Option B</h2>
308 <h3>Subtitle Placeholder</h3>
309 </hgroup>
310 <article>
311 <table class="rows">
312 <tr>
313 <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td>
314 </tr>
315 <tr>
316 <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
317 </tr>
318 <tr>
319 <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
320 </tr>
321 <tr>
322 <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
323 </tr>
324 <tr>
325 <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
326 </tr>
327 </table>
328 </article>
329 </slide>
330
331 <slide>
332 <hgroup>
333 <h2>Slide Styles</h2>
334 </hgroup>
335 <article class="smaller">
336 <div class="columns-2">
337 <ul>
338 <li class="red">class="red"</li>
339 <li class="red2">class="red2"</li>
340 <li class="red3">class="red3"</li>
341 <li class="blue">class="blue"</li>
342 <li class="blue2">class="blue2"</li>
343 <li class="blue3">class="blue3"</li>
344 <li class="green">class="green"</li>
345 <li class="green2">class="green2"</li>
346 </ul>
347 <ul>
348 <li class="green3">class="green3"</li>
349 <li class="yellow">class="yellow"</li>
350 <li class="yellow2">class="yellow2"</li>
351 <li class="yellow3">class="yellow3"</li>
352 <li class="gray">class="gray"</li>
353 <li class="gray2">class="gray2"</li>
354 <li class="gray3">class="gray3"</li>
355 <li class="gray4">class="gray4"</li>
356 </ul>
357 </div>
358 <div class="centered" style="margin-top:2em">
359 I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button.
360 </div>
361 </article>
362 </slide>
363
364 <slide class="segue dark nobackground">
365 <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
366 <hgroup class="auto-fadein">
367 <h2>Segue Slide</h2>
368 <h3>Subtitle Placeholder</h3>
369 </hgroup>
370 </slide>
371
372 <slide class="fill nobackground" style="background-image: url(images/sky.jpg)">
373 <hgroup>
374 <h2 class="white">Full Image (with Optional Header)</h2>
375 </hgroup>
376 <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer>
377 </slide>
378
379 <slide class="segue dark quote nobackground">
380 <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
381 <article class="flexbox vleft auto-fadein">
382 <q>
383 This is an example of quote text.
384 </q>
385 <div class="author">
386 Name<br>
387 Company
388 </div>
389 </article>
390 </slide>
391
392 <slide>
393 <hgroup>
394 <h2>Slide with Iframe</h2>
395 </hgroup>
396 <article>
397 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
398 </article>
399 </slide>
400
401 <slide>
402 <article>
403 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
404 </article>
405 </slide>
406
407 <slide class="thank-you-slide segue nobackground">
408 <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
409 <article class="flexbox vleft auto-fadein">
410 <h2>&lt;Thank You!&gt;</h2>
411 <p>Important contact information goes here.</p>
412 </article>
413 <p class="auto-fadein" data-config-contact>
414 <!-- populated from slide_config.json -->
415 </p>
416 </slide>
417
418 <slide class="logoslide dark nobackground">
419 <article class="flexbox vcenter">
420 <span><img src="../io2012slides/images/google_developers_logo_white.png"></span>
421 </article>
422 </slide>
423
424 <slide class="backdrop"></slide>
425
426 </slides>
427
428 <script>
429 var _gaq = _gaq || [];
430 _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
431 _gaq.push(['_trackPageview']);
432
433 (function() {
434 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
435 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
436 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
437 })();
438 </script>
439
440 <!--[if IE]>
441 <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
442 <script>CFInstall.check({mode: 'overlay'});</script>
443 <![endif]-->
444 </body>
445 </html>