1-Ch03

Size: px
Start display at page:

Download "1-Ch03"

Transcription

1 Chapter 3 3 Linux Linux 106

2 Chapter 3 1 Linux Part 1 107

3 Part Example> /etc]# shutdown - Usage: shutdown [-akrhfnc] [-t secs] time [warning message] -a: use /etc/shutdown.allow -k: don t really shutdown, only warn. -r: reboot after shutdown. -h: halt after shutdown. -f: do a fast reboot (skip fsck). -F: Force fsck on reboot. -n: do not go through init but go down real fast. -c: cancel a running shutdown. -t secs: delay between warning and kill signal. ** the time argument is mandatory! (try now ) ** [root@kugstone /etc]# shutdown -k -t 120 disk replacing job 108

4 Chapter 3 Part 1 [root@kugstone /etc]# cat /etc/inittab # # inittab This file describes how the INIT process should set up # the system in a certain run-level. # # Author: Miquel van Smoorenburg, <miquels@drinkel.nl. mugnet.org> # Modified for RHS Linux by Marc Ewing and Donnie Barnes # # Default runlevel. The runlevels used by RHS are: # 0 - halt (Do NOT set initdefault to this) # 1 - Single user mode # 2 - Multiuser, without NFS (The same as 3, if you do not have networking) # 3 - Full multiuser mode # 4 - unused # 5 - X11 # 6 - reboot (Do NOT set initdefault to this) # id:5:initdefault: # System initialization. 109

5 Part si::sysinit:/etc/rc.d/rc.sysinit l0:0:wait:/etc/rc.d/rc 0 l1:1:wait:/etc/rc.d/rc 1 l2:2:wait:/etc/rc.d/rc 2 l3:3:wait:/etc/rc.d/rc 3 l4:4:wait:/etc/rc.d/rc 4 l5:5:wait:/etc/rc.d/rc 5 l6:6:wait:/etc/rc.d/rc 6 # Things to run in every runlevel. ud::once:/sbin/update # Trap CTRL-ALT-DELETE ca::ctrlaltdel:/sbin/shutdown -t3 -r now # When our UPS tells us power has failed, assume we have a few minutes # of power left. Schedule a shutdown for 2 minutes from now. # This does, of course, assume you have powerd installed and your # UPS connected and working correctly. pf::powerfail:/sbin/shutdown -f -h +2 Power Failure; System Shutting Down # If power was restored before the shutdown kicked in, cancel it. pr:12345:powerokwait:/sbin/shutdown -c Power Restored; Shutdown Cancelled # Run gettys in standard runlevels 1:2345:respawn:/sbin/mingetty tty1 2:2345:respawn:/sbin/mingetty tty2 3:2345:respawn:/sbin/mingetty tty3 4:2345:respawn:/sbin/mingetty tty4 5:2345:respawn:/sbin/mingetty tty5 6:2345:respawn:/sbin/mingetty tty6 # Run xdm in runlevel 5 # xdm is now a separate service x:5:respawn:/etc/x11/prefdm -nodaemon [root@kugstone /etc]# 110

6 Chapter 3 [root@kugstone /etc]# shutdown -y -i6 Part 1 2 Linux [kugstone@kugstone /]$ rm -r /tmp rm: remove write-protected file /tmp/install.log? y rm: cannot unlink /tmp/install.log : Operation not permitted rm: directory /tmp/.mozilla is write protected; descend into it anyway? y rm: cannot change to directory /tmp/.mozilla : Permission denied rm: directory /tmp/.gnome is write protected; descend into it anyway? y rm: cannot change to directory /tmp/.gnome : Permission denied rm: directory /tmp/.gnome_private is write protected; descend into it anyway? ~ ~ 111

7 Part /etc]# su root password: /etc]# T I P [root@kugstone /etc]# cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin: daemon:x:2:2:daemon:/sbin: adm:x:3:4:adm:/var/adm: lp:x:4:7:lp:/var/spool/lpd: sync:x:5:0:sync:/sbin:/bin/sync ~ ~ kugstone:x:500:500::/home/kugstone:/bin/bash [root@kugstone /etc]# [root@kugstone /etc]# cat /etc/passwd grep kugstone 112

8 Chapter 3 kugstone:x:500:500::/home/kugstone:/bin/bash [root@kugstone /etc]# Part 1 [root@kugstone /etc]# cat /etc/group root:x:0:root bin:x:1:root,bin,daemon ~ ~ kugstone:x:500: [root@kugstone /etc]# 113

9 Part 114

10 Chapter 3 [root@kugstone /etc]# useradd -D # GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/bash SKEL=/etc/skel [root@kugstone /etc]# useradd kug -d /home/kug # [root@kugstone /etc]# ls -al /home total 60 drwxr-xr-x 15 root root Apr 8 13:50. drwxr-xr-x 20 root root Apr 8 11:18.. drwxr-xr-x 2 root root Apr acrobat4 drwxr-xr-x 2 root root 4096 Apr hanterm drwx kug kug 4096 Apr 8 13:50 kug # drwx kugstone kugstone 4096 Apr 4 00:40 kugstone ~ [root@kugstone /etc]# cat /etc/passwd grep kug kugstone:x:500:500::/home/kugstone:/bin/bash kug:x:501:501::/home/kug:/bin/bash [root@kugstone /etc]# cat /etc/group grep kug kugstone:x:500: kug:x:501: [root@kugstone /etc]# Part 1 [root@kugstone /etc]# userdel kug [root@kugstone /etc]# userdel kug userdel: user kug does not exist [root@kugstone /etc]# # 115

11 Part 3 Linux [root@kugstone kugstone]# pwd /home/kugstone [root@kugstone kugstone]# # 116

12 Chapter 3 Part 1 117

13 Part bin]$ pwd # /usr/bin [kugstone@kugstone bin]$ cd $HOME # [kugstone@kugstone kugstone]$ pwd /home/kugstone [kugstone@kugstone kugstone]$ [kugstone@kugstone kugstone]$ cd $HOME/test [kugstone@kugstone test]$ pwd /home/kugstone/test [kugstone@kugstone test]$ 118

14 Chapter 3 Part 1 [kugstone@kugstone kugstone]$ mkdir -v test # mkdir: created directory test [kugstone@kugstone kugstone]$ mkdir test # mkdir: cannot create directory test : File exists [kugstone@kugstone kugstone]$ mkdir -p test # [kugstone@kugstone kugstone]$ [kugstone@kugstone /]$ pwd / [kugstone@kugstone /]$ mkdir $HOME/imsi # [kugstone@kugstone /]$ cd $HOME/imsi [kugstone@kugstone imsi]$ pwd /home/kugstone/imsi [kugstone@kugstone imsi]$ 119

15 Part T I P [root@kugstone wongo]# pwd /home/wongo [root@kugstone wongo]# cd example [root@kugstone example]# cd.. [root@kugstone wongo]# cd $HOME [root@kugstone /root]# pwd /root [root@kugstone /root]# 120

16 Chapter 3 Part 1 [root@kugstone imsi]# ls temp1 temp2 temp3 temp4 [root@kugstone imsi]# mv temp1 temp2 [root@kugstone imsi]# cd temp2 [root@kugstone temp2]# ls temp1 [root@kugstone temp2]# ls aa bb cc dd ee temp1 [root@kugstone imsi]# mv -b aa temp2 mv: overwrite temp2/aa? y [root@kugstone imsi]# ls bb temp2 temp3 temp4 [root@kugstone imsi]# cd temp2 [root@kugstone temp2]# ls aa aa~ bb cc dd ee temp1 [root@kugstone imsi]# cd temp2 [root@kugstone temp2]# ls aa aa~ bb cc dd ee temp1 [root@kugstone temp2]# cd.. [root@kugstone imsi]# mv -i bb temp2 mv: overwrite temp2/bb? y [root@kugstone imsi]# mv -f cc temp2 # # # -b aa~ # # 121

17 Part /root]# pwd /root /root]# cat.bashrc #.bashrc # User specific aliases and functions alias rm= rm -i alias cp= cp -i alias mv= mv -i # mv # Source global definitions if [ -f /etc/bashrc ]; then. /etc/bashrc fi [root@kugstone /root]# 122

18 Chapter 3 [root@kugstone imsi]# rmdir -v temp3 # rmdir: removing directory, temp3 [root@kugstone imsi]# pwd /home/wongo/imsi [root@kugstone imsi]# rmdir -pv temp1/temp2 # rmdir: removing directory, temp1/temp2 rmdir: removing directory, temp1 [root@kugstone imsi]# Part 1 4 Linux 123

19 Part imsi]# date Mon Apr 9 13:04:28 EDT 2001 [root@kugstone imsi]# touch aa [root@kugstone imsi]# ls -al aa -rw-r--r-- 1 root root 0 Apr 9 13:04 aa [root@kugstone imsi]# touch -m aa [root@kugstone imsi]# ls -al aa -rw-r--r-- 1 root root 0 Apr 9 13:06 aa [root@kugstone imsi]# T I P [root@kugstone imsi]# cat -b aa # 1test of line 124

20 Chapter 3 2cat is very beautiful [root@kugstone imsi]# cat -e aa # $ test of line$ cat is very beautiful$ [root@kugstone imsi]# Part 1 [root@kugstone imsi]# cat > bb its my program [1]+ Stopped cat >bb [root@kugstone imsi]# cat bb its my program [root@kugstone imsi]# cat bb >cc [root@kugstone imsi]# cat cc its my program [root@kugstone imsi]# cat bb >>cc [root@kugstone imsi]# cat cc its my program its my program [root@kugstone imsi]# # (^z) # # # 125

21 Part imsi]# ls -l total 8 -rw-r--r-- 1 root root 35 Apr 9 13:45 aa -rw-r--r-- 1 root root 35 Apr 9 13:45 bb [root@kugstone imsi]# cp -i aa bb # cp: overwrite bb? y [root@kugstone imsi]# ls -l total 8 -rw-r--r-- 1 root root 35 Apr 9 13:45 aa -rw-r--r-- 1 root root 35 Apr 9 16:50 bb [root@kugstone imsi]# cp -p aa bb # cp: overwrite bb? y [root@kugstone imsi]# ls -l total 8 -rw-r--r-- 1 root root 35 Apr 9 13:45 aa -rw-r--r-- 1 root root 35 Apr 9 13:45 bb [root@kugstone imsi]# 126

22 Chapter 3 Part 1 [root@kugstone imsi]# ls -l total 4 -rw-r--r-- 1 root root 0 Apr 9 17:00 aa -rw-r--r-- 1 root root 0 Apr 9 17:00 bb -rw-r--r-- 1 root root 0 Apr 9 17:00 cc drwxr-xr-x 2 root root 4096 Apr 9 17:00 temp [root@kugstone imsi]# rm aa [root@kugstone imsi]# ls bb cc temp [root@kugstone imsi]# rm -i bb rm: remove bb? y [root@kugstone imsi]# ls cc temp [root@kugstone imsi]# rm temp rm: temp is a directory [root@kugstone imsi]# rm -r temp [root@kugstone imsi]# ls cc [root@kugstone imsi]# 127

23 Part Most commands optionally preceded by integer argument k. Defaults in brackets. Star (*) indicates argument becomes new default <space> Display next k lines of text [current screen size] z Display next k lines of text [current screen size]* <return> Display next k lines of text [1]* d or ctrl-d Scroll k lines [current scroll size, initially 11]* q or Q or <interrupt> Exit from more s Skip forward k lines of text [1] f Skip forward k screenfuls of text [1] b or ctrl-b Skip backwards k screenfuls of text [1] Go to place where previous search started = Display current line number /<regular expression> Search for kth occurrence of regular expression [1] n Search for kth occurrence of last r.e [1] 128

24 Chapter 3!<cmd> or :!<cmd> Execute <cmd> in a subshell v Start up /usr/bin/vi at current line ctrl-l Redraw screen :n Go to kth next file [1] :p Go to kth previous file [1] :f Display current file name and line number. Repeat previous command More--(17%) Part 1 [root@kugstone example]# man more more +7 # 7 SYNOPSIS more [-dlfpcsu] [-num] [+/ pattern] [+ linenum] [file...] DESCRIPTION ~ ~ [root@kugstone example]# man more more +/Command...skipping Command line options are described below. Options are also taken from the environment variable MORE (make sure to precede them with a dash ( - )) but command line options will override them. [root@kugstone example]# 129

25 Part example]# cat sample.c #include <stdio.h> main() { printf( Hello World\n ); } [root@kugstone example]# head -1 sample.c #include <stdio.h> [root@kugstone example]# head sample.c #include <stdio.h> main() { printf( Hello World\n ); } [root@kugstone example]# tail -2 sample.c printf( Hello World\n ); } [root@kugstone example]# # 1 # 10 # 2 [root@kugstone example]# tail -f sample.c #include <stdio.h> main() { # 130

26 Chapter 3 printf( Hello World\n ); } add first line... add seconf line... # Part 1 cat name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY sort name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY sort -r name.txt 6 am bi ju ITALY 5 chi nam su TILAND 4 li youn ju ENGLAND 3 kang yan jung CHINA 2 KUG ji su USA 1 kug jkyoung wan KOREA # # 131

27 Part cat name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY sort +1-2 name.txt 7 4_am bi ju ITALY 5 5_chi nam su TILAND 6 am bi ju ITALY 3 kang yan jung CHINA 1 kug jkyoung wan KOREA 2 KUG ji su USA 4 li youn ju ENGLAND cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin: daemon:x:2:2:daemon:/sbin: 132

28 Chapter 3 adm:x:3:4:adm:/var/adm: lp:x:4:7:lp:/var/spool/lpd: sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt mail:x:8:12:mail:/var/spool/mail: ~ ~ sort -t: +0-1 /etc/passwd adm:x:3:4:adm:/var/adm: amanda:x:33:6:amanda user:/var/lib/amanda:/bin/bash apache:x:48:48:apache:/var/www:/bin/false bin:x:1:1:bin:/bin: daemon:x:2:2:daemon:/sbin: ftp:x:14:50:ftp User:/var/ftp: games:x:12:100:games:/usr/games: gdm:x:42:42::/home/gdm:/bin/bash gopher:x:13:30:gopher:/usr/lib/gopher-data: Part 1 sort name.txt>a sort name.txt>b sort -m a b >c cat c 1 kug jkyoung wan KOREA 1 kug jkyoung wan KOREA 2 KUG ji su USA 2 KUG ji su USA 3 kang yan jung CHINA 3 kang yan jung CHINA 4 li youn ju ENGLAND 4 li youn ju ENGLAND 5 5_chi nam su TILAND 5 5_chi nam su TILAND 6 am bi ju ITALY 133

29 Part 6 am bi ju ITALY 7 4_am bi ju ITALY 7 4_am bi ju ITALY sort -u c 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY 134

30 Chapter 3 cat name.tmp # Tug jkyoung wan KOREA KUG ji su USA am bi ju ITALY cat name.txt # 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY diff name.tmp name.txt # 1,4c1,7 < Tug jkyoung wan KOREA < < KUG ji su USA < am bi ju ITALY --- > 1 kug jkyoung wan KOREA > 2 KUG ji su USA > 3 kang yan jung CHINA > 4 li youn ju ENGLAND > 5 5_chi nam su TILAND > 6 am bi ju ITALY > 7 4_am bi ju ITALY Part 1 135

31 Part cmp name.tmp name.txt name.tmp name.txt differ: char 1, line 1 cmp -l name.tmp name.txt ~ comm name.tmp name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY Tug jkyoung wan KOREA KUG ji su USA am bi ju ITALY 136

32 Chapter 3 Part 1 comm -2 name.tmp name.txt # 1, 3 Tug jkyoung wan KOREA KUG ji su USA am bi ju ITALY find. -name *.txt -print./name.txt 137

33 Part find / -name *.txt -print -depth find: /proc/1390/fd: No such file or directory /var/mars_nwe/sys/readme.txt /var/www/icons/small/readme.txt /etc/squid/mib.txt /etc/tripwire/twcfg.txt /etc/tripwire/twpol.txt /usr/share/doc/html/en/kppp/ttys-cua.txt ~ ~ T I P ls -l total 36 drwxr-xr-x 2 root root 4096 Mar 25 20:33 imsi -rw-r--r-- 1 root root 92 Mar 25 21:19 name.tmp -rw-r--r-- 1 root root 232 Mar 25 21:08 name.txt -rw-r--r-- 1 root root 84 Mar 25 20:33 sample.c find. -size +20 -print find. -size +1 -print../imsi 138

34 Chapter 3 find. -size -1 -print Part 1 ls -l total 16 drwxr-xr-x 2 root root 4096 Mar 25 20:33 imsi -rw-r--r-- 1 root root 92 Mar 25 21:19 name.tmp -rw-r--r-- 1 root root 232 Mar 25 21:08 name.txt -rw-r--r-- 1 root root 84 Mar 25 20:33 sample.c date Wed Apr 25 21:34:58 KST 2001 find. -mtime 31 -print../name.tmp./name.txt./imsi./sample.c find. -name *.txt -print -exec cat {} \;./name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY./sample.txt 139

35 Part #include<stdio.h> main() { printf( Hello World!!\n ); } find. -name *.txt -print -ok rm {} \;./name.txt < rm..../name.txt >? n./sample.txt < rm..../sample.txt >? n find. \( -name *.c -o -name *.txt \) - 140

36 Chapter 3 print./name.txt./sample.c./sample.txt Part 1 ls imsi name.tmp name.txt sample.c sample.txt cat name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 5_chi nam su TILAND 6 am bi ju ITALY 7 4_am bi ju ITALY split -3 name.txt # 3 ls x* xaa xab xac # cat xaa 141

37 Part 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA compress name.txt ls -al name* -rw-r--r-- 1 root root 92 Mar 25 21:19 name.tmp -rw-r--r-- 1 root root 188 Mar 25 21:08 name.txt.z uncompress name.txt.z compress * 142

38 Chapter 3 ls *.Z name.tmp.z name.txt.z sample.c.z sample.txt.z xaa.z xab.z uncompress * ls imsi name.tmp name.txt sample.c sample.txt xaa xab xac Part 1 compress sample.txt ls -al sam* -rw-r--r-- 1 root root 84 Mar 25 20:33 sample.c -rw-r--r-- 1 root root 73 Apr 25 21:35 sample.txt.z zcat sample.txt.z #include<stdio.h> main() { printf( Hello World!!\n ); } cat sample.c #include<stdio.h> main() { printf( Hello World!!\n ); 143

39 Part } wc sample.c sample.c # ls a.out imsi name.tmp name.txt sample.c sample.txt.z ls wc -l # 6 144

40 Chapter 3 cat cut.txt first second third cut -c1-3 cut.txt # 1-3 fir cut -f1 cut.txt # first Part 1 cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin: daemon:x:2:2:daemon:/sbin: adm:x:3:4:adm:/var/adm: ~ ~ cut -f1 -d: /etc/passwd root bin daemon adm ~ ~ 145

41 Part who root :0 Mar 25 19:44 root pts/0 Mar 25 19:44 root pts/1 Mar 25 19:55 root pts/2 Mar 25 20:47 who cut -c1-4 sort uniq -c 4 root cat a kug kang li cat b paste a b kug kang li paste -d* a b kug* # 146

42 Chapter 3 kang* li* * Part 1 paste -s a b kug kang li cat c kug kang li cut -f1 c>c1 cut -f2 c>c2 paste c2 c kug kang li # 1 # 2 147

43 Part cat c kug kang li tr k A <c Aug Aang li cat c kug kang li tr a-z A-Z <c KUG KANG LI tr \[a-z\] \[A-Z\] <c KUG KANG LI # cat c kug kang li tr -d [0-9] <c 148

44 Chapter 3 kug - kang - li - Part 1 cat c kug kang li tr -cd [0-8] <c Linux cat name.txt 1 kug jkyoung wan KOREA 2 kug ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY # 149

45 Part grep am name.txt # am chi nam su TILAND am bi ju ITALY cat name.txt 1 kug jkyoung wan KOREA 2 kug ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY grep -v am name.txt # 1 kug jkyoung wan KOREA 2 kug ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND grep -n am name.txt # 5:5 chi nam su TILAND 6:6 am bi ju ITALY 150

46 Chapter 3 grep -c kug name.txt 2 Part 1 ls imsi name.tmp name.txt sample.c grep -l kug * grep: imsi: Is a directory name.tmp name.txt grep -l kug / grep: /: Is a directory cat name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 151

47 Part 6 am bi ju ITALY grep -y kug name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA grep KUG name.txt 2 KUG ji su USA # # grep -w ku name.txt grep -w kug name.txt 1 kug jkyoung wan KOREA 152

48 Chapter 3 grep ^k name.txt grep ^k name.txt grep ^4 name.txt 4 li youn ju ENGLAND grep a$ name.txt grep A$ name.txt 1 kug jkyoung wan KOREA 2 KUG ji su USA 3 kang yan jung CHINA grep ^$ name.txt Part 1 grep k.. name.txt 1 kug jkyoung wan KOREA 3 kang yan jung CHINA grep I... name.txt # I 5 chi nam su TILAND 6 am bi ju ITALY 153

49 Part grep [LMN] name.txt 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY grep [L-N] name.txt 3 kang yan jung CHINA 4 li youn ju ENGLAND 5 chi nam su TILAND 6 am bi ju ITALY grep ^[K4] name.txt 4 li youn ju ENGLAND w 8:59pm up 2:21, 4 users, load average: 0.04, 0.07, 0.08 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT root pts/0-7:44pm 1:15m 0.00s 0.00s /bin/catroot pts/1-7:55pm 0.00s 0.28s 0.01s w root pts/2-8:47pm 9: s 0.07s /bin/bas w grep sh root pts/2-8:47pm 9: s 0.07s /bin/bash w grep sh 154

50 Chapter 3 root pts/2-8:47pm 11: s 0.07s /bin/bash w grep sh wc -l 1 Part 1 Q u i z 155

51

52 >> Q uestion

53 Part

54 Chapter Part

55 Part

56 Chapter Part

57 Part

58 Chapter Part

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

Microsoft PowerPoint - comp_prac_081223_2.pptx

Microsoft PowerPoint - comp_prac_081223_2.pptx Computer Programming Practice (2008 Winter) Practice 2 기본 Unix/Linux 명령어숙지 2008. 12. 23 Contents Linux commands Basic commands File and Directory User Data Filtering Process Etc Conclusion & Recommended

More information

01Àå

01Àå CHAPTER 01 1 Fedora Fedora Linux Toolbox 2003 Fedora Core( ) http://fedoraproject.org www.redhat.com 2 CHAPTER Fedora RHEL GNU public license www.centos.org www.yellowdoglinux.com www. lineox.net www.

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

/chroot/lib/ /chroot/etc/

/chroot/lib/ /chroot/etc/ 구축 환경 VirtualBox - Fedora 15 (kernel : 2.6.40.4-5.fc15.i686.PAE) 작동 원리 chroot유저 ssh 접속 -> 접속유저의 홈디렉토리 밑.ssh의 rc 파일 실행 -> daemonstart실행 -> daemon 작동 -> 접속 유저만의 Jail 디렉토리 생성 -> 접속 유저의.bashrc 의 chroot 명령어

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh Page 1 of 6 Learn Korean Ep. 13: Whether (or not) and If Let s go over how to say Whether and If. An example in English would be I don t know whether he ll be there, or I don t know if he ll be there.

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

GNU/Linux 1, GNU/Linux MS-DOS LOADLIN DOS-MBR LILO DOS-MBR LILO... 6

GNU/Linux 1, GNU/Linux MS-DOS LOADLIN DOS-MBR LILO DOS-MBR LILO... 6 GNU/ 1, qkim@pecetrirekr GNU/ 1 1 2 2 3 4 31 MS-DOS 5 32 LOADLIN 5 33 DOS- LILO 6 34 DOS- 6 35 LILO 6 4 7 41 BIOS 7 42 8 43 8 44 8 45 9 46 9 47 2 9 5 X86 GNU/LINUX 10 1 GNU/, GNU/ 2, 3, 1 : V 11, 2001

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not,

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not, Page 1 of 5 Learn Korean Ep. 4: To be and To exist Of course to be and to exist are different verbs, but they re often confused by beginning students when learning Korean. In English we sometimes use the

More information

µðÇÃ24-Ç¥Áö´Ü¸é

µðÇÃ24-Ç¥Áö´Ü¸é Industrial Trend > Part. Set (2013. 2. 21) Display Focus 39 (2013. 3. 6) 40 2013 MAR. APR. vol. 24 (2013. 3. 7) (2013. 2. 18) (2013. 3. 19) Display Focus 41 (2013. 2. 7) Panel 42 2013 MAR. APR. vol. 24

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한 손의 도우심이 함께 했던 사람의 이야기 가 나와 있는데 에스라 7장은 거듭해서 그 비결을

하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한 손의 도우심이 함께 했던 사람의 이야기 가 나와 있는데 에스라 7장은 거듭해서 그 비결을 새벽이슬 2 0 1 3 a u g u s t 내가 이스라엘에게 이슬과 같으리니 그가 백합화같이 피 겠고 레바논 백향목같이 뿌리가 박힐것이라. Vol 5 Number 3 호세아 14:5 하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

More information

¹Ìµå¹Ì3Â÷Àμâ

¹Ìµå¹Ì3Â÷Àμâ MIDME LOGISTICS Trusted Solutions for 02 CEO MESSAGE MIDME LOGISTICS CO., LTD. 01 Ceo Message We, MIDME LOGISTICS CO., LTD. has established to create aduance logistics service. Try to give confidence to

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

참고 금융분야 개인정보보호 가이드라인 1. 개인정보보호 관계 법령 개인정보 보호법 시행령 신용정보의 이용 및 보호에 관한 법률 시행령 금융실명거래 및 비밀보장에 관한 법률 시행령 전자금융거래법 시행령 은행법 시행령 보험업법 시행령 자동차손해배상 보장법 시행령 자본시장과

참고 금융분야 개인정보보호 가이드라인 1. 개인정보보호 관계 법령 개인정보 보호법 시행령 신용정보의 이용 및 보호에 관한 법률 시행령 금융실명거래 및 비밀보장에 관한 법률 시행령 전자금융거래법 시행령 은행법 시행령 보험업법 시행령 자동차손해배상 보장법 시행령 자본시장과 Ⅰ 가이드라인 개요 >> 금융분야 개인정보보호 가이드라인 참고 금융분야 개인정보보호 가이드라인 1. 개인정보보호 관계 법령 개인정보 보호법 시행령 신용정보의 이용 및 보호에 관한 법률 시행령 금융실명거래 및 비밀보장에 관한 법률 시행령 전자금융거래법 시행령 은행법 시행령 보험업법 시행령 자동차손해배상 보장법 시행령 자본시장과 금융투자업에 관한 법률 시행령 금융지주회사법

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

歯20010629-001-1-조선일보.PDF

歯20010629-001-1-조선일보.PDF 6. 29 () 11:00 ( ) 20 0 1. 6. 29 11( ).(397-1941) 1. 2. 3. 4. 5. 1. 28, 60() (,, ) 30 619(, 6. 29) () 6 (,,,,, ),,, - 1 - < > (, ), () < > - 2 - 2.,,, 620,, - 3 - 3. ( ) 1,614,, 864 ( ) 1,6 14 864 () 734

More information

<32B1B3BDC32E687770>

<32B1B3BDC32E687770> 008년도 상반기 제회 한 국 어 능 력 시 험 The th Test of Proficiency in Korean 일반 한국어(S-TOPIK 중급(Intermediate A 교시 이해 ( 듣기, 읽기 수험번호(Registration No. 이 름 (Name 한국어(Korean 영 어(English 유 의 사 항 Information. 시험 시작 지시가 있을

More information

(Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern (Micro- Environment) Re

(Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern (Micro- Environment) Re EMF Health Effect 2003 10 20 21-29 2-10 - - ( ) area spot measurement - - 1 (Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern

More information

2012 JANFEB Vol.91 0102 World Best Safety, Global INHA 2012. 01+02 C O N T E N T S Jan.Feb Vol.91 02 04 06 09 12 14 16 18 20 22 24 27 28 30 31 32 33 38 04 2012 Jan + Feb 05 06 2012 Jan + Feb 07 08 2012

More information

Sena Technologies, Inc. HelloDevice Super 1.1.0

Sena Technologies, Inc. HelloDevice Super 1.1.0 HelloDevice Super 110 Copyright 1998-2005, All rights reserved HelloDevice 210 ()137-130 Tel: (02) 573-5422 Fax: (02) 573-7710 E-Mail: support@senacom Website: http://wwwsenacom Revision history Revision

More information

011°�³²°¡Á·½Å¹®-ÃÖÁ¾¼öÁ¤

011°�³²°¡Á·½Å¹®-ÃÖÁ¾¼öÁ¤ 011강남가족신문-최종수정 2011.3.11 7:8 PM 페이지 1 www.fggn.kr 발행처 : 순복음강남교회 발행인 : 최명우 편집인 : 오훈세 서울시 강남구 역삼1 동 833-6 02 ) 3469-4600 2011년 3월 나도 10명 전도해 10만 성도 만드세 리더십 영성아카데미 500여명 참석, 실제적인 전도 훈련 그동안 나가서 전도지만

More information

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

More information

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5]

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5] The Asian Journal of TEX, Volume 3, No. 1, June 2009 Article revision 2009/5/7 KTS THE KOREAN TEX SOCIETY SINCE 2007 2008 ko.tex Installing TEX Live 2008 and ko.tex under Ubuntu Linux Kihwang Lee * kihwang.lee@ktug.or.kr

More information

네이버 오픈소스 세미나 key

네이버 오픈소스 세미나 key 2017-09-26 PyPy NTM-tensorflow django-messages D2FEST 2015 Rust 2013 sqlalchemyimageattach redis-py wand D2FEST AWARD UI7Kit 2013 itunes-iap 2013 mockcache cocos2d-x KLSwitch FlatUI sqlalchemy 2016 NAVER

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 오픈소스소프트웨어개발입문 (CP33992) Linux 명령어사용법 부산대학교공과대학정보컴퓨터공학부 학습목표 리눅스시스템에서프로그래밍을개발하는데유용한다양한유닉스 쉘명령어사용법을알수있다. 2 C 프로그래밍기초연습 아래의프로그램을 vi 로작성하시오 $ vi myprog.c #include int main() { printf( Hello Linux\n

More information

Breathing problems Pa t i e n t: I have been having some breathing problems lately. I always seem to be out of breath no matter what I am d o i n g. ( Nurse : How long have you been experiencing this problem?

More information

untitled

untitled Step Motor Device Driver Embedded System Lab. II Step Motor Step Motor Step Motor source Embedded System Lab. II 2 open loop, : : Pulse, 1 Pulse,, -, 1 +5%, step Step Motor (2),, Embedded System Lab. II

More information

2011´ëÇпø2µµ 24p_0628

2011´ëÇпø2µµ 24p_0628 2011 Guide for U.S. Graduate School Admissions Table of Contents 02 03 04 05 06 08 09 10 11 13 15 21 LEADERS UHAK INTERNATIONAL STUDENTS SERVICE www.leadersuhak.com Leaders Uhak International Students

More information

Microsoft PowerPoint - 07-EDU-LinuxUser-3.ppt

Microsoft PowerPoint - 07-EDU-LinuxUser-3.ppt 사용자관리환경 사용자관리도구 시스템종료 실습 순천향대학교컴퓨터학부이상정 1 사용자관리환경 순천향대학교컴퓨터학부이상정 2 사용자 리눅스에서모든파일과프로그램은어떤사용자 (user) 에의해소유 사용자 ID(UID) 라불리는고유한숫자로식별됨. 각사용자는적어도하나의그룹 ( 시스템관리자가만드는사용자들의집합 ) 에소속 사용자의권한 일반사용자 자신이접근할수있도록허용된자원만접근가능

More information

Stage 2 First Phonics

Stage 2 First Phonics ORT Stage 2 First Phonics The Big Egg What could the big egg be? What are the characters doing? What do you think the story will be about? (큰 달걀은 무엇일까요? 등장인물들은 지금 무엇을 하고 있는 걸까요? 책은 어떤 내용일 것 같나요?) 대해 칭찬해

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd 디지털 프로젝터 X56 네트워크 가이드 이 제품을 구입해 주셔서 감사합니다. 본 설명서는 네트워크 기능 만을 설명하기 위한 것입니다. 본 제품을 올바르게 사 용하려면 이 취급절명저와 본 제품의 다른 취급절명저를 참조하시기 바랍니다. 중요한 주의사항 이 제품을 사용하기 전에 먼저 이 제품에 대한 모든 설명서를 잘 읽어 보십시오. 읽은 뒤에는 나중에 필요할 때

More information

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

C++-¿Ïº®Çؼ³10Àå

C++-¿Ïº®Çؼ³10Àå C C++. (preprocessor directives), C C++ C/C++... C++, C. C++ C. C C++. C,, C++, C++., C++.,.. #define #elif #else #error #if #itdef #ifndef #include #line #pragma #undef #.,.,. #include #include

More information

C 프로그래밍 언어 입문 C 프로그래밍 언어 입문 김명호저 숭실대학교 출판국 머리말..... C, C++, Java, Fortran, Python, Ruby,.. C. C 1972. 40 C.. C. 1999 C99. C99. C. C. C., kmh ssu.ac.kr.. ,. 2013 12 Contents 1장 프로그래밍 시작 1.1 C 10 1.2 12

More information

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf("hihi\n"); } warning: conflicting types for functiona

4. #include <stdio.h> #include <stdlib.h> int main() { functiona(); } void functiona() { printf(hihi\n); } warning: conflicting types for functiona 이름 : 학번 : A. True or False: 각각항목마다 True 인지 False 인지적으세요. 1. (Python:) randint 함수를사용하려면, random 모듈을 import 해야한다. 2. (Python:) '' (single quote) 는한글자를표현할때, (double quote) 는문자열을표현할때사용한다. B. 다음에러를수정하는방법을적으세요.

More information

DE1-SoC Board

DE1-SoC Board 실습 1 개발환경 DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically

More information

H3050(aap)

H3050(aap) USB Windows 7/ Vista 2 Windows XP English 1 2 3 4 Installation A. Headset B. Transmitter C. USB charging cable D. 3.5mm to USB audio cable - Before using the headset needs to be fully charged. -Connect

More information

1

1 Seoul Bar Association 2016. 01. 2015 March_2 2 _ 2016 January_3 02_ 05_ 06_ 09_ 10_ 12_ 14_ 16_ 17_ 18_ 20_ 31_ 35_ 45_ 46_ 51_ 59_ 4 _ Theme Column 2016 January_5 6 _ 2016 January_7 8 _ Conception of

More information

#중등독해1-1단원(8~35)학

#중등독해1-1단원(8~35)학 Life Unit 1 Unit 2 Unit 3 Unit 4 Food Pets Camping Travel Unit 1 Food Before You Read Pre-reading Questions 1. Do you know what you should or shouldn t do at a traditional Chinese dinner? 2. Do you think

More information

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower.

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower. 스피킹 매트릭스 특별 체험판 정답 및 스크립트 30초 영어 말하기 INPUT DAY 01 p.10~12 3 min 집중 훈련 01 I * wake up * at 7. 02 I * eat * an apple. 03 I * go * to school. 04 I * put on * my shoes. 05 I * wash * my hands. 06 I * leave

More information

chapter4

chapter4 Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก

More information

희망풍차는 우리 주변의 소외된 어린이, 어르신, 다문화가족, 북한이주민과의 결연을 통해 생계, 의료, 주거, 교육 등 대상자에게 꼭 필요한 도움을 제공하는 국민참여형 통합적 맞춤형 휴먼 서비스입니다.

희망풍차는 우리 주변의 소외된 어린이, 어르신, 다문화가족, 북한이주민과의 결연을 통해 생계, 의료, 주거, 교육 등 대상자에게 꼭 필요한 도움을 제공하는 국민참여형 통합적 맞춤형 휴먼 서비스입니다. 정기후원 긴급지원 문의 1577-8179(편한친구) 본 지사 혈액 병원 소식 Autumn 2014. 10 04 page 16-43 page 본사소식 혈액소식 병원소식 지사소식 서울특별시지사 부산광역시지사 대구광역시지사 인천광역시지사 울산광역시지사 경기도지사 강원도지사 충청북도지사 대전ㆍ세종ㆍ충남지사 전라북도지사 광주ㆍ전남지사 경상북도지사 경상남도지사 제주특별자치도지사

More information

04-다시_고속철도61~80p

04-다시_고속철도61~80p Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and

More information

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이 1 2 On-air 3 1. 이베이코리아 G마켓 용평리조트 슈퍼브랜드딜 편 2. 아모레퍼시픽 헤라 루즈 홀릭 리퀴드 편 인쇄 광고 올해도 겨울이 왔어요. 당신에게 꼭 해주고 싶은 말이 있어요. G마켓에선 용평리조트 스페셜 패키지가 2만 6900원! 역시 G마켓이죠? G마켓과 함께하는 용평리조트 스페셜 패키지. G마켓의 슈퍼브랜드딜은 계속된다. 모바일 쇼핑 히어로

More information

PowerPoint Presentation

PowerPoint Presentation Hyperledger Fabric 개발환경구축및예제 Intelligent Networking Lab Outline 2/64 개발환경구축 1. Docker installation 2. Golang installation 3. Node.Js installation(lts) 4. Git besh installation 예제 1. Building My First Network

More information

1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder Service - efolder

1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder Service - efolder Embian efolder 설치가이드 efolder 시스템구성 efolder 설치순서 Installation commands 1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

Microsoft PowerPoint - chap9 [호환 모드]

Microsoft PowerPoint - chap9 [호환 모드] 제 9 장프로세스관계 숙대창병모 1 Contents 1. Logins 2. Process Groups 3. Sessions 4. Controlling Terminal 5. Job Control 숙대창병모 2 로그인 숙대창병모 3 터미널로그인 /etc/ttys: 1 line per terminal device getty: opens terminal device

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 UNIX 및실습 11 장유닉스유틸리티 이용하기 1 학습목표 유닉스시스템이제공하는다양한유틸리티의사용방법을익힌다. 파일의행수, 단어수, 문자수를찾는방법을익힌다. 파일을정렬하고내용의중복을제거하는방법을익힌다. 파일을분할하거나원하는부분을잘라내어붙여서새로운파일을생성하는방법을익힌다. 2 Section 01 파일정보수집 - wc wc [ 옵션 ] 파일 파일의라인수, 단어수,

More information

다. 최신 버전의 rpm 패키지 버전을 다운로드해 다음과 같이 설 치한다. 단 debuginfo의 rpm 패키지는 설치할 필요가 없다. 하기 위한 옵션이고, init는 저장소를 초기화하기 위한 cvs 명령 어이다. - 새로 설치한 경우 : rpm -ivh cvs* -

다. 최신 버전의 rpm 패키지 버전을 다운로드해 다음과 같이 설 치한다. 단 debuginfo의 rpm 패키지는 설치할 필요가 없다. 하기 위한 옵션이고, init는 저장소를 초기화하기 위한 cvs 명령 어이다. - 새로 설치한 경우 : rpm -ivh cvs* - 개발자를 위한 리눅스 유틸리티 활용법 CVS를 이용한 프로젝트 관리 연재의 마지막 시간에는 리눅스의 소스 버전 관리를 위한 툴을 소개한다. 이 툴은 흔히 형상 관리 시스템, 버전 관리 시스템이라고 일컬어진다. 윈도우나 리눅스 시스템 환경에는 여러 가지 형상 관 리 시스템이 존재하는데 여기서는 현재 오픈소스로 널리 알려진 CVS에 대해 살펴본다. 4 연 재 순

More information

현대영화연구

현대영화연구 와 에 나타난 섬과 소통의 의미 * 1) 곽수경 국립목포대학교 도서문화연구원 HK연구교수 1. 영화와 섬 2. 물리적인 섬과 상징된 섬 3. 소통수단 4. 결론 목 차 국문초록 최근에는 섬이 해양영토로 인식되고 다양한 방송프로그램을 통해 자주 소 개되면서 다각도로 섬에 대한 관심이 높아지고 있다. 하지만 그에 비해 섬을 배경으로 한 영화는

More information

5/12¼Ò½ÄÁö

5/12¼Ò½ÄÁö 2010년 5월호 통권 제36호 이플 은 청순하고 소박한 느낌을 주는 소리의 장점을 살려 지은 순 한글 이름으로 고객 여러분께 좋은 소식을 전해드리고자 하는 국제이주공사의 마음입니다. 늦었습니다. 봄도 늦었고, 저희 소식지도 늦었습니다. 봄 소식과 함께 전하려던 소식지가 봄 소식만큼이나 늦어져 버렸습니다. 격월로 나가던 소식지를 앞으로 분기별로 발행할 예정입니다.

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law),

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), 1, 2, 3, 4, 5, 6 7 8 PSpice EWB,, ,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), ( ),,,, (43) 94 (44)

More information

LCD Display

LCD Display LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display

More information

1. exit logout 하는 command 는아주간단하다. exit 을커맨드에서입력하고 return 키를누르면 logout 된다. 2. ls & command option 현재 directory 에서 file 의 list 를보는명령어, 즉 DOS 에서의 dir 에해

1. exit logout 하는 command 는아주간단하다. exit 을커맨드에서입력하고 return 키를누르면 logout 된다. 2. ls & command option 현재 directory 에서 file 의 list 를보는명령어, 즉 DOS 에서의 dir 에해 1. exit logout 하는 command 는아주간단하다. exit 을커맨드에서입력하고 return 키를누르면 logout 된다. 2. ls & command option 현재 directory 에서 file 의 list 를보는명령어, 즉 DOS 에서의 dir 에해당하는명령어로는 'ls' 가있다. (list 의약어.) ls 커맨드를실행시키면다음과같이표시된다.

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

농심-내지

농심-내지 Magazine of NONGSHIM 2012_ 03 농심이 필요할 때 Magazine of NONGSHIM 농심그룹 사보 농심 통권 제347호 발행일 2012년 3월 7일 월간 발행인 박준 편집인 유종석 발행처 (주)농심 02-820-7114 서울특별시 동작구 신대방동 370-1 홈페이지 www.nongshim.com 블로그 blog.nongshim.com

More information

2012 MARFPR Vol.92 0304 World Best Safety, Global INHA 2012. 03+04 C O N T E N T S Mar.Apr Vol.92 02 04 06 09 12 14 16 18 20 22 24 27 28 30 31 32 33 38 04 2012_ Mar + Apr 05 06 2012_ Mar + Apr 07 08 2012_

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

단위: 환경정책 형산강살리기 수중정화활동 지원 10,000,000원*90%<절감> 형산강살리기 환경정화 및 감시활동 5,000,000원*90%<절감> 9,000 4,500 04 민간행사보조 9,000 10,000 1,000 자연보호기념식 및 백일장(사생,서예)대회 10

단위: 환경정책 형산강살리기 수중정화활동 지원 10,000,000원*90%<절감> 형산강살리기 환경정화 및 감시활동 5,000,000원*90%<절감> 9,000 4,500 04 민간행사보조 9,000 10,000 1,000 자연보호기념식 및 백일장(사생,서예)대회 10 2013년도 본예산 일반회계 환경위생과 ~ 환경위생과 세 출 예 산 사 업 명 세 서 부서: 환경위생과 단위: 환경정책 환경위생과 8,231,353 3,622,660 4,608,693 국 2,472,543 기 144,000 도 976,102 시 4,638,708 자연환경보호(환경보호/환경보호일반) 5,910,247 1,462,545 4,447,702 국 1,817,800

More information

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770>

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770> 맛있는 한국으로의 초대 - 중화권 음식에서 한국 음식의 관광 상품화 모색하기 - 소속학교 : 한국외국어대학교 지도교수 : 오승렬 교수님 ( 중국어과) 팀 이 름 : 飮 食 男 女 ( 음식남녀) 팀 원 : 이승덕 ( 중국어과 4) 정진우 ( 중국어과 4) 조정훈 ( 중국어과 4) 이민정 ( 중국어과 3) 탐방목적 1. 한국 음식이 가지고 있는 장점과 경제적 가치에도

More information

Microsoft PowerPoint - unix02.ppt [호환 모드]

Microsoft PowerPoint - unix02.ppt [호환 모드] Chapter 2. 유닉스시스템시작 2.1 유닉스시스템사용과종료 22 2.2 쉘 (shell) BOOT 절차 Bootloader BIOS + LILO Kernel Booting Ramdisk uncompress HDD mount Ramdisk mount init getty -L ttys0 115200 vt100 getty tty1 login (ba)sh Linux

More information

- 2 -

- 2 - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 -

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

본문01

본문01 Ⅱ 논술 지도의 방법과 실제 2. 읽기에서 논술까지 의 개발 배경 읽기에서 논술까지 자료집 개발의 본래 목적은 초 중 고교 학교 평가에서 서술형 평가 비중이 2005 학년도 30%, 2006학년도 40%, 2007학년도 50%로 확대 되고, 2008학년도부터 대학 입시에서 논술 비중이 커지면서 논술 교육은 학교가 책임진다. 는 풍토 조성으로 공교육의 신뢰성과

More information

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7757 10 2004 9 Copyright 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A..,,.

More information

11¹Ú´ö±Ô

11¹Ú´ö±Ô A Review on Promotion of Storytelling Local Cultures - 265 - 2-266 - 3-267 - 4-268 - 5-269 - 6 7-270 - 7-271 - 8-272 - 9-273 - 10-274 - 11-275 - 12-276 - 13-277 - 14-278 - 15-279 - 16 7-280 - 17-281 -

More information

<C7CFB4C3B0F8BFF828C0FCC7CFC1F6B8F8C7D1C6EDC1F6292D31302E3128C3D6C1BE292D31302E31342E687770>

<C7CFB4C3B0F8BFF828C0FCC7CFC1F6B8F8C7D1C6EDC1F6292D31302E3128C3D6C1BE292D31302E31342E687770> 하늘편지 첫번째 모음집 전하지 못한 마지막 하늘공원에서 널 보낸다 그곳에선 늘 행복하길 바란다 사랑한다 - 하늘나무 중에서 - 울산시설공단 차례 발간사 _ 02 1 사랑하는 아버지, 어머니 _ 05 2 영원한 배필 당신 _ 59 3 나의 붕어빵 아들, 딸아! _ 71 4 그리운 할아버지, 할머니 _ 85 5 내 짝꿍 형, 누나, 오빠, 동생아! _ 131

More information

<BABBB9AE2E687770>

<BABBB9AE2E687770> 253 단소산조 퉁소산조 피리산조 형성시기 재검토 49) 이진원* Ⅰ. 머리말 Ⅱ. 기존 연구성과 검토 Ⅲ. 단소산조 퉁소산조 피리산조 형성시기 검토 Ⅳ. 단소산조 퉁소산조 피리산조 형성시기 재검토의 의의 Ⅴ. 맺음말 Ⅰ. 머릿말 우리나라의 대표적인 종취관악기(縱吹管樂器)에는 무황악기(無簧樂器)인 퉁소 단소가 있 고, 유황악기(有簧樂器)로 피리와 쇄납 등이

More information

¹Ì¼ú-°¢·ÐÁß¿ä³»¿ëb74öÁ¤2š

¹Ì¼ú-°¢·ÐÁß¿ä³»¿ëb74öÁ¤2š 1 PART 04 >> 4 2 3 PART 04 >> 4 4 5 PART 04 >> 4 6 7 PART 04 >> 4 8 9 PART 04 >> 4 10 11 PART 04 >> 4 12 13 PART 04 >> 4 14 15 PART 04 >> 4 16 17 PART 04 >> 4 18 19 PART 04 >> 4 20 21 PART 04 >> 4 22 23

More information

#Ȳ¿ë¼®

#Ȳ¿ë¼® http://www.kbc.go.kr/ A B yk u δ = 2u k 1 = yk u = 0. 659 2nu k = 1 k k 1 n yk k Abstract Web Repertoire and Concentration Rate : Analysing Web Traffic Data Yong - Suk Hwang (Research

More information

1_2•• pdf(••••).pdf

1_2•• pdf(••••).pdf 65% 41% 97% 48% 51% 88% 42% 45% 50% 31% 74% 46% I have been working for Samsung Engineering for almost six years now since I graduated from university. So, although I was acquainted with the

More information

3항사가 되기 위해 매일매일이 시험일인 듯 싶다. 방선객으로 와서 배에서 하루 남짓 지내며 지내며 답답함에 몸서리쳤던 내가 이제는 8개월간의 승선기간도 8시간같이 느낄 수 있을 만큼 항해사로써 체질마저 변해가는 듯해 신기하기도 하고 한편으론 내가 생각했던 목표를 향해

3항사가 되기 위해 매일매일이 시험일인 듯 싶다. 방선객으로 와서 배에서 하루 남짓 지내며 지내며 답답함에 몸서리쳤던 내가 이제는 8개월간의 승선기간도 8시간같이 느낄 수 있을 만큼 항해사로써 체질마저 변해가는 듯해 신기하기도 하고 한편으론 내가 생각했던 목표를 향해 HMS News Letter Hot News 16 th August. 2011 / Issue No.43 Think safety before you act! 국가인적자원개발컨소시엄 전용 홈페이지 개선 Open 국가인적자원개발컨소시엄 전용 홈페이지를 8/13(토) 새롭게 OPEN하였습니다. 금번 컨소시엄 전용 홈페이지의 개선과정에서 LMS(Learning Management

More information

May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool [TIP] Famil

May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool [TIP] Famil May 2014 BROWN Education Webzine vol.3 BROWN MAGAZINE Webzine vol.3 May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool

More information

2힉년미술

2힉년미술 제 회 Final Test 문항 수 배점 시간 개 00 점 분 다음 밑줄 친 부분의 금속 공예 가공 기법이 바르게 연결된 것은? 금, 은, 동, 알루미늄 등의 금속을 ᄀ불에 녹여 틀에 붓거나 금속판을 ᄂ구부리거나 망치로 ᄃ두들겨서 여러 가지 형태의 쓸모 있는 물건을 만들 수 있다. ᄀ ᄂ ᄃ ᄀ ᄂ ᄃ 조금 단금 주금 주금 판금 단금 단금 판금 주금 판금 단금

More information

1) 음운 체계상의 특징 음운이란 언어를 구조적으로 분석할 때, 가장 작은 언어 단위이다. 즉 의미분화 를 가져오는 최소의 단위인데, 일반적으로 자음, 모음, 반모음 등의 분절음과 음장 (소리의 길이), 성조(소리의 높낮이) 등의 비분절음들이 있다. 금산방언에서는 중앙

1) 음운 체계상의 특징 음운이란 언어를 구조적으로 분석할 때, 가장 작은 언어 단위이다. 즉 의미분화 를 가져오는 최소의 단위인데, 일반적으로 자음, 모음, 반모음 등의 분절음과 음장 (소리의 길이), 성조(소리의 높낮이) 등의 비분절음들이 있다. 금산방언에서는 중앙 금산 은 상위의 중부방언에 속한다. 충청남도의 핵방언권 중 (A)지역, 즉 충청 남도의 남부이며 전라북도와 주로 접경을 이루는 방언권이다. 그중 충청남도의 최 남단에서 전라북도와 경계를 이루고 있는 지역이 금산 이라는 점은 주목할 만하 다. 금산 지역이 전라북도와 지리적으로 인접해 있어 문화 등 제반 교류의 가능성 을 엿볼 수 있고, 이는 곧 금산과 전북방언과의

More information

09김정식.PDF

09김정식.PDF 00-09 2000. 12 ,,,,.,.,.,,,,,,.,,..... . 1 1 7 2 9 1. 9 2. 13 3. 14 3 16 1. 16 2. 21 3. 39 4 43 1. 43 2. 52 3. 56 4. 66 5. 74 5 78 1. 78 2. 80 3. 86 6 88 90 Ex e cu t iv e Su m m a r y 92 < 3-1> 22 < 3-2>

More information

0125_ 워크샵 발표자료_완성.key

0125_ 워크샵 발표자료_완성.key WordPress is a free and open-source content management system (CMS) based on PHP and MySQL. WordPress is installed on a web server, which either is part of an Internet hosting service or is a network host

More information

112초등정답3-수학(01~16)ok

112초등정답3-수학(01~16)ok Visang 1 110 0 30 0 0 10 3 01030 5 10 6 1 11 3 1 7 8 9 13 10 33 71 11 6 1 13 1 7\6+3=5 15 3 5\3+=17 8 9\8+=76 16 7 17 7 18 6 15 19 1 0 < 1 18 1 6\1+=76 6 < 76 6 16 1 7 \7+1=55 < 55 15 1 1 3 113 1 5? =60?6=10

More information

목차도비라

목차도비라 C o n t e n t s 010 020 028 036 045 057 062 070 078 085 094 102 111 120 129 140 148 156 165 172 178 184 191 198 205 210 215 222 232 240 C o n t e n t s 254 264 268 273 280 288 297 307 312 320 326 332 338

More information

라즈베리파이 프로그래밍_130912(최종).indd

라즈베리파이 프로그래밍_130912(최종).indd 파이썬으로 시작하는 라즈베리 파이 프로그래밍 Programming the Raspberry Pi Getting Started with Python Programming the Raspberry Pi: Getting Started with Python, 1st Edition. Korean Language Edition Copyright 2013 by McGraw-Hill

More information

Something that can be seen, touched or otherwise sensed

Something that can be seen, touched or otherwise sensed Something that can be seen, touched or otherwise sensed Things about an object Weight Height Material Things an object does Pen writes Book stores words Water have Fresh water Rivers Oceans have

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

2 공제회 소식 노후자금, 매달 연금처럼 받으세요 신용 등급 세분화 1~2등급 1000만원 확대 회원대여 이용 한도 변경 장기저축급여 분할급여금 낮은 세율로 높은 실수령액 시중 상품보다 안정성 높아 퇴직 시점 한 번만 신청 가능 한국교직원공제회의 연금형 상품 장기저축급

2 공제회 소식 노후자금, 매달 연금처럼 받으세요 신용 등급 세분화 1~2등급 1000만원 확대 회원대여 이용 한도 변경 장기저축급여 분할급여금 낮은 세율로 높은 실수령액 시중 상품보다 안정성 높아 퇴직 시점 한 번만 신청 가능 한국교직원공제회의 연금형 상품 장기저축급 제1070호 www.ktcunews.com 1인 방송 전성시대 지상파도 점령 생명보험 광고 카피 공모전 8월 16일까지 초통령 양띵. 양띵은 유튜브에 게임 방송 외에 총 8개의 채널을 운영하고 있다..#$ᴈ ᴏ ᩐ ῧᥫf ᴍ Ὧ ἳᥔ ᵁg ឤ ᯇἏᡤ ᦦ ῧ ᩓᵢ ἒῷ ᴕᡊᛁ ᵀᜈᵀᴏ ὄ ᯕ ᵀᴏ ᭐᪁ᴏfỠᩐg ᥫ ᴏ ᦧ បᚳ ᴗᡀ 미국 소년

More information

별지 제10호 서식

별지 제10호 서식 국립국어원 정보 보안 업무 처리 규정 제정 2013. 12. 26. 국립국어원 예규 제 95호 일부개정 2014. 3. 10. 국립국어원 예규 제111호 제 1 장 총 칙 제 1 조(목적) 이 규정은 국립국어원의 정보보안업무 수행에 필요한 사항을 규정함을 목적으로 한다. 제 2 조(정의) 이 규정에서 사용하는 용어의 정의는 다음 각 호와 같다. 1. 부서 라

More information

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2)

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2) Think Big, Act Big! Character People Literature Beautiful Life History Carcere Mamertino World Special Interview Special Writing Math English Quarts I have been driven many times to my knees by the overwhelming

More information

한국외국어대학교 세계와 만나는 가장 빠른 길 한국외대는 진리( 眞 理 ), 평화( 平 和 ), 창조( 創 造 )의 창학 정신을 바탕으로 국가와 세계 발전에 기여할 수 있는 잠재력을 지닌 인재를 선발하고자 노력하고 있습니다. 자주적 탐구인 합리적 사고 폭넓은 지식 정심대

한국외국어대학교 세계와 만나는 가장 빠른 길 한국외대는 진리( 眞 理 ), 평화( 平 和 ), 창조( 創 造 )의 창학 정신을 바탕으로 국가와 세계 발전에 기여할 수 있는 잠재력을 지닌 인재를 선발하고자 노력하고 있습니다. 자주적 탐구인 합리적 사고 폭넓은 지식 정심대 HUFS Where Learners Become Leaders 2016학년도 한국외국어대학교 학생부종합전형 길라잡이 한국외국어대학교 세계와 만나는 가장 빠른 길 한국외대는 진리( 眞 理 ), 평화( 平 和 ), 창조( 創 造 )의 창학 정신을 바탕으로 국가와 세계 발전에 기여할 수 있는 잠재력을 지닌 인재를 선발하고자 노력하고 있습니다. 자주적 탐구인 합리적

More information

우리나라의 전통문화에는 무엇이 있는지 알아봅시다. 우리나라의 전통문화를 체험합시다. 우리나라의 전통문화를 소중히 여기는 마음을 가집시다. 5. 우리 옷 한복의 특징 자료 3 참고 남자와 여자가 입는 한복의 종류 가 달랐다는 것을 알려 준다. 85쪽 문제 8, 9 자료

우리나라의 전통문화에는 무엇이 있는지 알아봅시다. 우리나라의 전통문화를 체험합시다. 우리나라의 전통문화를 소중히 여기는 마음을 가집시다. 5. 우리 옷 한복의 특징 자료 3 참고 남자와 여자가 입는 한복의 종류 가 달랐다는 것을 알려 준다. 85쪽 문제 8, 9 자료 통합 우리나라 ⑵ 조상님들이 살던 집에 대 해 아는 어린이 있나요? 저요. 온돌로 난방과 취사를 같이 했어요! 네, 맞아요. 그리고 조상님들은 기와집과 초가집에서 살았어요. 주무르거나 말아서 만들 수 있는 전통 그릇도 우리의 전통문화예요. 그리고 우리 옷인 한복은 참 아름 답죠? 여자는 저고리와 치마, 남자는 바지와 조끼를 입어요. 명절에 한복을 입고 절을

More information

상품 전단지

상품 전단지 2013 2013 추석맞이 추석맞이 지역우수상품 안내 안내 지역우수상품 지역 우수상품을 안내하여 드리오니 명절 및 행사용 선물로 많이 활용하여 주시기 바랍니다. 지역우수상품을 구입하시면 지역경제가 살아납니다. 즐거운 한가위 보내시고, 복 많이 받으세요! - 경기동부상공회의소 임직원 일동 - 지역우수상품을 구입하시면 지역경제가 살아납니다.

More information

::: 해당사항이 없을 경우 무 표시하시기 바랍니다. 검토항목 검 토 여 부 ( 표시) 시 민 : 유 ( ) 무 시 민 참 여 고 려 사 항 이 해 당 사 자 : 유 ( ) 무 전 문 가 : 유 ( ) 무 옴 브 즈 만 : 유 ( ) 무 법 령 규 정 : 교통 환경 재

::: 해당사항이 없을 경우 무 표시하시기 바랍니다. 검토항목 검 토 여 부 ( 표시) 시 민 : 유 ( ) 무 시 민 참 여 고 려 사 항 이 해 당 사 자 : 유 ( ) 무 전 문 가 : 유 ( ) 무 옴 브 즈 만 : 유 ( ) 무 법 령 규 정 : 교통 환경 재 시 민 문서번호 어르신복지과-1198 주무관 재가복지팀장 어르신복지과장 복지정책관 복지건강실장 결재일자 2013.1.18. 공개여부 방침번호 대시민공개 협 조 2013년 재가노인지원센터 운영 지원 계획 2013. 01. 복지건강실 (어르신복지과) ::: 해당사항이 없을 경우 무 표시하시기 바랍니다. 검토항목 검 토 여 부 ( 표시) 시 민 : 유 ( ) 무

More information