본문 바로가기

전체 글

네임서버 구동 스크립트 S72inetsvc 네임서버 구동 스크립트 S72inetsvc$ cat /etc/rc2.d/S72inetsvc#!/sbin/sh## Copyright 2004 Sun Microsystems, Inc. All rights reserved.# Use is subject to license terms.##ident "@(#)inetsvc 1.31 04/03/16 SMI"## This is third phase of TCP/IP startup/configuration. This script# runs after the NIS/NIS+ startup script. We run things here that may# depend on NIS/NIS+ maps.#case "$1" in'start');; # Fall through -- .. 더보기
[솔라리스] 솔라리스 10 에서 svc 제어하기(svccfg) 솔라리스 10 에서 svc 제어하기(svccfg) [sangchul.kr(scbyun)::/export/home/scbyun]$ svccfg svc:> list ... application/print/rfc1179 application/font/stfsloader network/rpc/smserver network/dns/server network/rpc/ocfserv application/print/server ... svc:> select network/dns/server svc:/network/dns/server> listprop filesystem_minimal dependency filesystem_minimal/entities fmri svc:/system/filesystem/minimal f.. 더보기
[솔라리스] 오픈솔라리스 네트워크 설정 오픈솔라리스 네트워크 설정 IP(Internet Protocol) root@opensolaris:~# cat /etc/hostname.iprb0 10.0.10.100 Netmask root@opensolaris:~# cat /etc/netmasks # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License, Version 1.0 only # (the "License"). You may not use this file except in compliance # with the License. # # You can obtain a copy.. 더보기
[솔라리스] Open Solaris VNC 설치 Open Solaris VNC 설치 VNC 패키지 검색 root@opensolaris:~# pkginfo | grep vnc system SUNWvncviewer VNC viewer client system SUNWxvnc X11/VNC server VNC 패키지 정보(버전) root@opensolaris:~# pkginfo -l SUNWxvnc PKGINST: SUNWxvnc NAME: X11/VNC server CATEGORY: system ARCH: i386 VERSION: 6.9.0.5.11.11100,REV=0.2009.05.07 VENDOR: Sun Microsystems, Inc. DESC: X Window System server based on X.Org Foundation open so.. 더보기
네트워크 설정을 변경하여 고정 IP를 할당하는 방법 네트워크 설정을 변경하여 고정 IP를 할당하는 방법1. /etc/hosts (IP, 호스트 설정)$ cat /etc/hosts#::1 localhost127.0.0.1 solaris1 solaris1.local localhost loghost192.168.0.55 solaris1 loghost2. /etc/defaultrouter (gateway 설정)기본적으로 생성되어 있지 않음$ vi /etc/defaultrouter192.168.0.13. /etc/nsswitch.conf (dns 추가)$ vi /etc/nsswitch.confgroup: fileshosts: files dnsipnodes: files4. /etc/res.. 더보기
[용어] LTE (Long Term Evolution) LTE [Long Term Evolution] 3세대 HSPA기술에서 진화한 LTE는 초당 100Mb급의 전송속도를 구현할 수 있어 이동통신망에서 대용량 동영상도 원활하게 송수신할 수 있다. 기존 2세대 CDMA(코드분할다중접속), GSM(유럽형 이동통신), 3세대 WCDMA(광대역 코드분할다중접속) 기술에 이은 것으로 다운로드 속도 100Mb, 업로드 속도 50Mb로 송신할 수 있다. 기존 네트워크와 유연한 연동이 이뤄지고, 투자 비용이 저렴해 세계의 많은 이동통신사들이 차세대 기술로 채택하고 있다. 현재 4G 기술은 LTE와 삼성전자와 인텔이 참여한 모바일 와이맥스(한국명 와이브로), 퀄컴과 모토로라가 참여한 UMB 등 3가지 기술 방식이 경합을 벌이고 있으며, 2010년께 표준경쟁을 거쳐 2012년.. 더보기
리눅스에서 하드 디스크를 증설하는 방법 리눅스에서 하드 디스크를 증설하는 방법1. 하드 디스크(HDD) 장착새로운 하드 디스크를 시스템에 물리적으로 연결합니다.2. 시스템 리부팅하드 디스크를 장착한 후 시스템을 다시 부팅합니다.3. 물리적 하드 디스크 확인새로운 하드 디스크를 확인합니다.fdisk -l$ fdisk -l Disk /dev/sda: 12.8 GB, 12884901888 bytes255 heads, 63 sectors/track, 1566 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/sda1 * 1 13 104391 83 Linux/dev/sda2 14 1566 12474472+ 8e Linux .. 더보기
리눅스에서 FTP 접속 후 파일을 가져오는 쉘 스크립트 리눅스에서 FTP 접속 후 파일을 가져오는 쉘 스크립트 getfile.sh 스크립트 생성 vim getfile.sh #!/bin/bash HOST='ftp.example.com' USER='username' PASSWD='password' FILE='filename.txt' ftp -n $HOST 더보기

반응형