ๆญฏ๊ฐ์๋ ธํธ.PDF
|
|
- ์์ ๋ฒ
- 5 years ago
- Views:
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/ 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 informationCopyright 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 informationPowerPoint ํ๋ ์ ํ ์ด์
(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 informationMySQL-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 informationuntitled
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 informationSun 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 informationGentoo 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
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 informationMango220 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 informationuntitled
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 informationCD-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 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
/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 informationLXR ์ค์น ๋ฐ ์ฌ์ฉ๋ฒ.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 informationMicrosoft PowerPoint - 03-Development-Environment-2.ppt
๊ฐ๋ฐํ๊ฒฝ 2 ์๋ฒ ๋๋์์คํ ์ํํธ์จ์ด I ์ฐจ๋ก ๋ถํธ๋ก๋์๊ธฐ๋ฅ, ์ปดํ์ผ๋ฐฉ๋ฒ ์ปค๋์๊ธฐ๋ฅ, ์ปดํ์ผ๋ฐฉ๋ฒ ํ์ผ์์คํ ์๊ธฐ๋ฅ, ์์ฑ๋ฐฉ๋ฒ Host-KIT ๋คํธ์ํฌ์ฐ๊ฒฐ๋ฐฉ๋ฒ (Bootp, TFTP, NFS) ๊ฐ๋ฐํ๊ฒฝ 2 2 ๋ถํธ๋ก๋์๊ธฐ๋ฅ ํ๋์จ์ด์ด๊ธฐํ CPU clock, Memory Timing, Interrupt, UART, GPIO ๋ฑ์์ด๊ธฐํ ์ปค๋๋ก๋ ์ปค๋์ด๋ฏธ์ง๋ฅผ flash
More informationPowerPoint ํ๋ ์ ํ ์ด์
Network Programming Jo, Heeseung Network ์ค์ต ๋คํธ์ํฌํ๋ก๊ทธ๋๋ฐ ๋ฉ๋ฆฌ๋จ์ด์ ธ์๋ํธ์คํธ๋ค์ด์๋ก๋ฐ์ดํฐ๋ฅผ์ฃผ๊ณ ๋ฐ์์์๋๋กํ๋ก๊ทธ๋จ์๊ตฌํํ๋๊ฒ ํ์ผ๊ณผ๋๋ฌ๋ฆฌ๋ฐ์ดํฐ๋ฅผ์ฃผ๊ณ ๋ฐ์๋์์ด๋ฉ๋ฆฌ๋จ์ด์ ธ์๊ธฐ๋๋ฌธ์์ํํธ์จ์ด์ฐจ์์์ํธ์คํธ๋ค๊ฐ์์ฐ๊ฒฐ์ํด์ฃผ๋์ฅ์น๊ฐํ์ ์ด๋ฌํ๊ธฐ๋ฅ์ํด์ฃผ๋์ฅ์น๋ก์์ผ์ด๋ผ๋์ธํฐํ์ด์ค๋ฅผ๋ง์ด์ฌ์ฉ ์์ผํ๋ก๊ทธ๋๋ฐ์ด๋์ฉ์ด์๋คํธ์ํฌํ๋ก๊ทธ๋๋ฐ์ด๋์ฉ์ด๊ฐ๊ฐ์์๋ฏธ๋ก์ฌ์ฉ
More information1217 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 information05รรฅ
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 informationuntitled
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 informationORANGE 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 informationNetwork 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 informationSolaris 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. ์ค์น๊ฐ์ ์๋ํ๋ ์ค๋ ๋ธ๋ก๊ทธ ํํ์ ํํ์ด์ง๋ฅผ ๋น ๋ฅด๊ฒ ๋ง๋ค์ ์๊ฒ ํด ์ฃผ๋ ํ๋ก๊ทธ๋จ์ ๋๋ค. ๋ค์ํ ๊ธฐ๋ฅ์ ํ๋ ํ๋ฌ๊ทธ์ธ๊ณผ ๋์์ธ
์ค๋ง์ผ์๋ธ CLOUD_Virtual ์๋ํ๋ ์ค ์ค์น (WORDPRESS INSTALL) ์ค๋ง์ผ์๋ธ ๊ฐ์ํ์ฌ์ ๋ณธ๋ถ Update. 2012. 09. 04. ๋ณธ๋ฌธ์๋ ์ด๊ธ์๋ค์ ๋์์ผ๋ก ์ต๋ํ ์ฝ๊ฒ ์์ฑํ์์ต๋๋ค. ๋ณธ๋ฌธ์์์๋ ์ค์น๋ฐฉ๋ฒ๋ง ๊ธฐ์ ํ์ผ๋ฉฐ ์์ธํ ์ค์ ๋ฐฉ๋ฒ์ ๊ฒ์์ ํตํ์๊ธฐ ๋ฐ๋๋๋ค. 1. ์ค์น๊ฐ์ ์๋ํ๋ ์ค๋ ๋ธ๋ก๊ทธ ํํ์ ํํ์ด์ง๋ฅผ ๋น ๋ฅด๊ฒ ๋ง๋ค์ ์๊ฒ
More information6์ฃผ์ฐจ.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
๋ฆฌ๋ ์ค๋๋ฐ์ด์ค๋๋ผ์ด๋ฒ๊ฐ์ http://cafe.naver.com/embeddedcrazyboys http://www.mangoboard.com ๋๋ฐ์ด์ค๋๋ผ์ด๋ฒ๊ฐ์ ๋๋ฐ์ด์ค (Device ) ๋คํธ์ํฌ์ด๋ํฐ, LCD ๋์คํ๋ ์ด, PCMCIA, Audio, ํฐ๋ฏธ๋, ํค๋ณด๋, ํ๋๋์ค ํฌ, ํ๋กํผ๋์คํฌ, ํ๋ฆฐํฐ๋ฑ๊ณผ๊ฐ์์ฃผ๋ณ์ฅ์น๋ค์๋งํจ ๋๋ฐ์ด์ค์๊ตฌ๋์ํ์ํํ๋ก๊ทธ๋จ, ์ฆ๋๋ฐ์ด์ค๋๋ผ์ด๋ฒ๊ฐํ์์ ์ผ๋ก์๊ตฌ
More informationPCServerMgmt7
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 informationLN_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 Pro II TS-HTGL/R5 ํจํค์ง ๋ด์ฉ๋ฌผ: ๋ณธ์ฒด (TeraStation) ์ด๋๋ท ์ผ์ด๋ธ ์ ์ ์ผ์ด๋ธ TeraNavigator ์ค์น CD ์ฌ์ฉ ์ค๋ช ์ (์ด ์ค๋ช ์) ์ ํ ๋ณด์ฆ์ www.buffalotech.com ์๊ฐ TeraStation ์ ๊ตฌ์ ํด ์ฃผ์ ์ ๊ฐ์ฌํฉ๋๋ค! ์ด ์ฌ์ฉ ์ค๋ช ์๋ TeraStation ๊ตฌ์ฑ ์ ๋ณด๋ฅผ
More informationPowerPoint ํ๋ ์ ํ ์ด์
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 information28 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 informationPowerPoint ํ๋ ์ ํ ์ด์
FlightGear Jo, Heeseung FlightGear 2.10 FlightGear ์์ Http, UDP ํ๋กํ ์ฝ์์คํํ ์์๋ํ๊ฒฝ์์ค๋ช ํ๋ฌธ์ 1. FlightGear ์คํ 2. FlightGear Http ํต์ 3. FlightGear Protocol ๊ตฌ์กฐ 4. FlightGear ์ํต์ ํ๊ธฐ์ํ Client Server ๊ฐ์๊ตฌ์กฐ 5. FlightGear
More informationFlightGear 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 informationSena 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 informationPowerPoint ํ๋ ์ ํ ์ด์
์๋ฒ ๋๋๋ฆฌ๋ ์ค๊ฐ๋ฐํ๊ฒฝ๊ตฌ์ถ Jo, Heeseung ๊ฐ๋ฐํ๊ฒฝ HBE-SM5-S4210 ๊ฐ๋ฐํ๊ฒฝ ํ๊ฒ๋ณด๋์๋ฆฌ๋ ์ค๊ฐ์ค์น๋ํธ์คํธ์ปดํจํฐ๊ฐํ์ ์๋ฒ ๋๋๋ฆฌ๋ ์ค๊ฐ๋ฐํ๊ฒฝ - ํธ์คํธ์ปดํจํฐํ๊ฒฝ์ค์น - ํธ์คํธ์ํ๊ฒ์ฐ๊ฒฐ - ๋๋ฒ๊ทธํ๊ฒฝ ํธ์คํธ์ปดํจํฐ๋์๋ฒ ๋๋์์คํ ์๋์์๋ชจ๋ํฐ๋งํ๋๋๋ฒ๊น ํ๊ฒฝ์ผ๋ก์์์ญํ ๋์ํ ์๋ฒ ๋๋์์คํ ์์ํ์ํํธ์จ์ด๋ฅผ๊ฐ๋ฐํ๊ธฐ์ํด์ํธ์คํธ์์คํ ์๊ตฌ์ถํ๋๊ฐ๋ฐํ๊ฒฝ ๊ต์ฐจ๊ฐ๋ฐํ๊ฒฝ
More information์ด์์ฒด์ ์ค์ต_๋ช ๋ น์ด
์ด์์ฒด์ ์ค์ต ๋ฆฌ๋ ์ค๋คํธ์ํฌ๊ธฐ๋ณธ๊ฐ๋ ๋ฐ์ค์ ์ ๊ธฐ์ฅ Contents ๋คํธ์ํฌ์ฉ์ด์ ์ IP ์ฃผ์ ๋คํธ์ํฌ๊ธฐ๋ณธ๋ช ๋ น์ด ๋คํธ์ํฌ๊ด๋ฆฌ๋ช ๋ น์ด ๋คํธ์ํฌ์ค์ ํ์ผ telnet ์๋ฒ์ค์ ๋คํธ์ํฌ์ฉ์ด์ ์ ๋คํธ์ํฌ (Network) : ์ ์์ ์ผ๋ก๋ฐ์ดํฐ๋ฅผ์ฃผ๊ณ ๋ฐ๊ธฐ์ํ๋ชฉ์ ์ผ๋ก์ฐ๊ฒฐ๋ 2 ๊ฐ์ด์์์ปดํจํฐ์์คํ IP ์ฃผ์์ Ethernet ์ฃผ์ IP ์ฃผ์ : ๋คํธ์ํฌ์์ฐ๊ฒฐ๋์์คํ ์๊ตฌ๋ถํ๋์ํํธ์จ์ด์ ์ธ์ฃผ์
More informationuntitled
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 informationSnort 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
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 informationAPOGEE 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 informationBackup 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รรฅ_รรรยพ
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 information1. 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 information2 CentOS 6 Minimal ์ค์น 1.2 ์ค์น DVD ๋ก๋ถํ DVD ๋ฅผ๋๋ผ์ด๋ธ์๋ฃ๊ณ BIOS ์ค์ ์ DVD ์์๋ถํธํ๋๋ก์ค์ ์์ํฉ๋๋ค. ๊ทธ๋ฌ๋ฉด๋ค์๊ณผ๊ฐ์์์์ต์ ์ด์์ต ๋๋ค. ์ฌ๊ธฐ์์ Install or upgrade an exissting system ์์ ํํฉ๋๋ค.
1. CentOS 6 Minimal ์ค์น 1.1 CentOS 6 Minimal ์ค์น์ค๋น ใ ใ ์์์ 1.1.1 What is CentOS? CentOS is an Enterprise Linux distribution based on the freely available sources from Red Hat Enterprise Li nux. Each CentOS
More information์ 1์ฅ Unix๋ ๋ฌด์์ธ๊ฐ?
1 ์์ผ 2 1 ์์ผ ํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ ๋คํธ์ํฌ์์ฉํ๋ก๊ทธ๋จ ํด๋ฆฌ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ์๊ธฐ๋ฐ์ผ๋ก๋์ํ๋ค. ํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ ํ๋์์๋ฒํ๋ก์ธ์ค์์ฌ๋ฌ๊ฐ์ํด๋ผ์ด์ธํธ๋ก๊ตฌ์ฑ๋๋ค. ์๋ฒ๋์ด๋ค์์์๊ด๋ฆฌํ๊ณ ํด๋ผ์ด์ธํธ๋ฅผ์ํด์์๊ด๋ จ์๋น์ค๋ฅผ์ ๊ณตํ๋ค. 3 ์์ผ์์ข ๋ฅ ์์ผ ๋คํธ์ํฌ์๋ํ์ฌ์ฉ์์์ค์์ธํฐํ์ด์ค๋ฅผ์ ๊ณต ์์ผ์์๋ฐฉํฅํต์ ๋ฐฉ๋ฒ์ผ๋กํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ์๊ธฐ๋ฐ์ผ๋กํ๋ก์ธ์ค์ฌ์ด์ํต์ ์๋งค์ฐ์ ํฉํ๋ค.
More informationK7VT2_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 informationRemote 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 informationPowerPoint ํ๋ ์ ํ ์ด์
์๋ฒ ๋๋๋ฆฌ๋ ์ค๊ฐ๋ฐํ๊ฒฝ๊ตฌ์ถ Jo, Heeseung ๊ฐ๋ฐํ๊ฒฝ HBE-SM5-S4210 ๊ฐ๋ฐํ๊ฒฝ ํ๊ฒ๋ณด๋์๋ฆฌ๋ ์ค๊ฐ์ค์น๋ํธ์คํธ์ปดํจํฐ๊ฐํ์ ์๋ฒ ๋๋๋ฆฌ๋ ์ค๊ฐ๋ฐํ๊ฒฝ - ํธ์คํธ์ปดํจํฐํ๊ฒฝ์ค์น - ํธ์คํธ์ํ๊ฒ์ฐ๊ฒฐ - ๋๋ฒ๊ทธํ๊ฒฝ ํธ์คํธ์ปดํจํฐ๋์๋ฒ ๋๋์์คํ ์๋์์๋ชจ๋ํฐ๋งํ๋๋๋ฒ๊น ํ๊ฒฝ์ผ๋ก์์์ญํ ๋์ํ ์๋ฒ ๋๋์์คํ ์์ํ์ํํธ์จ์ด๋ฅผ๊ฐ๋ฐํ๊ธฐ์ํด์ํธ์คํธ์์คํ ์๊ตฌ์ถํ๋๊ฐ๋ฐํ๊ฒฝ ๊ต์ฐจ๊ฐ๋ฐํ๊ฒฝ
More information<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>
i ii iii iv v vi 1 2 3 4 ๊ฐ์๋ํ ์์คํ ์ ๊ตญ๋ด์ธ ํํฉ ์กฐ์ฌ ๊ฐ์๋ํ ํ๋ซํผ ๊ฐ๋ฐ ์ด์์ ์ธ ๊ฐ์๋ํ์์คํ ์ ๋ฏธ๋์ ์ ์ 5 ์น-๊ธฐ๋ฐ ๊ฐ์๋ํ ์์คํ ์ ํต์ ์ธ ๊ต์ ๋ฐฉ๋ฒ ์๊ฐ/๊ณต๊ฐ ์ ์ฝ์ ๊ทน๋ณตํ ํ์ต๋๊ธฐ ๋ถ์ฌ ๊ต์์ ์ผ๋ฐฉ์ ์ธ ๋ด์ฉ์ ๋ฌ ๊ต์์ ํ์๊ฐ์ ์ํธ์์ฉ ๋๋ฃ ํ์๋ค ๊ฐ์ ์ํธ์์ฉ ๊ฐ์๋ํ ์ด์ ๊ณต์ง์ฌํญ,๊ฐ์๋ก ์๋ฃ์ค, ๋ฉ๋ชจ ์ง์์๋ต,
More informationvi ์ฌ์ฉ๋ฒ
๋คํธ์ํฌํ๋ก๊ทธ๋๋ฐ 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
/ ์ ๋์ค์์คํ ๊ฐ์ / ํ์ผ / ํ๋ก์ธ์ค 01 File Descriptor file file descriptor file type unix ์์์ํ์ผ์๋จ์ง๋ฐ์ดํธ๋ค์๋์ด์ operating system ์ํ์ผ์์ด๋คํฌ๋งท๋๋ถ๊ณผํ์ง์์ ํ์ผ์๋ด์ฉ์๋ฐ์ดํธ๋จ์๋ก์ฃผ์๋ฅผ์ค์์์ file descriptor ๋ 0 ์ด๋์์์ file ์ open ์ด๋ creat ๋ก file
More informationSolaris 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 information2009๋ ์๋ฐ๊ธฐ ์ฌ์ ๊ณํ
์์ผํ๋ก๊ทธ๋๋ฐํ์ฉ IT CookBook, ์ ๋์ค์์คํ ํ๋ก๊ทธ๋๋ฐ ํ์ต๋ชฉํ ์์ผ์ธํฐํ์ด์ค๋ฅผํ์ฉํ๋ค์ํํ๋ก๊ทธ๋จ์์์ฑํ ์์๋ค. 2/23 ๋ชฉ์ฐจ TCP ๊ธฐ๋ฐํ๋ก๊ทธ๋๋ฐ ๋ฐ๋ณต์๋ฒ ๋์๋์์๋ฒ ๋์๋์์๋ฒ-execํจ์์ฌ์ฉํ๊ธฐ ๋์๋์์๋ฒ-๋ช ๋ นํ์ธ์๋ก์์ผ๊ธฐ์ ์์ ๋ฌํ๊ธฐ UDP ํ๋ก๊ทธ๋๋ฐ 3/23 TCP ๊ธฐ๋ฐํ๋ก๊ทธ๋๋ฐ ๋ฐ๋ณต์๋ฒ ๋ฐ๋ชฌํ๋ก์ธ์ค๊ฐ์ง์ ๋ชจ๋ ํด๋ผ์ด์ธํธ์์์ฒญ์์ฐจ๋ก๋ก์ฒ๋ฆฌ ๋์๋์์๋ฒ
More informationAssign 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ํ์ผ์ฐธ์กฐ
์ด์์ฒด์ ์ค์ต ์ํํธ์จ์ด๊ด๋ฆฌ 2016. 6 ํ์์ฑ passwd74@naver.com cherub.sungkyul.ac.kr ๋ชฉ์ฐจ โ ฆ. ์ํํธ์จ์ด๊ด๋ฆฌ 1. ์์ค์ฝ๋์ปดํ์ผ์์ด์ฉํ์ํํธ์จ์ด์ค์น 2. RPMํจํค์ง๋ฅผ์ด์ฉํ์ํํธ์จ์ด์ค์น 3. YUMํจํค์ง๋ฅผ์ด์ฉํ์ํํธ์จ์ด์ค์น 4. APTํจํค์ง๋ฅผ์ด์ฉํ์ํํธ์จ์ด์ค์น 5. Telnet์๋ฒ์ค์น 6. ssh์๋ฒ (openssh) ์ค์น
More informationPRO1_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รยฃ
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 informationInterstage5 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 informationPWR 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 informationuntitled
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 informationMicrosoft 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>
ํ์ฌํ์๋ ผ๋ฌธ ๊ณ ํด์๋์์์น๋ชจ์๋ฅผ์ํ ๋ฆฌ๋ ์ค๋ณ๋ ฌ์์คํ ๊ตฌ์ถ 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 informationCopyright 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 informationchapter1,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
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 informationCopyright 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)
[ 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 informationFreeBSD 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
( ๋ง๊ณ 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 informationMicrosoft 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 informationMicrosoft Word - KPMC-400,401 SW ์ฌ์ฉ ์ค๋ช ์
LKP Ethernet Card SW ์ฌ์ฉ์ค๋ช ์ Version Information Tornado 2.0, 2.2 ์ ๋ฆผ ์ฌ๊ธฐ์์ค๋ฆฐ๋ด์ฉ์์ ํ์์ฑ๋ฅํฅ์๊ณผ์ ๋ขฐ๋์์ฆ๋๋ฅผ์ํ์ฌ์๊ณ ์์ด๋ณ๊ฒฝ๋ ์๋์์ต๋๋ค. ์ฌ๊ธฐ์์ค๋ฆฐ๋ด์ฉ์์ผ๋ถ๋ผ๋์์ผ์ด์ผ๋ ๋ธ์์ฌ์ ํ๋ฝ์์ด์ด๋ ํ์ ํ์๋งค์ฒด์๋ณต์ฌ๋๊ฑฐ๋์ ์ฅ๋ ์์์ผ๋ฉฐ์ ๊ธฐ์ , ๊ธฐ๊ณ์ , ๊ดํ์ , ํํ์ ์ธ์ด๋ค๋ฐฉ๋ฒ์ผ๋ก๋์ ์ก๋ ์์์ต๋๋ค. ์์ผ์ด์ผ๋ ๋ธ๊ฒฝ๊ธฐ๋์ฑ๋จ์์ค์๊ตฌ์๋์๋
More informations 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 13 ์ฅ์์ผ 2 13.1 ์์ผ ํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ ๋คํธ์ํฌ์์ฉํ๋ก๊ทธ๋จ ํด๋ฆฌ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ์๊ธฐ๋ฐ์ผ๋ก๋์ํ๋ค. ํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ ํ๋์์๋ฒํ๋ก์ธ์ค์์ฌ๋ฌ๊ฐ์ํด๋ผ์ด์ธํธ๋ก๊ตฌ์ฑ๋๋ค. ์๋ฒ๋์ด๋ค์์์๊ด๋ฆฌํ๊ณ ํด๋ผ์ด์ธํธ๋ฅผ์ํด์์๊ด๋ จ์๋น์ค๋ฅผ์ ๊ณตํ๋ค. 3 ์์ผ์์ข ๋ฅ ์์ผ ๋คํธ์ํฌ์๋ํ์ฌ์ฉ์์์ค์์ธํฐํ์ด์ค๋ฅผ์ ๊ณต ์์ผ์์๋ฐฉํฅํต์ ๋ฐฉ๋ฒ์ผ๋กํด๋ผ์ด์ธํธ - ์๋ฒ๋ชจ๋ธ์๊ธฐ๋ฐ์ผ๋กํ๋ก์ธ์ค์ฌ์ด์ํต์ ์๋งค์ฐ์ ํฉํ๋ค.
More informationSMB_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 informationUSB 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 informationODS-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 informationCopyright 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 informationDE1-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 information10.
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/
๊ตฌ์ถ ํ๊ฒฝ VirtualBox - Fedora 15 (kernel : 2.6.40.4-5.fc15.i686.PAE) ์๋ ์๋ฆฌ chroot์ ์ ssh ์ ์ -> ์ ์์ ์ ์ ํ๋๋ ํ ๋ฆฌ ๋ฐ.ssh์ rc ํ์ผ ์คํ -> daemonstart์คํ -> daemon ์๋ -> ์ ์ ์ ์ ๋ง์ Jail ๋๋ ํ ๋ฆฌ ์์ฑ -> ์ ์ ์ ์ ์.bashrc ์ chroot ๋ช ๋ น์ด
More information์ฌ๋ผ์ด๋ 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 informationPowerPoint ํ๋ ์ ํ ์ด์
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 informationMars 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 informationPowerPoint 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 informationPowerPoint ํ๋ ์ ํ ์ด์
1 Tizen ์ค์ต์์ : Remote Key Framework ์์คํ ์ํํธ์จ์ดํน๋ก (2014 ๋ 2 ํ๊ธฐ ) Sungkyunkwan University Contents 2 Motivation and Concept Requirements Design Implementation Virtual Input Device Driver ์ ์ Tizen Service ๊ฐ๋ฐ์ ์ฐจ
More informationSomething 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์์คํ ์ ์งํ
Module 16: ioctl ์ํ์ฉํ LED ์ ์ด๋๋ฐ์ด์ค๋๋ผ์ด๋ฒ ESP30076 ์๋ฒ ๋๋์์คํ ํ๋ก๊ทธ๋๋ฐ (Embedded System Programming) ์กฐ์ค์ ์ ์ฐ์ ์๊ณตํ๋ถ ์ฃผ์ฐจ๋ณ๋ชฉํ ioctl() ์ํ์ฉ๋ฒ๋ฐฐ์ฐ๊ธฐ ์ปค๋ํ์ด๋จธ์ ioctl ์ํ์ฉํ์ฌ LED ์ ์ด์ฉ๋๋ฐ์ด์ค๋๋ผ์ด๋ธ์์ฑํ๊ธฐ 2 IOCTL ์์ด์ฉํ๋๋ผ์ด๋ฒ์ ์ด ioctl() ํจ์ํ์ฉ ์ด๋ค๊ฒฝ์ฐ์๋์ฝ๋์ฉ๋๋ก๋ง์ฐ๊ณ ,
More information1. 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 informationMicrosoft 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 informationGetting 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 informationMicrosoft PowerPoint - Building.pptx
Building Embedded Linux System Toolchains Bootloader Kernel Root File System ์ ์ Toolchain ์์ค๋ฅผ์ปดํ์ผํ์ฌ๋ฐ์ด๋๋ฆฌ์คํํ์ผ๋ฅผ์์ฑํ๊ธฐ์ํดํ์ํ์ปดํ์ผ๋ฌ๋ฐ๋ผ์ด๋ธ๋ฌ๋ฆฌ, ๋ฐ์ด๋๋ฆฌ์ ํธ๋ฆฌํฐ๋ชจ์ ๊ตฌ์ฑ์์ Toolchain GCC : ์ปดํ์ผ๋ฌ Binutils : ์ด์ ๋ธ๋ฌ๋ฐ๋ก๋, ๋ฐ์ด๋๋ฆฌํ์ผํธ์ง์ ํธ๋ฆฌํฐ Glibc
More information1. 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 informationETL_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 informationuntitled
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 informationMicrosoft 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 informationSimplify 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