목록전체 글 (845)
변군이글루
Internet Explorer 9 다운로드 http://windows.microsoft.com/ko-kr/internet-explorer/ie-9-worldwide-languages
CentOS6 Linux NIC bonding 구성 eth0 08:00:27:5B:BE:D9 eth1 08:00:27:A6:82:43 eth2 08:00:27:E3:E9:D0 eth3 08:00:27:EA:D7:42 구성1. eth0-eth2 : DHCP(10.0.2.15) 구성2. eth1-eth3 : Statice IP(192.168.56.10) 기본 설정 1. channel bonding interface 설정 bond0 생성 [root@kss ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 BOOTPROTO=dhcp ONBOOT=yes BONDING="mode=1 miimon=100" bond1 생성 [root@kss ~]# cat..
Default GateWay 추가 route add default gw 10.0.2.2 eth0 Addition GateWay 추가 route add -net 192.168.56.0/24 gw 192.168.56.1 eth1 [root@kss ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 10.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 192.168.56.0 192.168.56.1 255.255.255.0 UG 0 0 0 eth1 192.168.56.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1 169.254.0.0 0.0.0.0 255...
ks.cfg 파일 [root@kss ~]# cat /tftpboot/kickstart/ks_centos6.4_64.cfg #platform=x86, AMD64, 또는 Intel EM64T #version=DEVEL # Firewall configuration firewall --disabled # Install OS instead of upgrade install # Use NFS installation media nfs --server=192.168.56.10 --dir=/mnt/centos6.4_64 # Root password rootpw --iscrypted $1$w2yXi5Wl$IYYKevcmZWvW7S71bhvVH. # System authorization information auth --u..