ๆญฏ๊ฐ•์˜๋…ธํŠธ.PDF

Size: px
Start display at page:

Download "ๆญฏ๊ฐ•์˜๋…ธํŠธ.PDF"

Transcription

1 LINUX 1. Linux install 2. Booting sequence 3. Kernel rebuilding 4. Patch 5. RPM (Red Hat Package Manager) 6. NFS (Network File System) 7. NIS (Network Information System) 8. Cluster 9. Daemon programming 10. Review -

2 1. Linux install 1. Repartition partition table - MBR(master boot record) primary, extended, logical partition tablesize 4 1 driveprimary partition extended - logical partition container Dual OS system: MS-DOS partitionlinux OS repartition 1. MS-DOS fdisk MS-DOS size partition and MS-DOS format 2. fips - partition paririon ** data ** maginpartition Drives and partitions under Linux First floppy - /dev/fd0 Second floppy - /dev/fd1 First hard disk (entire) - /dev/hda First hard disk, primary partition 1 - /dev/hda1 First hard disk, primary partition 2 - /dev/hda2 First hard disk, primary partition 3 - /dev/hda3 First hard disk, primary partition 4 - /dev/hda4 First hard disk, logical partition 1 - /dev/hda5 First hard disk, logical partition 2 - /dev/hda6... Second hard disk -- hda -> hdb SCSI -- hda -> sda First MS-DOS partition (C:) - /dev/hda1 Second MS-DOS partition (D:) - /dev/hda2 First Linux logical partition - /dev/hda5 Second Linux logical partition - /dev/hda6 2. Boot the Linux installation media * CD booting boot floppy - rawrite small Linux diskette

3 : rawrite boot.img a: 3. Create Linux partition # fdisk /dev/hda 4. Create filesystems (formatting) # mke2fs -c /dev/hda ! second extended filesystem make blocks(1024bytes) on /dev/hda2 # mount -t ext2 /dev/hda2 /home /etc/fstab boot mount 5. Create swap space swap space - virtual space filesystem # mkswap -c partition size # swapon partition # mkswap -c /dev/hda # swapon /dev/hda3 6. Install the software on the new filesystems 7. Booting using LILO (1) /etc/lilo.conf :boot=/dev/hda map=/boot/map install=/boot/boot.b prompt timeout=5 image=/boot/vmlinuz # Linux kernel label=linux root=/dev/hda2 # root partition other=/dev/hda1 # partition table=/dev/hda # partition table for /dev/hda1 label=win98 (2) # lilo Install Xfree86

4 X server, mouse, keyboard # xf86config /etc/x11/xf86config /usr/x11r6/bin/x : X server driver link file # ls -l X lrwxrwxrwx 1 root root 8 Mar 23 22:53 X -> XF86_Mach64 # ln -s /usr/x11r6/bin/xf86_mono /usr/x11r6/bin/x Network Configuration 1. hostname /etc/hostname hpc.kangnung.ac.kr 2. IP addres /etc/hosts localhost localhost.localdomain xxx hpc.kangnung.ac.kr hpc 3. nameserver /etc/resolv.conf nameserver router(gateway) /etc/sysconfig/network NETWORKING=yes FORWARD_IPV4=no HOSTNAME=hpc.kangnung.ac.kr DOMAINNAME=kangnung.ac.kr GATEWAY= GATEWAYDEV=eth0 * # route add * UNIX - /etc/defaultrouter

5 5. network interface /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 IPADDR= xxx NETMASK= NETWORK= BROADCAST= ONBOOT=yes BOOTPROTO=none USERCTL=no /etc/sysconfig/network-scripts/ifcfg-lo DEVICE=lo IPADDR= NETMASK= NETWORK= BROADCAST= ONBOOT=yes BOOTPROTO=none * # ifconfig *** # netcfg Add an user 1. user id /etc/passwd ykim::1000:1000:youngtae Kim:/home/ykim:/bin/tcsh /etc/shadow ykim:143:0:99999:7::: user home directory # cd /home # mkdir ykim # chown ykim ykim # chgrp 1000 ykim ** delete an user

6 2. Booting sequence Booting sequence (* lilo booting) 1. /etc/lilo.conf Linux kernel booting 2. kernel /sbin/init /etc/inittab : init 2.1 /etc/rc.d/rc.sysinit network <- /etc/sysconfig/network 2.2 /etc/rc.d/rc /etc/rc.d/rc5.d /etc booting /etc/rc.d/init.d (daemon) /etc/rc.d/rc.local - /etc/inittab booting /sbin/init /etc/rc resource configuration /etc/fstab mount /etc/exports NFS network /etc/hosts /etc/resolv.conf /etc/sysconfig/network /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-lo user administration /etc/passwd /etc/shadow

7 directories /bin UNIX, ls. /usr/bin/ /bin.. /sbin /usr/sbin root. /boot Booting kernel. /etc networking, NFS, mount. /var log. /var/spool. /lib /usr/lib. -l directory. /usr/lib/x11 X windows. /usr/include C #include /usr/src source /home home directory

8 3. Kernel rebuilding Kernel rebuilding - upgrade, kernel, device 0. cd /usr/src/linux 1. driver configuration - make config 2. makefile file dependency - make dep 3. object - make clean 4. kernel compile - make bzimage /usr/src/linux-2.2.5/arch/i386/boot/bzimage 5. module - make modules, make modules_install ** lib/modules/ object 6. Go have a coffee 7. Install the new kernel via LILO & rebooting kernel /etc/lilo.conf lilo /etc/lilo.conf image=/usr/src/linux-2.2.5/arch/i386/boot/bzimage label=linux_new root=/dev/hda1 read-only Loadable driver(module) # insmod module(object ) # lsmod # rmmod module # insmod /boot/ftape.o # lsmod Module: #pages ftape 40

9 # rmmod ftape

10 4. Patch,. A1: Hello World Happy Hours A2: Hello World HAPPY HOURS # diff -c A1 A2 > A.patch -- patch # patch -p0 < A.patch -- patch patching file `A1' -- A1 A2 0. kernel source down (2.2.5) 0.1 ftp.kernel.org/pub/linux/kernel/v2.2/linux tar.gz /usr/src 0.2 tar zvxf linux tar.gz root userhome directory 2. $ cd /usr/src/linux 3. $ patch -p0 < ~/jimb.linux sse-ptrace-2.patch 4. kernel recompile

11 5. RPM (Redhat Package Manager) Redhat Linux. ** Slakware *.tar.gz. (tar zvxf *.tar.gz - ) rpm : mc kr.i386.rpm mc: : version 0.91kr: release i386: architectre rpm: rpm rpm (-q) $ rpm -qa : rpm ** rpm -qa grep mc : mc $ rpm -qf /usr/bin/mc : /usr/bin/mc $ rpm -qi mc : mc $ rpm -qs mc : mc $ rpm -ql mc : mc rpm (-e) (a) $ rpm -e gmc $ rpm -e mc (b) mc dependency(gmcmc ). $ rpm -e --nodeps mc (dependency ) $ rpm -e gmc rpm _(-i) (CD )

12 1. mount CD ROM $ mount -t iso9660 /dev/cdrom /mnt/cdrom ** down. 2. $ cd mnt/cdrom/redhat/rpms 3. rpm. (a) $ rpm -ivh mc kr.i386.rpm $ rpm -ivh gmc kr.i386.rpm -v -h (b) mc gmc dependency. $ rpm -ivh --nodeps gmc kr.i386.rpm $ rpm -ivh mc kr.i386.rpm RPM RPM. *.src.rpm. 1. rpm source $ rpm --rebuild bitchx-75p3-1kr.src.rpm /usr/src/redhat/rpms/i386/bitchx-75p3-1kr.rpm 2. rpm $ rpm -ivh /usr/src/redhat/rpms/i386/bitchx-75p3-1kr.rpm

13 6. NFS (Network File System) NFS server ( ) 1. /etc/exports (UNIX: /etc/dfs/dfstab) /root (rw) : 2. $ /etc/rc.d/init.d/nfs stop $ /etc/rc.d/init.d/nfs start ( $ /etc/rc.d/init.d/nfs restart) ** Booting nfs start. NFS client( ) 1. $ mkdir /root2 (/root2.) 2. $ mount -t nfs -o bg -o soft :/root /root2 ** /etc/fstab (UNIX: /etc/vfstab) booting mount :/root /root2 nfs rw,bg,soft

14 7. NIS (Network Information System) -ID, yellowpage. NIS Server ( ) 1. ypserv (rpm ) ** $ tftp hpc > get /tftpboot/ypserv i386.rpm 2. /etc/sysconfig/network NISDOMAIN="210.kangnung.ac.kr" ** NISDOMAIN booting $ domainname 210.kangnung.ac.kr". 3. /etc/yp.config domain 210.kangnung.ac.kr server NIS database $ /usr/lib/yp/ypinit -m 5. Daemon restart (ypserv) $ /etc/rc.d/init.d/ypserv stop $ /etc/rc.d/init.d/ypserv start ( $ /etc/rc.d/init.d/ypserv restart) *** User-ID /etc/passwd, /etc/shadow 4 & 5

15 NIS Client 1. /etc/sysconfig/network NISDOMAIN="210.kangnung.ac.kr" ** NISDOMAIN booting $ domainname 210.kangnung.ac.kr". 2. /etc/yp.conf domain 210.kangnung.ac.kr server ** 1 & 2 "$ /usr/sbin/setup" Authentication configuration. 3. Daemon restart /etc/rc.d/init.d/ypbind stop /etc/rc.d/init.d/ypbind start ( /etc/rc.d/init.d/ypbind restart)

16 8. Cluster (message passing), - NFS, NIS - MPI(Message Passing Interface) (root user) 1. NFS, NIS 2. MPI (1) source down - mpich.tar.gz /usr/local directorydown (2) untar - $ tar zvxf mpich.tar.gz (3) $ cd mpich (4) $./configure $ make

17 ( user) 1. (1) home directory.hosts ) user0 4.rhosts jauser10.kangnung.ac.kr user0 jauser11.kangnung.ac.kr user0 jauser12.kangnung.ac.kr user0 jauser14.kangnung.ac.kr user0 ** rsh(remote Shell). (2) directorymachines machines jauser10.kangnung.ac.kr jauser11.kangnung.ac.kr jauser12.kangnung.ac.kr jauser14.kangnung.ac.kr 2. test (1) $ tftp hpc -> get /tftpboot/greetings.c (sample program down) (2) $ /usr/local/mpich/bin/mpicc -o greetings greetings.c -lm (3) $ /usr/local/mpich/bin/mpirun -np 4 -machinefile machines greetings

18 9. Daemon programming daemon process client service server. **tip** fork() child processparent process, child process. Sample Program #include<stdio.h> #include<stdlib.h> #include<signal.h> #include<string.h> #include<sys/param.h> #include<sys/types.h> #include<sys/socket.h> #include<sys/stat.h> #include<netinet/in.h> #include<arpa/inet.h> #include<sys/file.h> #include<sys/ioctl.h> int main(int argc, char *argv[]) { int serverfd, clientfd; /* the file descriptors */ struct sockaddr_in server_addr, client_addr; int addr_length=sizeof(client_addr); int port=6001; int childpid; /* used for a daemon */ int dataleft; char data[100]; int index; signal(sigttou,sig_ign); signal(sigttin,sig_ign); signal(sigtstp,sig_ign); childpid = fork(); if (childpid > 0) exit(0); #ifdef SITSTP setgrp(0, getpid()); if((index=open("/dev/tty", O_RDWR))>=0) { ioctl(index, TIOCNOTTY, (char *)NULL); close(index); } #else setpgrp(); signal(sighup, SIG_IGN); childpid=fork(); if(childpid > 0) exit(0); #endif serverfd = socket(af_inet, SOCK_STREAM,0); bzero((char *) &server_addr, sizeof(server_addr)); server_addr.sin_family=af_inet; server_addr.sin_addr.s_addr=htonl(inaddr_any); server_addr.sin_port=htons(port); bind(serverfd,(struct sockaddr *) &server_addr, sizeof(server_addr)); listen(serverfd, 2); sprintf(data,"hello from ykim at "); while (1) { clientfd = accept(serverfd, (struct sockaddr *) &client_addr, &addr_length); dataleft=sizeof(data); while(dataleft>0) { dataleft-=send(clientfd,data,dataleft,0); } close(clientfd); } }

19 client #include<stdio.h> #include<unistd.h> #include<strings.h> #include<stdlib.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h> int main(int argc, char *argv[]) { int index=0; int dataleft; struct sockaddr_in server_addr; int serverfd; int port=6001; char data[100]; bzero((char *) &server_addr, sizeof(server_addr)); /* usage: client -a address */ while((index=getopt(argc,argv,"a:"))!=-1) server_addr.sin_addr.s_addr=inet_addr(optarg); server_addr.sin_family=af_inet; server_addr.sin_port=htons(port); serverfd=socket(af_inet,sock_stream,0); connect(serverfd, (struct sockaddr *) &server_addr, sizeof(server_addr)); dataleft=sizeof(data); while(dataleft>0) dataleft-=recv(serverfd,&data,dataleft,0); printf("%s\n",data); close(serverfd); exit(0); }

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

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ (Host) set up : Linux Backend RS-232, Ethernet, parallel(jtag) Host terminal Target terminal : monitor (Minicom) JTAG Cross compiler Boot loader Pentium Redhat 9.0 Serial port Serial cross cable Ethernet

More information

์Šฌ๋ผ์ด๋“œ ์ œ๋ชฉ ์—†์Œ

์Šฌ๋ผ์ด๋“œ ์ œ๋ชฉ ์—†์Œ < > Target cross compiler Target code Target Software Development Kit (SDK) T-Appl T-Appl T-VM Cross downloader Cross debugger Case 1) Serial line Case 2) LAN line LAN line T-OS Target debugger Host System

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

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

Sun Java System Messaging Server 63 64

Sun Java System Messaging Server 63 64 Sun Java System Messaging Server 6.3 64 Sun Java TM System Communications Suite Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 820 2868 2007 7 Copyright 2007 Sun Microsystems,

More information

Gentoo linux ์„ค์น˜๊ธฐ๋ก

Gentoo linux ์„ค์น˜๊ธฐ๋ก GentooInstall Gentoo linux 1 Gentoo linux 11 12 121 122 123 13 131 Live CD 132 Network 133 Root ( ) 134 14 Mirror 141 chroot 142 Portage 143 144 Boot strap 145 System 146 147 fstab 148 Kernel 1481 Gentoo

More information

แ„’แ…ฑแ†ฏแ„‰แ…ฆแ„†แ…ตแ„‚แ…ก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

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

untitled

untitled GUI Programming in Embedded Linux Embedded System Lab. II GUI 1:1 Embedded System Lab. II 2 Qt QT trolltech cross GUI QT ( ),, Mac, Linux, *nix C++ Qt X11 C++ GUI. (, ). Qt. Embedded System Lab. II 3 Qt/Embedded

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

๋ง๊ณ 100 ๋ณด๋“œ๋กœ ๋†€์•„๋ณด์ž-4

๋ง๊ณ 100 ๋ณด๋“œ๋กœ ๋†€์•„๋ณด์ž-4 ๋ง๊ณ  100 ๋ณด๋“œ๋กœ๋†€์•„๋ณด์ž -4 Minicom,tftp,nfs ์„ค์ •,vnc ์„ค์ • minicom ์„ค์ • Minicom ์„ค์ • >#yum install minicom >#ls /dev/ttyusb* ># minicom s Minicom ์„ค์ • Serial Device :/dev/ttyusb0 Baudrate:115200 Hardware Flow control: NO

More information

ๆญฏ467_final.PDF

ๆญฏ467_final.PDF /docs/en/tls65userguide.pdf /docs/en/tls65installguide.pdf /docs/en/release_notes . Bold monospace Italic bold monospace password Regular non-bold monospace host_address > > 5. IP IP. IP DHCP IP.

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

Microsoft PowerPoint - 03-Development-Environment-2.ppt

Microsoft PowerPoint - 03-Development-Environment-2.ppt ๊ฐœ๋ฐœํ™˜๊ฒฝ 2 ์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ์†Œํ”„ํŠธ์›จ์–ด I ์ฐจ๋ก€ ๋ถ€ํŠธ๋กœ๋”์˜๊ธฐ๋Šฅ, ์ปดํŒŒ์ผ๋ฐฉ๋ฒ• ์ปค๋„์˜๊ธฐ๋Šฅ, ์ปดํŒŒ์ผ๋ฐฉ๋ฒ• ํŒŒ์ผ์‹œ์Šคํ…œ์˜๊ธฐ๋Šฅ, ์ƒ์„ฑ๋ฐฉ๋ฒ• Host-KIT ๋„คํŠธ์›Œํฌ์—ฐ๊ฒฐ๋ฐฉ๋ฒ• (Bootp, TFTP, NFS) ๊ฐœ๋ฐœํ™˜๊ฒฝ 2 2 ๋ถ€ํŠธ๋กœ๋”์˜๊ธฐ๋Šฅ ํ•˜๋“œ์›จ์–ด์ดˆ๊ธฐํ™” CPU clock, Memory Timing, Interrupt, UART, GPIO ๋“ฑ์„์ดˆ๊ธฐํ™” ์ปค๋„๋กœ๋“œ ์ปค๋„์ด๋ฏธ์ง€๋ฅผ flash

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ Network Programming Jo, Heeseung Network ์‹ค์Šต ๋„คํŠธ์›Œํฌํ”„๋กœ๊ทธ๋ž˜๋ฐ ๋ฉ€๋ฆฌ๋–จ์–ด์ ธ์žˆ๋Š”ํ˜ธ์ŠคํŠธ๋“ค์ด์„œ๋กœ๋ฐ์ดํ„ฐ๋ฅผ์ฃผ๊ณ ๋ฐ›์„์ˆ˜์žˆ๋„๋กํ”„๋กœ๊ทธ๋žจ์„๊ตฌํ˜„ํ•˜๋Š”๊ฒƒ ํŒŒ์ผ๊ณผ๋Š”๋‹ฌ๋ฆฌ๋ฐ์ดํ„ฐ๋ฅผ์ฃผ๊ณ ๋ฐ›์„๋Œ€์ƒ์ด๋ฉ€๋ฆฌ๋–จ์–ด์ ธ์žˆ๊ธฐ๋•Œ๋ฌธ์—์†Œํ”„ํŠธ์›จ์–ด์ฐจ์›์—์„œํ˜ธ์ŠคํŠธ๋“ค๊ฐ„์—์—ฐ๊ฒฐ์„ํ•ด์ฃผ๋Š”์žฅ์น˜๊ฐ€ํ•„์š” ์ด๋Ÿฌํ•œ๊ธฐ๋Šฅ์„ํ•ด์ฃผ๋Š”์žฅ์น˜๋กœ์†Œ์ผ“์ด๋ผ๋Š”์ธํ„ฐํŽ˜์ด์Šค๋ฅผ๋งŽ์ด์‚ฌ์šฉ ์†Œ์ผ“ํ”„๋กœ๊ทธ๋ž˜๋ฐ์ด๋ž€์šฉ์–ด์™€๋„คํŠธ์›Œํฌํ”„๋กœ๊ทธ๋ž˜๋ฐ์ด๋ž‘์šฉ์–ด๊ฐ€๊ฐ™์€์˜๋ฏธ๋กœ์‚ฌ์šฉ

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

05ร€รฅ

05ร€รฅ CHAPTER 05 NT,, XP,. NT NTFS, XP. D,,. XP x NT,,, ( x, x ). NT/ /XP,.. PC NT NT. + Guide to Software: Understanding and Installing Windows 2000 and Windows NT + SOFTWARE Guide to Software 3/e SOFTWARE

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

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

Network seminar.key

Network seminar.key Intro to Network .. 2 4 ( ) ( ). ?!? ~! This is ~ ( ) /,,,???? TCP/IP Application Layer Transfer Layer Internet Layer Data Link Layer Physical Layer OSI 7 TCP/IP Application Layer Transfer Layer 3 4 Network

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

๋ณธ๋ฌธ์„œ๋Š” ์ดˆ๊ธ‰์ž๋“ค์„ ๋Œ€์ƒ์œผ๋กœ ์ตœ๋Œ€ํ•œ ์‰ฝ๊ฒŒ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค. ๋ณธ๋ฌธ์„œ์—์„œ๋Š” ์„ค์น˜๋ฐฉ๋ฒ•๋งŒ ๊ธฐ์ˆ ํ–ˆ์œผ๋ฉฐ ์ž์„ธํ•œ ์„ค์ •๋ฐฉ๋ฒ•์€ ๊ฒ€์ƒ‰์„ ํ†ตํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. 1. ์„ค์น˜๊ฐœ์š” ์›Œ๋“œํ”„๋ ˆ์Šค๋Š” ๋ธ”๋กœ๊ทธ ํ˜•ํƒœ์˜ ํ™ˆํŽ˜์ด์ง€๋ฅผ ๋น ๋ฅด๊ฒŒ ๋งŒ๋“ค์ˆ˜ ์žˆ๊ฒŒ ํ•ด ์ฃผ๋Š” ํ”„๋กœ๊ทธ๋žจ์ž…๋‹ˆ๋‹ค. ๋‹ค์–‘ํ•œ ๊ธฐ๋Šฅ์„ ํ•˜๋Š” ํ”Œ๋Ÿฌ๊ทธ์ธ๊ณผ ๋””์ž์ธ

๋ณธ๋ฌธ์„œ๋Š” ์ดˆ๊ธ‰์ž๋“ค์„ ๋Œ€์ƒ์œผ๋กœ ์ตœ๋Œ€ํ•œ ์‰ฝ๊ฒŒ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค. ๋ณธ๋ฌธ์„œ์—์„œ๋Š” ์„ค์น˜๋ฐฉ๋ฒ•๋งŒ ๊ธฐ์ˆ ํ–ˆ์œผ๋ฉฐ ์ž์„ธํ•œ ์„ค์ •๋ฐฉ๋ฒ•์€ ๊ฒ€์ƒ‰์„ ํ†ตํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. 1. ์„ค์น˜๊ฐœ์š” ์›Œ๋“œํ”„๋ ˆ์Šค๋Š” ๋ธ”๋กœ๊ทธ ํ˜•ํƒœ์˜ ํ™ˆํŽ˜์ด์ง€๋ฅผ ๋น ๋ฅด๊ฒŒ ๋งŒ๋“ค์ˆ˜ ์žˆ๊ฒŒ ํ•ด ์ฃผ๋Š” ํ”„๋กœ๊ทธ๋žจ์ž…๋‹ˆ๋‹ค. ๋‹ค์–‘ํ•œ ๊ธฐ๋Šฅ์„ ํ•˜๋Š” ํ”Œ๋Ÿฌ๊ทธ์ธ๊ณผ ๋””์ž์ธ ์Šค๋งˆ์ผ์„œ๋ธŒ CLOUD_Virtual ์›Œ๋“œํ”„๋ ˆ์Šค ์„ค์น˜ (WORDPRESS INSTALL) ์Šค๋งˆ์ผ์„œ๋ธŒ ๊ฐ€์ƒํ™”์‚ฌ์—…๋ณธ๋ถ€ Update. 2012. 09. 04. ๋ณธ๋ฌธ์„œ๋Š” ์ดˆ๊ธ‰์ž๋“ค์„ ๋Œ€์ƒ์œผ๋กœ ์ตœ๋Œ€ํ•œ ์‰ฝ๊ฒŒ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค. ๋ณธ๋ฌธ์„œ์—์„œ๋Š” ์„ค์น˜๋ฐฉ๋ฒ•๋งŒ ๊ธฐ์ˆ ํ–ˆ์œผ๋ฉฐ ์ž์„ธํ•œ ์„ค์ •๋ฐฉ๋ฒ•์€ ๊ฒ€์ƒ‰์„ ํ†ตํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. 1. ์„ค์น˜๊ฐœ์š” ์›Œ๋“œํ”„๋ ˆ์Šค๋Š” ๋ธ”๋กœ๊ทธ ํ˜•ํƒœ์˜ ํ™ˆํŽ˜์ด์ง€๋ฅผ ๋น ๋ฅด๊ฒŒ ๋งŒ๋“ค์ˆ˜ ์žˆ๊ฒŒ

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

๋ง๊ณ 100 ๋ณด๋“œ๋กœ ๋†€์•„๋ณด์ž -13

๋ง๊ณ 100 ๋ณด๋“œ๋กœ ๋†€์•„๋ณด์ž -13 ๋ฆฌ๋ˆ…์Šค๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ฒ„๊ฐœ์š” http://cafe.naver.com/embeddedcrazyboys http://www.mangoboard.com ๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ฒ„๊ฐœ์š” ๋””๋ฐ”์ด์Šค (Device ) ๋„คํŠธ์›Œํฌ์–ด๋Œ‘ํ„ฐ, LCD ๋””์Šคํ”Œ๋ ˆ์ด, PCMCIA, Audio, ํ„ฐ๋ฏธ๋„, ํ‚ค๋ณด๋“œ, ํ•˜๋“œ๋””์Šค ํฌ, ํ”Œ๋กœํ”ผ๋””์Šคํฌ, ํ”„๋ฆฐํ„ฐ๋“ฑ๊ณผ๊ฐ™์€์ฃผ๋ณ€์žฅ์น˜๋“ค์„๋งํ•จ ๋””๋ฐ”์ด์Šค์˜๊ตฌ๋™์—ํ•„์š”ํ•œํ”„๋กœ๊ทธ๋žจ, ์ฆ‰๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ฒ„๊ฐ€ํ•„์ˆ˜์ ์œผ๋กœ์š”๊ตฌ

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

LN_5_Rootfs

LN_5_Rootfs ํ”„๋กœ์ ํŠธ 2 Root Filesystem ๋‹จ๊ตญ๋Œ€ํ•™๊ต ์ปดํ“จํ„ฐํ•™๊ณผ 2009 ๋ฐฑ์Šน์žฌ baeksj@dankook.ac.kr http://embedded.dankook.ac.kr/~baeksj Ramdisk ์—๋Œ€ํ•œ์ดํ•ด ๊ฐ•์˜๋ชฉํ‘œ Root filesystem ์˜๊ตฌ์กฐ์ดํ•ด Root filesystem ์ œ์ž‘๊ณผ์ •์ดํ•ด Ramdisk ๊ธฐ๋ฐ˜ root filesystem ์ œ์ž‘ 3 RAMdisk?

More information

์†Œ๊ฐœ TeraStation ์„ ๊ตฌ์ž…ํ•ด ์ฃผ์…”์„œ ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค! ์ด ์‚ฌ์šฉ ์„ค๋ช…์„œ๋Š” TeraStation ๊ตฌ์„ฑ ์ •๋ณด๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค. ์ œํ’ˆ์€ ๊ณ„์† ์—…๋ฐ์ดํŠธ๋˜๋ฏ€๋กœ, ์ด ์„ค๋ช…์„œ์˜ ์ด๋ฏธ์ง€ ๋ฐ ํ…์ŠคํŠธ๋Š” ์‚ฌ์šฉ์ž๊ฐ€ ๋ณด์œ  ์ค‘์ธ TeraStation ์— ํ‘œ์‹œ ๋œ ์ด๋ฏธ์ง€ ๋ฐ ํ…์ŠคํŠธ์™€ ์•ฝ๊ฐ„ ๋‹ค๋ฅผ ์ˆ˜

์†Œ๊ฐœ TeraStation ์„ ๊ตฌ์ž…ํ•ด ์ฃผ์…”์„œ ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค! ์ด ์‚ฌ์šฉ ์„ค๋ช…์„œ๋Š” TeraStation ๊ตฌ์„ฑ ์ •๋ณด๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค. ์ œํ’ˆ์€ ๊ณ„์† ์—…๋ฐ์ดํŠธ๋˜๋ฏ€๋กœ, ์ด ์„ค๋ช…์„œ์˜ ์ด๋ฏธ์ง€ ๋ฐ ํ…์ŠคํŠธ๋Š” ์‚ฌ์šฉ์ž๊ฐ€ ๋ณด์œ  ์ค‘์ธ TeraStation ์— ํ‘œ์‹œ ๋œ ์ด๋ฏธ์ง€ ๋ฐ ํ…์ŠคํŠธ์™€ ์•ฝ๊ฐ„ ๋‹ค๋ฅผ ์ˆ˜ ์‚ฌ์šฉ ์„ค๋ช…์„œ TeraStation Pro II TS-HTGL/R5 ํŒจํ‚ค์ง€ ๋‚ด์šฉ๋ฌผ: ๋ณธ์ฒด (TeraStation) ์ด๋”๋„ท ์ผ€์ด๋ธ” ์ „์› ์ผ€์ด๋ธ” TeraNavigator ์„ค์น˜ CD ์‚ฌ์šฉ ์„ค๋ช…์„œ (์ด ์„ค๋ช…์„œ) ์ œํ’ˆ ๋ณด์ฆ์„œ www.buffalotech.com ์†Œ๊ฐœ TeraStation ์„ ๊ตฌ์ž…ํ•ด ์ฃผ์…”์„œ ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค! ์ด ์‚ฌ์šฉ ์„ค๋ช…์„œ๋Š” TeraStation ๊ตฌ์„ฑ ์ •๋ณด๋ฅผ

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ FLIGHTGEAR Jo, Heeseung INDEX 1. FlightGear ์‹คํ–‰ 2. FlightGear Http ํ†ต์‹  3. FlightGear Protocol ๊ตฌ์กฐ 4. FlightGear์™€ํ†ต์‹ ํ•˜๊ธฐ์œ„ํ•œ Client Server๊ฐ„์˜๊ตฌ์กฐ 5. FlightGear UDPํ†ต์‹ ์‹คํ–‰์˜ˆ์ œ 2 FLIGHTGEAR ์‹คํ–‰ FlightGear http://flightgear.org

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ FlightGear Jo, Heeseung FlightGear 2.10 FlightGear ์—์„œ Http, UDP ํ”„๋กœํ† ์ฝœ์„์‹คํ–‰ํ• ์ˆ˜์žˆ๋Š”ํ™˜๊ฒฝ์„์„ค๋ช…ํ•œ๋ฌธ์„œ 1. FlightGear ์‹คํ–‰ 2. FlightGear Http ํ†ต์‹  3. FlightGear Protocol ๊ตฌ์กฐ 4. FlightGear ์™€ํ†ต์‹ ํ•˜๊ธฐ์œ„ํ•œ Client Server ๊ฐ„์˜๊ตฌ์กฐ 5. FlightGear

More information

FlightGear 2.10

FlightGear 2.10 FlightGear 2.10 FlightGear project ๋ฅผ์›ํ• ํžˆ์ง„ํ–‰ํ• ์ˆ˜์žˆ๋„๋ก์„ค๋ช…๋˜์žˆ๋Š”๊ธฐ์ˆ ๋ฌธ์„œ์ž…๋‹ˆ๋‹ค. FlightGear ๋Š”์œˆ๋„์šฐ, Linux ํ™˜๊ฒฝ์ƒ์—์„œ๊ตฌ๋™ํ• ์ˆ˜์žˆ๋Š”๋น„ํ–‰ Simulator ํ”„๋กœ๊ทธ๋žจ์ž…๋‹ˆ๋‹ค. 2013-05-18 Kim Tae Hoon Documentaion1.1v Language:Ko_kr FlightGear 2.10 1. FlightGear

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค๊ฐœ๋ฐœํ™˜๊ฒฝ๊ตฌ์ถ• Jo, Heeseung ๊ฐœ๋ฐœํ™˜๊ฒฝ HBE-SM5-S4210 ๊ฐœ๋ฐœํ™˜๊ฒฝ ํƒ€๊ฒŸ๋ณด๋“œ์™€๋ฆฌ๋ˆ…์Šค๊ฐ€์„ค์น˜๋œํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐ๊ฐ€ํ•„์š” ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค๊ฐœ๋ฐœํ™˜๊ฒฝ - ํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐํ™˜๊ฒฝ์„ค์น˜ - ํ˜ธ์ŠคํŠธ์™€ํƒ€๊ฒŸ์—ฐ๊ฒฐ - ๋””๋ฒ„๊ทธํ™˜๊ฒฝ ํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐ๋Š”์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ์˜๋™์ž‘์„๋ชจ๋‹ˆํ„ฐ๋งํ•˜๋Š”๋””๋ฒ„๊น…ํ™˜๊ฒฝ์œผ๋กœ์„œ์˜์—ญํ• ๋„์ˆ˜ํ–‰ ์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ์„์œ„ํ•œ์†Œํ”„ํŠธ์›จ์–ด๋ฅผ๊ฐœ๋ฐœํ•˜๊ธฐ์œ„ํ•ด์„œํ˜ธ์ŠคํŠธ์‹œ์Šคํ…œ์—๊ตฌ์ถ•ํ•˜๋Š”๊ฐœ๋ฐœํ™˜๊ฒฝ ๊ต์ฐจ๊ฐœ๋ฐœํ™˜๊ฒฝ

More information

์šด์˜์ฒด์ œ์‹ค์Šต_๋ช…๋ น์–ด

์šด์˜์ฒด์ œ์‹ค์Šต_๋ช…๋ น์–ด ์šด์˜์ฒด์ œ์‹ค์Šต ๋ฆฌ๋ˆ…์Šค๋„คํŠธ์›Œํฌ๊ธฐ๋ณธ๊ฐœ๋…๋ฐ์„ค์ • ์„œ ๊ธฐ์˜ฅ Contents ๋„คํŠธ์›Œํฌ์šฉ์–ด์ •์˜ IP ์ฃผ์†Œ ๋„คํŠธ์›Œํฌ๊ธฐ๋ณธ๋ช…๋ น์–ด ๋„คํŠธ์›Œํฌ๊ด€๋ฆฌ๋ช…๋ น์–ด ๋„คํŠธ์›Œํฌ์„ค์ •ํŒŒ์ผ telnet ์„œ๋ฒ„์„ค์ • ๋„คํŠธ์›Œํฌ์šฉ์–ด์ •์˜ ๋„คํŠธ์›Œํฌ (Network) : ์ „์ž์ ์œผ๋กœ๋ฐ์ดํ„ฐ๋ฅผ์ฃผ๊ณ ๋ฐ›๊ธฐ์œ„ํ•œ๋ชฉ์ ์œผ๋กœ์—ฐ๊ฒฐ๋œ 2 ๊ฐœ์ด์ƒ์˜์ปดํ“จํ„ฐ์‹œ์Šคํ…œ IP ์ฃผ์†Œ์™€ Ethernet ์ฃผ์†Œ IP ์ฃผ์†Œ : ๋„คํŠธ์›Œํฌ์—์—ฐ๊ฒฐ๋œ์‹œ์Šคํ…œ์„๊ตฌ๋ถ„ํ•˜๋Š”์†Œํ”„ํŠธ์›จ์–ด์ ์ธ์ฃผ์†Œ

More information

untitled

untitled Memory leak Resource ๏ฆŠ ๏คŠ 3-tier ๏จŠ Out of Memory( ๏ฅง ) Memory leak( ๏ฅŽ ) ๏งบ Application Server Crash ๏งค Server ๏งบ Crash ๏ง JVM ๏ฅฏ ๏ฆต ๏จˆ๏ฅฏ ๏ฅฏ Memory leak Resource Out of Memory Memory leak Out of Memory ๏ฅง๏ฅ Java heap

More information

Snort Install Manual Ad2m VMware libnet tar.gz DebianOS libpcap tar.gz Putty snort tar.gz WinSCP snort rules 1. ์ฒซ๋ฒˆ์งธ๋กœ๋„คํŠธ์›Œํฌ์„ค์ • 1) ifconf

Snort Install Manual Ad2m VMware libnet tar.gz DebianOS libpcap tar.gz Putty snort tar.gz WinSCP snort rules 1. ์ฒซ๋ฒˆ์งธ๋กœ๋„คํŠธ์›Œํฌ์„ค์ • 1) ifconf Snort Install Manual Ad2m VMware libnet-1.1.5.tar.gz DebianOS libpcap-1.1.1.tar.gz Putty snort-2.8.6.tar.gz WinSCP snort rules 1. ์ฒซ๋ฒˆ์งธ๋กœ๋„คํŠธ์›Œํฌ์„ค์ • 1) ifconfig ๋ช…๋ น์–ด๋กœํ˜„์žฌ IP๋ฅผํ™•์ธํ•ด๋ณธ๋‹ค. 2) vi /etc/network/interfaces ๋„คํŠธ์›Œํฌ์„ค์ •ํŒŒ์ผ์—์•„๋ž˜์™€๊ฐ™์ด์„ค์ •์„ํ•ด์ค€๋‹ค.

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

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation ๊ทธ๋ฆผ 1. Insight Base ๋ฉ”์ธ๋ฉ”๋‰ด Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

Backup Exec

Backup Exec (sjin.kim@veritas.com) www.veritas veritas.co..co.kr ? 24 X 7 X 365 Global Data Access.. 100% Storage Used Terabytes 9 8 7 6 5 4 3 2 1 0 2000 2001 2002 2003 IDC (TB) 93%. 199693,000 TB 2000831,000 TB.

More information

ร€ยฉยตยตยณร—ร†ยฎยฟรทร‡รยทรŽยฑร—ยทยกยนร–4ร€รฅ_รƒร–รยพ

ร€ยฉยตยตยณร—ร†ยฎยฟรทร‡รยทรŽยฑร—ยทยกยนร–4ร€รฅ_รƒร–รยพ P a 02 r t Chapter 4 TCP Chapter 5 Chapter 6 UDP Chapter 7 Chapter 8 GUI C h a p t e r 04 TCP 1 3 1 2 3 TCP TCP TCP [ 4 2] listen connect send accept recv send recv [ 4 1] PC Internet Explorer HTTP HTTP

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

์ œ1์žฅ Unix๋ž€ ๋ฌด์—‡์ธ๊ฐ€?

์ œ1์žฅ  Unix๋ž€ ๋ฌด์—‡์ธ๊ฐ€? 1 ์†Œ์ผ“ 2 1 ์†Œ์ผ“ ํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ ๋„คํŠธ์›Œํฌ์‘์šฉํ”„๋กœ๊ทธ๋žจ ํด๋ฆฌ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ์„๊ธฐ๋ฐ˜์œผ๋กœ๋™์ž‘ํ•œ๋‹ค. ํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ ํ•˜๋‚˜์˜์„œ๋ฒ„ํ”„๋กœ์„ธ์Šค์™€์—ฌ๋Ÿฌ๊ฐœ์˜ํด๋ผ์ด์–ธํŠธ๋กœ๊ตฌ์„ฑ๋œ๋‹ค. ์„œ๋ฒ„๋Š”์–ด๋–ค์ž์›์„๊ด€๋ฆฌํ•˜๊ณ ํด๋ผ์ด์–ธํŠธ๋ฅผ์œ„ํ•ด์ž์›๊ด€๋ จ์„œ๋น„์Šค๋ฅผ์ œ๊ณตํ•œ๋‹ค. 3 ์†Œ์ผ“์˜์ข…๋ฅ˜ ์†Œ์ผ“ ๋„คํŠธ์›Œํฌ์—๋Œ€ํ•œ์‚ฌ์šฉ์ž์ˆ˜์ค€์˜์ธํ„ฐํŽ˜์ด์Šค๋ฅผ์ œ๊ณต ์†Œ์ผ“์€์–‘๋ฐฉํ–ฅํ†ต์‹ ๋ฐฉ๋ฒ•์œผ๋กœํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ์„๊ธฐ๋ฐ˜์œผ๋กœํ”„๋กœ์„ธ์Šค์‚ฌ์ด์˜ํ†ต์‹ ์—๋งค์šฐ์ ํ•ฉํ•˜๋‹ค.

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

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

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค๊ฐœ๋ฐœํ™˜๊ฒฝ๊ตฌ์ถ• Jo, Heeseung ๊ฐœ๋ฐœํ™˜๊ฒฝ HBE-SM5-S4210 ๊ฐœ๋ฐœํ™˜๊ฒฝ ํƒ€๊ฒŸ๋ณด๋“œ์™€๋ฆฌ๋ˆ…์Šค๊ฐ€์„ค์น˜๋œํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐ๊ฐ€ํ•„์š” ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค๊ฐœ๋ฐœํ™˜๊ฒฝ - ํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐํ™˜๊ฒฝ์„ค์น˜ - ํ˜ธ์ŠคํŠธ์™€ํƒ€๊ฒŸ์—ฐ๊ฒฐ - ๋””๋ฒ„๊ทธํ™˜๊ฒฝ ํ˜ธ์ŠคํŠธ์ปดํ“จํ„ฐ๋Š”์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ์˜๋™์ž‘์„๋ชจ๋‹ˆํ„ฐ๋งํ•˜๋Š”๋””๋ฒ„๊น…ํ™˜๊ฒฝ์œผ๋กœ์„œ์˜์—ญํ• ๋„์ˆ˜ํ–‰ ์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ์„์œ„ํ•œ์†Œํ”„ํŠธ์›จ์–ด๋ฅผ๊ฐœ๋ฐœํ•˜๊ธฐ์œ„ํ•ด์„œํ˜ธ์ŠคํŠธ์‹œ์Šคํ…œ์—๊ตฌ์ถ•ํ•˜๋Š”๊ฐœ๋ฐœํ™˜๊ฒฝ ๊ต์ฐจ๊ฐœ๋ฐœํ™˜๊ฒฝ

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ์˜ ๊ตญ๋‚ด์™ธ ํ˜„ํ™ฉ ์กฐ์‚ฌ ๊ฐ€์ƒ๋Œ€ํ•™ ํ”Œ๋žซํผ ๊ฐœ๋ฐœ ์ด์ƒ์ ์ธ ๊ฐ€์ƒ๋Œ€ํ•™์‹œ์Šคํ…œ์˜ ๋ฏธ๋ž˜์ƒ ์ œ์•ˆ 5 ์›น-๊ธฐ๋ฐ˜ ๊ฐ€์ƒ๋Œ€ํ•™ ์‹œ์Šคํ…œ ์ „ํ†ต์ ์ธ ๊ต์ˆ˜ ๋ฐฉ๋ฒ• ์‹œ๊ฐ„/๊ณต๊ฐ„ ์ œ์•ฝ์„ ๊ทน๋ณตํ•œ ํ•™์Šต๋™๊ธฐ ๋ถ€์—ฌ ๊ต์ˆ˜์˜ ์ผ๋ฐฉ์ ์ธ ๋‚ด์šฉ์ „๋‹ฌ ๊ต์ˆ˜์™€ ํ•™์ƒ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๋™๋ฃŒ ํ•™์ƒ๋“ค ๊ฐ„์˜ ์ƒํ˜ธ์ž‘์šฉ ๊ฐ€์ƒ๋Œ€ํ•™ ์šด์˜ ๊ณต์ง€์‚ฌํ•ญ,๊ฐ•์˜๋ก ์ž๋ฃŒ์‹ค, ๋ฉ”๋ชจ ์งˆ์˜์‘๋‹ต,

More information

vi ์‚ฌ์šฉ๋ฒ•

vi ์‚ฌ์šฉ๋ฒ• ๋„คํŠธ์›Œํฌํ”„๋กœ๊ทธ๋ž˜๋ฐ 6 ์žฅ๊ณผ์ œ์ƒ˜ํ”Œ์ฝ”๋“œ - 1:1 ์ฑ„ํŒ… (udp ๋ฒ„์ „ ) ๊ณผ์ œ ์„œ๋ฒ„์—์„œ๋จผ์ € bind ํ•˜๊ณ ๊ทธํฌํŠธ๋ฅผ๋‹ค๋ฅธ์‚ฌ๋žŒ์—๊ฒŒ์•Œ๋ ค์ค„๊ฒƒ ํด๋ผ์ด์–ธํŠธ์—์„œ์•Œ๋ ค์ค€ํฌํŠธ๋กœ์ ‘์† ์„œ๋กœ๊ฐ„์—ํ‚ค๋ณด๋“œ์ž…๋ ฅ์„๋ฐ›์•„์ƒ๋Œ€๋ฐฉ์—๊ฒŒ๋ฉ”์‹œ์ง€์ „์†ก 2 Makefile 1 SRC_DIR =../../common 2 COM_OBJS = $(SRC_DIR)/addressUtility.o $(SRC_DIR)/dieWithMessage.o

More information

๋ชฉ ์ฐจ

๋ชฉ      ์ฐจ Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle

More information

์Šฌ๋ผ์ด๋“œ 1

์Šฌ๋ผ์ด๋“œ 1 / ์œ ๋‹‰์Šค์‹œ์Šคํ…œ๊ฐœ์š” / ํŒŒ์ผ / ํ”„๋กœ์„ธ์Šค 01 File Descriptor file file descriptor file type unix ์—์„œ์˜ํŒŒ์ผ์€๋‹จ์ง€๋ฐ”์ดํŠธ๋“ค์˜๋‚˜์—ด์ž„ operating system ์€ํŒŒ์ผ์—์–ด๋–คํฌ๋งท๋„๋ถ€๊ณผํ•˜์ง€์•Š์Œ ํŒŒ์ผ์˜๋‚ด์šฉ์€๋ฐ”์ดํŠธ๋‹จ์œ„๋กœ์ฃผ์†Œ๋ฅผ์ค„์ˆ˜์žˆ์Œ file descriptor ๋Š” 0 ์ด๋‚˜์–‘์ˆ˜์ž„ file ์€ open ์ด๋‚˜ creat ๋กœ file

More information

Solaris 9 (x86) Installation Guide for VMware 7 Writer : ์ด๊ฒฝํ˜ธ

Solaris 9 (x86) Installation Guide for VMware 7 Writer : ์ด๊ฒฝํ˜ธ Solaris 9 (x86) Installation Guide for VMware 7 Writer : ์ด๊ฒฝํ˜ธ ๋ชฉ์ฐจ 1. ์‹œ์Šคํ…œ๊ตฌ์„ฑ... - 2-1.1. ๊ฐœ์š”... - 2-1.1.1. ์ •์˜... - 2-1.1.2. ๋ชฉ์ ... - 2-1.1.3. ํ™˜๊ฒฝ... - 2-2. ์ค€๋น„์‚ฌํ•ญ... - 2-3. Virtual Machine Setup... - 3-4. Solaris9

More information

2009๋…„ ์ƒ๋ฐ˜๊ธฐ ์‚ฌ์—…๊ณ„ํš

2009๋…„ ์ƒ๋ฐ˜๊ธฐ ์‚ฌ์—…๊ณ„ํš ์†Œ์ผ“ํ”„๋กœ๊ทธ๋ž˜๋ฐํ™œ์šฉ IT CookBook, ์œ ๋‹‰์Šค์‹œ์Šคํ…œํ”„๋กœ๊ทธ๋ž˜๋ฐ ํ•™์Šต๋ชฉํ‘œ ์†Œ์ผ“์ธํ„ฐํŽ˜์ด์Šค๋ฅผํ™œ์šฉํ•œ๋‹ค์–‘ํ•œํ”„๋กœ๊ทธ๋žจ์„์ž‘์„ฑํ• ์ˆ˜์žˆ๋‹ค. 2/23 ๋ชฉ์ฐจ TCP ๊ธฐ๋ฐ˜ํ”„๋กœ๊ทธ๋ž˜๋ฐ ๋ฐ˜๋ณต์„œ๋ฒ„ ๋™์‹œ๋™์ž‘์„œ๋ฒ„ ๋™์‹œ๋™์ž‘์„œ๋ฒ„-execํ•จ์ˆ˜์‚ฌ์šฉํ•˜๊ธฐ ๋™์‹œ๋™์ž‘์„œ๋ฒ„-๋ช…๋ นํ–‰์ธ์ž๋กœ์†Œ์ผ“๊ธฐ์ˆ ์ž์ „๋‹ฌํ•˜๊ธฐ UDP ํ”„๋กœ๊ทธ๋ž˜๋ฐ 3/23 TCP ๊ธฐ๋ฐ˜ํ”„๋กœ๊ทธ๋ž˜๋ฐ ๋ฐ˜๋ณต์„œ๋ฒ„ ๋ฐ๋ชฌํ”„๋กœ์„ธ์Šค๊ฐ€์ง์ ‘๋ชจ๋“ ํด๋ผ์ด์–ธํŠธ์˜์š”์ฒญ์„์ฐจ๋ก€๋กœ์ฒ˜๋ฆฌ ๋™์‹œ๋™์ž‘์„œ๋ฒ„

More information

Assign an IP Address and Access the Video Stream - Installation Guide

Assign an IP Address and Access the Video Stream - Installation Guide ์„ค์น˜ ์•ˆ๋‚ด์„œ IP ์ฃผ์†Œ ํ• ๋‹น ๋ฐ ๋น„๋””์˜ค ์ŠคํŠธ๋ฆผ์— ์•ก์„ธ์Šค ์ฑ…์ž„ ๋ณธ ๋ฌธ์„œ๋Š” ์ตœ๋Œ€ํ•œ ์ฃผ์˜๋ฅผ ๊ธฐ์šธ์—ฌ ์ž‘์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค. ์ž˜๋ชป๋˜๊ฑฐ๋‚˜ ๋ˆ„๋ฝ๋œ ์ •๋ณด๊ฐ€ ์žˆ๋Š” ๊ฒฝ์šฐ ์—‘์‹œ์Šค ์ง€์‚ฌ๋กœ ์•Œ๋ ค ์ฃผ์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. Axis Communications AB๋Š” ๊ธฐ์ˆ ์  ๋˜๋Š” ์ธ์‡„์ƒ์˜ ์˜ค๋ฅ˜์— ๋Œ€ํ•ด ์ฑ… ์ž„์„ ์ง€์ง€ ์•Š์œผ๋ฉฐ ์‚ฌ์ „ ํ†ต์ง€ ์—†์ด ์ œํ’ˆ ๋ฐ ์„ค๋ช…์„œ๋ฅผ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. Axis Communications

More information

์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 1. ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜๋ฐ์ œ๊ฑฐ ( ์†Œ์Šค์ฝ”๋“œ ) ์†Œ์Šค์ฝ”๋“œ์ปดํŒŒ์ผ์„์ด์šฉํ•œ S/W ์„ค์น˜ 1. ์†Œ์Šค์ฝ”๋“œ๋‹ค์šด๋กœ๋“œ - ์˜ˆ ) httpd tar.gz - ์••์ถ•ํ•ด์ œ : #tar xzvf httpd tar.gz - INSTALL ๋˜๋Š” READMEํŒŒ์ผ์ฐธ์กฐ

์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 1. ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜๋ฐ์ œ๊ฑฐ ( ์†Œ์Šค์ฝ”๋“œ ) ์†Œ์Šค์ฝ”๋“œ์ปดํŒŒ์ผ์„์ด์šฉํ•œ S/W ์„ค์น˜ 1. ์†Œ์Šค์ฝ”๋“œ๋‹ค์šด๋กœ๋“œ - ์˜ˆ ) httpd tar.gz - ์••์ถ•ํ•ด์ œ : #tar xzvf httpd tar.gz - INSTALL ๋˜๋Š” READMEํŒŒ์ผ์ฐธ์กฐ ์šด์˜์ฒด์ œ์‹ค์Šต ์†Œํ”„ํŠธ์›จ์–ด๊ด€๋ฆฌ 2016. 6 ํ‘œ์›”์„ฑ passwd74@naver.com cherub.sungkyul.ac.kr ๋ชฉ์ฐจ โ…ฆ. ์†Œํ”„ํŠธ์›จ์–ด๊ด€๋ฆฌ 1. ์†Œ์Šค์ฝ”๋“œ์ปดํŒŒ์ผ์„์ด์šฉํ•œ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 2. RPMํŒจํ‚ค์ง€๋ฅผ์ด์šฉํ•œ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 3. YUMํŒจํ‚ค์ง€๋ฅผ์ด์šฉํ•œ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 4. APTํŒจํ‚ค์ง€๋ฅผ์ด์šฉํ•œ์†Œํ”„ํŠธ์›จ์–ด์„ค์น˜ 5. Telnet์„œ๋ฒ„์„ค์น˜ 6. ssh์„œ๋ฒ„ (openssh) ์„ค์น˜

More information

PRO1_04E [์ฝ๊ธฐ ์ „์šฉ]

PRO1_04E [์ฝ๊ธฐ ์ „์šฉ] Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC

More information

ยฐรธยฐยณยผร’ร‡รร†ยฎ-8รˆยฃ

ยฐรธยฐยณยผร’ร‡รร†ยฎ-8รˆยฃ 2007. 08 No.8 IT World ์šด์˜์ฒด์ œ ๋ฏธ๋“ค์›จ์–ด ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์›นํ”„๋กœ๊ทธ๋ž˜๋ฐ๊นŒ์ง€ ํ‘œ์ค€ํ™”๋œ๊ณต๊ฐœSW ์ปดํ“จํŒ…ํ™˜๊ฒฝ์ด์ง€์›ํ•ฉ๋‹ˆ๋‹ค. ๊ธ€๋กœ๋ฒŒํ‘œ์ค€์˜๊ณต๊ฐœSW ํ™˜๊ฒฝ์€ ํ•ต์‹ฌ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜๋ฟ๋งŒ์•„๋‹ˆ๋ผ๋‹ค์–‘ํ•œํ”Œ๋žซํผ์—์„œ๋„ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค. 2 2007. 08No.8 Contents Special Editorial 04 Best Practice 08 12 16 20 24 26 Insight 32

More information

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ

Interstage5 SOAP์„œ๋น„์Šค ์„ค์ • ๊ฐ€์ด๋“œ Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

untitled

untitled Embedded System Lab. II Embedded System Lab. II 2 RTOS Hard Real-Time vs Soft Real-Time RTOS Real-Time, Real-Time RTOS General purpose system OS H/W RTOS H/W task Hard Real-Time Real-Time System, Hard

More information

Microsoft PowerPoint - em8-๋ฆฌ๋ˆ…์Šค์„ค์น˜.ppt

Microsoft PowerPoint - em8-๋ฆฌ๋ˆ…์Šค์„ค์น˜.ppt ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค์ปค๋„์„ค์น˜๊ฐœ์š” ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค์„ค์น˜ Linux Kernel* Root File System* jffs2.img 1 2 ๊ตฌ์„ฑ์š”์†Œ ๋ฆฌ๋ˆ…์Šค์ปค๋„ ํ•„์ˆ˜๊ตฌ์„ฑ์š”์†Œ ํ•˜๋“œ์›จ์–ด๋ฅผ์ดˆ๊ธฐํ™”ํ•˜๊ณ  kernel image๋ฅผ ์—์˜ฌ๋ ค์ฃผ์–ด์ˆ˜ํ–‰์„๋„˜๊ฒจ์ฃผ๋Š”์—ญํ• ์„ํ•˜๋Š”ํ”„๋กœ๊ทธ๋žจ OS Kernel OS ์˜ํ•ต์‹ฌํ”„๋กœ๊ทธ๋žจ Root File System Kernel ์—์„œ์‚ฌ์šฉํ•  File System ์ž„๋ฒ ๋””๋“œ๋ฆฌ๋ˆ…์Šค์—์„œ๋Š”

More information

<C1B9BEF7B3EDB9AE2E687770>

<C1B9BEF7B3EDB9AE2E687770> ํ•™์‚ฌํ•™์œ„๋…ผ๋ฌธ ๊ณ ํ•ด์ƒ๋„์˜์ˆ˜์น˜๋ชจ์˜๋ฅผ์œ„ํ•œ ๋ฆฌ๋ˆ…์Šค๋ณ‘๋ ฌ์‹œ์Šคํ…œ๊ตฌ์ถ• 2001๋…„ 11์›”๊ฒฝ๋ถ๋Œ€ํ•™๊ต์ฒœ๋ฌธ๋Œ€๊ธฐ๊ณผํ•™๊ณผ์ด์ •ํ›ˆ (starwave@hanmail.net) ์ง€๋„๊ต์ˆ˜ : ๋ฐ•๋ช…๊ตฌ < ์ œ๋ชฉ์ฐจ๋ก€> 1. ์„œ๋ก  1 2. System ๊ตฌ์„ฑ๋ฐ์†Œํ”„ํŠธ์›จ์–ด 2 2.1 System ๊ตฌ์„ฑ๋„ 2 2.2 ์‹œ์Šคํ…œ์‚ฌ์–‘ 2 2. 3 ์‚ฌ์šฉ์†Œํ”„ํŠธ์›จ์–ด 2 3. MM5 ์„ค์น˜ 4 3.1 Linux ์„ค์น˜๋ฐํ™˜๊ฒฝ์„ค์ •

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

chapter1,2.doc

chapter1,2.doc JavaServer Pages Version 08-alpha copyright2001 B l u e N o t e all rights reserved http://jspboolpaecom vesion08-alpha, UML (?) part1part2 Part1 part2 part1 JSP Chapter2 ( ) Part 1 chapter 1 JavaServer

More information

๋ชฉ์ฐจ ๊ฐœ๋ฐœํ™˜๊ฒฝ JTAG Bootp TFTP NFS 1

๋ชฉ์ฐจ ๊ฐœ๋ฐœํ™˜๊ฒฝ JTAG Bootp TFTP NFS 1 Chapter. 3 Development Environment Settings Professor. Jaeheung, Lee ๋ชฉ์ฐจ ๊ฐœ๋ฐœํ™˜๊ฒฝ JTAG Bootp TFTP NFS 1 ๊ฐœ๋ฐœํ™˜๊ฒฝ ๊ธฐ๋ณธ๊ตฌ์„ฑ JTAG RS-232 Ethernet Host System Target System 2 ๊ฐœ๋ฐœํ™˜๊ฒฝ ๊ฐœ๋ฐœํ™˜๊ฒฝ๊ตฌ์„ฑ์š”์†Œ Host System Target System์„๊ฐœ๋ฐœํ•˜๊ธฐ์œ„ํ•œํ™˜๊ฒฝ์„์ œ๊ณตํ•˜๋Š”์‹œ์Šคํ…œ๊ต์ฐจ๊ฐœ๋ฐœํ™˜๊ฒฝ์ œ๊ณต

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat Sun Server X3-2( Sun Fire X4170 M3) Oracle Solaris : E35482 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including

More information

์‹œ์Šค์ฝ” ๋ฌด์„ ๋žœ ์„ค์น˜์šด์˜ ๋งค๋‰ด์–ผ(AP1200s_v1.1)

์‹œ์Šค์ฝ” ๋ฌด์„ ๋žœ ์„ค์น˜์šด์˜ ๋งค๋‰ด์–ผ(AP1200s_v1.1) [ Version 1.3 ] Access Point,. Access Point IP 10.0.0.1, Subnet Mask 255.255.255.224, DHCP Client. DHCP Server IP IP,, IP 10.0.0.X. (Tip: Auto Sensing Straight, Cross-over.) step 1]. step 2] LAN. step

More information

FreeBSD Handbook

FreeBSD Handbook FreeBSD Korea FreeBSD Users Group http://www.kr.freebsd.org/ Installing FreeBSD: FreeBSD . 2004 8 7. 1.1 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 The FreeBSD

More information

๋””์ง€ํ„ธํฌ๋ Œ์‹ํ•™ํšŒ ๋…ผ๋ฌธ์–‘์‹

๋””์ง€ํ„ธํฌ๋ Œ์‹ํ•™ํšŒ ๋…ผ๋ฌธ์–‘์‹ ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) ํ™˜๊ฒฝ์—์„œ์˜ ๋””์ง€ํ„ธ ์ฆ๊ฑฐ์ˆ˜์ง‘ ๋ฐฉ๋ฒ• ์—ฐ๊ตฌ ์ด ํฅ ๋ณต, ์ • ๊ด€ ๋ชจ, ๊น€ ์„  ์˜ * ๋Œ€์ „์ง€๋ฐฉ๊ฒฝ์ฐฐ์ฒญ Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

๋ฌด์‹œํ•˜๊ณ ์ง„ํ–‰ํ•ฉ๋‹ˆ๋‹ค. $ sudo rootstock -d precise --seed ubuntu-standard -x en_us.utf-8 -f ubuntu -l ubuntu -p ubuntu -i 2G I: Running on a x86_64 machine I: Cre

๋ฌด์‹œํ•˜๊ณ ์ง„ํ–‰ํ•ฉ๋‹ˆ๋‹ค. $ sudo rootstock -d precise --seed ubuntu-standard -x en_us.utf-8 -f ubuntu -l ubuntu -p ubuntu -i 2G I: Running on a x86_64 machine I: Cre ( ๋ง๊ณ  220 ubuntu ํฌํŒ… ) $ wget http://launchpadlibrarian.net/52888742/rootstock_0.1.99.4-0ubuntu1_i386.deb --2014-09-23 18:02:26-- http://launchpadlibrarian.net/52888742/rootstock_0.1.99.4-0ubuntu1_i386.deb

More information

Microsoft Word - Network Programming_NewVersion_01_.docx

Microsoft Word - Network Programming_NewVersion_01_.docx 10. Unix Domain Socket 105/113 10. Unix Domain Socket ๋ณธ์ ˆ์—์„œ๋Š” Unix Domain Socket(UDS) ์—๋Œ€ํ•œ๊ฐœ๋…๊ณผ์ด์—๋Œ€ํ•œ์‹ค์Šต์„์ˆ˜ํ–‰ํ•˜๊ณ , ์ด์™€๋™์‹œ์—๋น„์‹ ๋ขฐ์ ์ธํ†ต์‹ ์‹œ์Šคํ…œ์˜๋ฌธ์ œ์ ์—๋Œ€ํ•ด์„œ๋ถ„์„ํ•˜๋„๋กํ•œ๋‹ค. ์ด๋ฒˆ์‹ค์Šต์˜๋ชฉํ‘œ๋Š”๋‹ค์Œ๊ณผ๊ฐ™๋‹ค. 1. Unix Domain Socket์˜์‚ฌ์šฉ๋ฒ•์„์ตํžˆ๊ณ , IPC์—๋Œ€ํ•ด์„œ์‹ค์Šต 2. TCP/IP์˜์‘์šฉ๊ณ„์ธต๊ณผ์ „๋‹ฌ๊ณ„์ธต์˜๋™์ž‘์„๊ตฌํ˜„๋ฐ์‹ค์Šต

More information

Microsoft Word - KPMC-400,401 SW ์‚ฌ์šฉ ์„ค๋ช…์„œ

Microsoft Word - KPMC-400,401 SW ์‚ฌ์šฉ ์„ค๋ช…์„œ LKP Ethernet Card SW ์‚ฌ์šฉ์„ค๋ช…์„œ Version Information Tornado 2.0, 2.2 ์•Œ ๋ฆผ ์—ฌ๊ธฐ์—์‹ค๋ฆฐ๋‚ด์šฉ์€์ œํ’ˆ์˜์„ฑ๋Šฅํ–ฅ์ƒ๊ณผ์‹ ๋ขฐ๋„์˜์ฆ๋Œ€๋ฅผ์œ„ํ•˜์—ฌ์˜ˆ๊ณ ์—†์ด๋ณ€๊ฒฝ๋ ์ˆ˜๋„์žˆ์Šต๋‹ˆ๋‹ค. ์—ฌ๊ธฐ์—์‹ค๋ฆฐ๋‚ด์šฉ์˜์ผ๋ถ€๋ผ๋„์—˜์ผ€์ด์ผ๋ ˆ๋ธ์˜์‚ฌ์ „ํ—ˆ๋ฝ์—†์ด์–ด๋– ํ•œ์œ ํ˜•์˜๋งค์ฒด์—๋ณต์‚ฌ๋˜๊ฑฐ๋‚˜์ €์žฅ๋ ์ˆ˜์—†์œผ๋ฉฐ์ „๊ธฐ์ , ๊ธฐ๊ณ„์ , ๊ด‘ํ•™์ , ํ™”ํ•™์ ์ธ์–ด๋–ค๋ฐฉ๋ฒ•์œผ๋กœ๋„์ „์†ก๋ ์ˆ˜์—†์Šต๋‹ˆ๋‹ค. ์—˜์ผ€์ด์ผ๋ ˆ๋ธ๊ฒฝ๊ธฐ๋„์„ฑ๋‚จ์‹œ์ค‘์›๊ตฌ์ƒ๋Œ€์›๋™

More information

s SINUMERIK 840C Service and User Manual DATA SAVING & LOADING & & /

s SINUMERIK 840C Service and User Manual DATA SAVING & LOADING & & / SINUMERIK 840C Service and Uer Manual DATA SAVING & LOADING & & / / NC, RS232C /. NC NC / Computer link () Device ( )/PC / / Print erial Data input RS232C () Data output Data management FLOPPY DRIVE, FLOPPY

More information

์ œ1์žฅ Unix๋ž€ ๋ฌด์—‡์ธ๊ฐ€?

์ œ1์žฅ  Unix๋ž€ ๋ฌด์—‡์ธ๊ฐ€? 1 13 ์žฅ์†Œ์ผ“ 2 13.1 ์†Œ์ผ“ ํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ ๋„คํŠธ์›Œํฌ์‘์šฉํ”„๋กœ๊ทธ๋žจ ํด๋ฆฌ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ์„๊ธฐ๋ฐ˜์œผ๋กœ๋™์ž‘ํ•œ๋‹ค. ํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ ํ•˜๋‚˜์˜์„œ๋ฒ„ํ”„๋กœ์„ธ์Šค์™€์—ฌ๋Ÿฌ๊ฐœ์˜ํด๋ผ์ด์–ธํŠธ๋กœ๊ตฌ์„ฑ๋œ๋‹ค. ์„œ๋ฒ„๋Š”์–ด๋–ค์ž์›์„๊ด€๋ฆฌํ•˜๊ณ ํด๋ผ์ด์–ธํŠธ๋ฅผ์œ„ํ•ด์ž์›๊ด€๋ จ์„œ๋น„์Šค๋ฅผ์ œ๊ณตํ•œ๋‹ค. 3 ์†Œ์ผ“์˜์ข…๋ฅ˜ ์†Œ์ผ“ ๋„คํŠธ์›Œํฌ์—๋Œ€ํ•œ์‚ฌ์šฉ์ž์ˆ˜์ค€์˜์ธํ„ฐํŽ˜์ด์Šค๋ฅผ์ œ๊ณต ์†Œ์ผ“์€์–‘๋ฐฉํ–ฅํ†ต์‹ ๋ฐฉ๋ฒ•์œผ๋กœํด๋ผ์ด์–ธํŠธ - ์„œ๋ฒ„๋ชจ๋ธ์„๊ธฐ๋ฐ˜์œผ๋กœํ”„๋กœ์„ธ์Šค์‚ฌ์ด์˜ํ†ต์‹ ์—๋งค์šฐ์ ํ•ฉํ•˜๋‹ค.

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) ์ƒํ‘œ Microsoft, Windows ๋ฐ Internet Explorer๋Š” ๋ฏธ๊ตญ ๋ฐ / ๋˜๋Š” ๋‹ค๋ฅธ ๊ตญ๊ฐ€์—์„œ Microsoft Corporation ์˜ ๋“ฑ๋ก ์ƒํ‘œ์ž… Intel ๋ฐ Intel Core

More information

Copyright 2009 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A.. Sun Microsystems, Inc... - Sun Microsystems, Inc. (FAR).. Ber

Copyright 2009 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A.. Sun Microsystems, Inc... - Sun Microsystems, Inc. (FAR).. Ber Sun Ultra 27 Windows Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 821 0171 10 2009 4, A Copyright 2009 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A..

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

๋ฌธ์„œ ๋Œ€์ œ๋ชฉ

๋ฌธ์„œ ๋Œ€์ œ๋ชฉ Linux OS Backup ๊ต์œก์ž๋ฃŒ v1.1 2013. 12. 27. ์ด์Šคํ„ด๋„คํŠธ์›์Šค ๊ธฐ์ˆ ์ง€์›ํŒ€์ „ํฅ์ˆ˜ ๋ชฉ์ฐจ 1. Linux OS Backup & Cloning Layout 2. Solution Install & Configuration 3. Recovery Procedure 4. Reference Site - 1 - 1. Linux OS Backup / Cloning

More information

10.

10. 10. 10.1 10.2 Library Routine: void perror (char* str) perror( ) str Error 0 10.3 10.3 int fd; /* */ fd = open (filename, ) /*, */ if (fd = = -1) { /* */ } fcnt1 (fd, ); /* */ read (fd, ); /* */ write

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

์Šฌ๋ผ์ด๋“œ 1

์Šฌ๋ผ์ด๋“œ 1 / ์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œ๊ฐœ์š” / ์ž„๋ฒ ๋””๋“œ์šด์˜์ฒด์ œ / ๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ฒ„ 01 Linux System Architecture Application Area Application System Call Interface BSD Socket Virtual File System INET(AF_INET) Kernel Area Buffer Cache Network Subsystem

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ Install the PDI on CentOS 2013.04 G L O B E P O I N T 1 โ…  linux ๊ตฌ์„ฑ II Pentaho Install 2013, Globepoint Inc. All Rights Reserved. 2 I. Linux ๊ตฌ์„ฑ 2013, Globepoint Inc. All Rights Reserved. 3 IP ์„ค์ • 1. ์„ค์ •ํŒŒ์ผ

More information

Mars OS 1.0.2 System Administration Guide

Mars OS 1.0.2 System Administration Guide Mars OS 1.0.2 ์‹œ์Šคํ…œ ๊ด€๋ฆฌ ๊ฐ€์ด๋“œ NetApp, Inc. www.netapp.com/kr ๋ถ€ํ’ˆ ๋ฒˆํ˜ธ:215-09731_A0 2015๋…„ 2์›” 4์ผ ์ˆ˜์š”์ผ 2 ๋ชฉ์ฐจ ๋ชฉ์ฐจ Mars OS ์ •๋ณด 12 Mars OS์˜ ๊ธฐ๋Šฅ 13 ๊ณ ์„ฑ๋Šฅ 13 ์—…๊ณ„ ์ตœ๊ณ ์˜ ์Šคํ† ๋ฆฌ์ง€ ํšจ์œจ์„ฑ 13 ์‹œ์Šคํ…œ ๋ชจ๋‹ˆํ„ฐ๋ง 13 ๋น„ํœ˜๋ฐœ์„ฑ ๋ฉ”๋ชจ๋ฆฌ๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์•ˆ์ •์„ฑ ๋ฐ ์„ฑ๋Šฅ ํ–ฅ์ƒ 13 ํด๋Ÿฌ์Šคํ„ฐ๋ง

More information

PowerPoint Presentation

PowerPoint Presentation Data Protection Rapid Recovery x86 DR Agent based Backup - Physical Machine - Virtual Machine - Cluster Agentless Backup - VMware ESXi Deploy Agents - Windows - AD, ESXi Restore Machine - Live Recovery

More information

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜

PowerPoint ํ”„๋ ˆ์  ํ…Œ์ด์…˜ 1 Tizen ์‹ค์Šต์˜ˆ์ œ : Remote Key Framework ์‹œ์Šคํ…œ์†Œํ”„ํŠธ์›จ์–ดํŠน๋ก  (2014 ๋…„ 2 ํ•™๊ธฐ ) Sungkyunkwan University Contents 2 Motivation and Concept Requirements Design Implementation Virtual Input Device Driver ์ œ์ž‘ Tizen Service ๊ฐœ๋ฐœ์ ˆ์ฐจ

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

๊ต์œก์ง€์› IT์‹œ์Šคํ…œ ์„ ์ง„ํ™”

๊ต์œก์ง€์› IT์‹œ์Šคํ…œ ์„ ์ง„ํ™” Module 16: ioctl ์„ํ™œ์šฉํ•œ LED ์ œ์–ด๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ฒ„ ESP30076 ์ž„๋ฒ ๋””๋“œ์‹œ์Šคํ…œํ”„๋กœ๊ทธ๋ž˜๋ฐ (Embedded System Programming) ์กฐ์œค์„ ์ „์‚ฐ์ „์ž๊ณตํ•™๋ถ€ ์ฃผ์ฐจ๋ณ„๋ชฉํ‘œ ioctl() ์„ํ™œ์šฉ๋ฒ•๋ฐฐ์šฐ๊ธฐ ์ปค๋„ํƒ€์ด๋จธ์™€ ioctl ์„ํ™œ์šฉํ•˜์—ฌ LED ์ œ์–ด์šฉ๋””๋ฐ”์ด์Šค๋“œ๋ผ์ด๋ธŒ์ž‘์„ฑํ•˜๊ธฐ 2 IOCTL ์„์ด์šฉํ•œ๋“œ๋ผ์ด๋ฒ„์ œ์–ด ioctl() ํ•จ์ˆ˜ํ™œ์šฉ ์–ด๋–ค๊ฒฝ์šฐ์—๋Š”์ฝ๋Š”์šฉ๋„๋กœ๋งŒ์“ฐ๊ณ ,

More information

1. PVR Overview PVR (Personal Video Recorder), CPU, OS, ( 320 GB) 100 TV,,, Source: MindBranch , /, (Ad skip) Setop BoxDVD Combo

1. PVR Overview PVR (Personal Video Recorder), CPU, OS, ( 320 GB) 100 TV,,, Source: MindBranch , /, (Ad skip) Setop BoxDVD Combo PVR 1. PVR Overview 2. PVR 3. PVR 4. PVR 2005 10 MindBranch Asia Pacific Co. Ltd 1. PVR Overview 1.1. 1.1.1. PVR (Personal Video Recorder), CPU, OS, ( 320 GB) 100 TV,,, Source: MindBranch 1.1.2., /, (Ad

More information

Microsoft Word - HD-35 ๋ฉ”๋‰ด์–ผ_0429_.doc

Microsoft Word - HD-35 ๋ฉ”๋‰ด์–ผ_0429_.doc ์ž์ฃผ ๋ฌป๋Š” ์งˆ๋ฌธ๋“ค...2 ์ œํ’ˆ์˜ ํŠน์žฅ์ ...3 ์•ˆ์ „์„ ์œ„ํ•œ ์ฃผ์˜์‚ฌํ•ญ...5 ์‚ฌ์šฉ์„ ์œ„ํ•œ ์ฃผ์˜์‚ฌํ•ญ...5 ๊ฐ ๋ถ€๋ถ„์˜ ์ด๋ฆ„...6 HD-35 ์กฐ๋ฆฝ/๋ถ„๋ฆฌํ•˜๊ธฐ...7 PC์™€ USB ์ผ€์ด๋ธ” ์—ฐ๊ฒฐํ•˜๊ธฐ...8 1. ์œˆ๋„์šฐ 98/ME์—์„œ ์„ค์น˜๊ณผ์ •...9 2. NTFS๋ฅผ FAT32 ํฌ๋งท๋ฐฉ์‹์œผ๋กœ ๋ฐ”๊พธ๊ธฐ...11 ์„ค์น˜ ๋ฐ ์—ฐ๊ฒฐํ•˜๊ธฐ...14 1. ๋น„๋””์˜ค ์—ฐ๊ฒฐ๋ฐฉ๋ฒ•...14 2. ์˜ค๋””์˜ค

More information

Getting Started 1 st Edition March 2004 Contents 1.EMPOS II QUICK START... 1 1.1. 1.2. 1.3. 1.4. 1.5. 1.6. 1.7. 1.8. 1.9....1...1...2 TextLcd...5 7 Segment...6 Led I/O...7 IP DEFAULT GATEWAY...8 WEB

More information

์•Œ์•„ ๋‘˜ ์‚ฌํ•ญ ์•„์ด์˜ค๋“œ ์ œ์กฐ์‚ฌ๋Š” ๋ณธ ๊ธฐ๊ธฐ์— ํ•˜๋“œ๋””์Šคํฌ๋ฅผ ํฌํ•จํ•˜์—ฌ ์ถœ๊ณ ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋”ฐ๋ผ์„œ ํ•˜๋“œ๋””์Šคํฌ์— ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ•  ๊ฒฝ์šฐ, ๊ตฌ๋งค์ฒ˜ ๋˜๋Š” ํ•ด๋‹น ํ•˜๋“œ๋””์Šคํฌ ์„œ๋น„ ์Šค์„ผํ„ฐ์— ๋ฌธ์˜ ํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. ์ •ํ•ด์ง„ ์šฉ๋„ ์™ธ์˜ ์‚ฌ์šฉ์œผ๋กœ ๋ฐœ์ƒํ•œ ๋ฌธ์ œ์— ๋Œ€ํ•ด์„œ, ๋‹น์‚ฌ๋Š” ์–ด๋– ํ•œ ์ฑ…์ž„๋„ ์ง€์ง€

์•Œ์•„ ๋‘˜ ์‚ฌํ•ญ ์•„์ด์˜ค๋“œ ์ œ์กฐ์‚ฌ๋Š” ๋ณธ ๊ธฐ๊ธฐ์— ํ•˜๋“œ๋””์Šคํฌ๋ฅผ ํฌํ•จํ•˜์—ฌ ์ถœ๊ณ ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋”ฐ๋ผ์„œ ํ•˜๋“œ๋””์Šคํฌ์— ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ•  ๊ฒฝ์šฐ, ๊ตฌ๋งค์ฒ˜ ๋˜๋Š” ํ•ด๋‹น ํ•˜๋“œ๋””์Šคํฌ ์„œ๋น„ ์Šค์„ผํ„ฐ์— ๋ฌธ์˜ ํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. ์ •ํ•ด์ง„ ์šฉ๋„ ์™ธ์˜ ์‚ฌ์šฉ์œผ๋กœ ๋ฐœ์ƒํ•œ ๋ฌธ์ œ์— ๋Œ€ํ•ด์„œ, ๋‹น์‚ฌ๋Š” ์–ด๋– ํ•œ ์ฑ…์ž„๋„ ์ง€์ง€ ๊ฒฝ๊ธฐ๋„ ์šฉ์ธ์‹œ ๊ธฐํฅ๊ตฌ ์ค‘๋™ 1030๋ฒˆ์ง€ ๋Œ€์šฐํ”„๋ก ํ‹ฐ์–ด๋ฐธ๋ฆฌ 1๋‹จ์ง€ 714ํ˜ธ ๊ณ ๊ฐ์ง€์›์‹ค 1599-7936 www.iodd.co.kr MNU2541-01-201309 ์•Œ์•„ ๋‘˜ ์‚ฌํ•ญ ์•„์ด์˜ค๋“œ ์ œ์กฐ์‚ฌ๋Š” ๋ณธ ๊ธฐ๊ธฐ์— ํ•˜๋“œ๋””์Šคํฌ๋ฅผ ํฌํ•จํ•˜์—ฌ ์ถœ๊ณ ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋”ฐ๋ผ์„œ ํ•˜๋“œ๋””์Šคํฌ์— ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ•  ๊ฒฝ์šฐ, ๊ตฌ๋งค์ฒ˜ ๋˜๋Š” ํ•ด๋‹น ํ•˜๋“œ๋””์Šคํฌ ์„œ๋น„ ์Šค์„ผํ„ฐ์— ๋ฌธ์˜ ํ•˜์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค. ์ •ํ•ด์ง„ ์šฉ๋„

More information

Microsoft PowerPoint - Building.pptx

Microsoft PowerPoint - Building.pptx Building Embedded Linux System Toolchains Bootloader Kernel Root File System ์ •์˜ Toolchain ์†Œ์Šค๋ฅผ์ปดํŒŒ์ผํ•˜์—ฌ๋ฐ”์ด๋„ˆ๋ฆฌ์‹คํ–‰ํŒŒ์ผ๋ฅผ์ƒ์„ฑํ•˜๊ธฐ์œ„ํ•ดํ•„์š”ํ•œ์ปดํŒŒ์ผ๋Ÿฌ๋ฐ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ, ๋ฐ”์ด๋„ˆ๋ฆฌ์œ ํ‹ธ๋ฆฌํ‹ฐ๋ชจ์Œ ๊ตฌ์„ฑ์š”์†Œ Toolchain GCC : ์ปดํŒŒ์ผ๋Ÿฌ Binutils : ์–ด์…ˆ๋ธ”๋Ÿฌ๋ฐ๋กœ๋”, ๋ฐ”์ด๋„ˆ๋ฆฌํŒŒ์ผํŽธ์ง‘์œ ํ‹ธ๋ฆฌํ‹ฐ Glibc

More information

1. What is AX1 AX1 Program์€ WIZnet ์‚ฌ์˜ Hardwired TCP/IP Chip์ธ iinchip ๋“ค์˜์„ฑ๋Šฅํ‰๊ฐ€๋ฐ Test๋ฅผ์œ„ํ•ด์ œ์ž‘๋œ Windows ๊ธฐ๋ฐ˜์˜ PC Program์ด๋‹ค. AX1์€ Internet์„ํ†ตํ•ด iinchip Evaluation

1. What is AX1 AX1 Program์€ WIZnet ์‚ฌ์˜ Hardwired TCP/IP Chip์ธ iinchip ๋“ค์˜์„ฑ๋Šฅํ‰๊ฐ€๋ฐ Test๋ฅผ์œ„ํ•ด์ œ์ž‘๋œ Windows ๊ธฐ๋ฐ˜์˜ PC Program์ด๋‹ค. AX1์€ Internet์„ํ†ตํ•ด iinchip Evaluation 1. What is AX1 AX1 Program์€ WIZnet ์‚ฌ์˜ Hardwired TCP/IP Chip์ธ iinchip ๋“ค์˜์„ฑ๋Šฅํ‰๊ฐ€๋ฐ Test๋ฅผ์œ„ํ•ด์ œ์ž‘๋œ Windows ๊ธฐ๋ฐ˜์˜ PC Program์ด๋‹ค. AX1์€ Internet์„ํ†ตํ•ด iinchip Evaluation Board(EVB B/D) ๋“ค๊ณผ TCP/IP Protocol๋กœ์—ฐ๊ฒฐ๋˜๋ฉฐ, ์—ฐ๊ฒฐ๋œ TCP/IP

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

untitled

untitled Block Device Driver in Linux Embedded System Lab. II Embedded System Lab. II 2 Define objective of applications using device Study Hardware manual (Registers) (vector number) Understand interface to related

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

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

More information