샤브의 블로그 RSS 태그 관리 글쓰기 방명록
분류 전체보기 (234)
2010-09-01 15:14:51
출처 서른.. 그 즈음에... | 쏭알
원문 http://blog.naver.com/0164624348/40004694146
디스크 사용관리...

여기서는 정상적인 파일시스템을 유지하기 위한 방법을 알아보도록 하지여...

시스템이 정상적으로 shutdown되지 않으면 파이시스템은 손상을 입을 수도 있고...
머...암튼 여러가지 원인으로 파일시스템이 손상될수 있음니다...

이때 사용되는 유틸리티가 fsck 입니다...
fsck 유틸리티는 다음과 같은 검사를 합니다..탭키로 구분해 놓은 것은 하위 검사 목록입니다..

super block
	file system size
	inode number
	free block count
	free inode count

inode
	format and type
		일반파일
		디렉토리
		block special
		character special
		심볼릭 링크
		FIFO(name pipe)
		socket
	link count
	duplicate block
	bad block number
	inode size

indirect block
	블록이 다른 inode에 의해 이미 점유되어 있는 것
	블록수가 파일 시스템 범위에 어긋난 것

data block
	평범한 data block
	심벌릭 링크 data block
	디렉토리  data block

이렇게 4가지를 검사합니다...
super block은 파일시스템의 모든 요약 정보를 포함하고 있습니다...
이것은 가장 일반적인 파일시스템의 문제를 일으키는 요인입니다..

주의할 점은 fsck는 마운트 되어 있는 파일 시스템은 작동하지 않습니다...
fsck는 두가지 모드가 있습니다...

non_interactive
interactive

시스템이 정상적 부팅시에 non-interactive 모드로 fsck가 운영되고, 문제 발생시에는 시스템 관리자의 
개입없이 repair할 수 있는 문제는 해결하고, 해결못한 문제일 경우는 fsck를 종료후, single user mode로 
시스템을 올린뒤 관리자에게  interactive fsck 유틸리티를 실행하도록 요구합니다..

다음은 fsck 유틸의 사용법과 옵션입니다...

fsck [-F FSType][-V][-m][special]
fsck [-F FSType][-V][-n|Ny|Y][-o specific_options][special]

-F                   : 검사할 파일 시스템의 유형을 지정한다. 
-Y|y                 : fsck 실행중 묻게 되는 모든 질문에 yes라고 한다. 이 결과로 어떤 데이타가 삭제 될 수 있다.
-N|n                 : fsck 실행중 묻게 되는 모든 질문에 no라고 한다.
-V                   : fsck가 실행되지 않고 실행 명령어를 자세히 보여준다.
-m                   : 파일 시스템을 검사하여 시스템의 상태값을 반환한다.
special              : block 또는 caracter device를 나타낸다.
-o specific_options  : b=n n번째 블록을 파일 시스템의 superblock으로 사용한다. block 32는 항상 예비 superblock이다. 다른 superblock위치는
                       newfs -F 로 지정해 줄 수 있다.
p                    : 파일 시스템에 문제를 해결하기 위한 작업을 수행하나 관리자의 개입이 요구되는 문제가 발생하면 자동으로 fsck가 종료된다.
f                    : force option. 파일 시스템이 clean flag상태여도 강제로 검사

여기서는 소개만 하겠슴다....머..이런 부분은 시스템 관리자의 몫으로 돌리겠슴다...

=======================================================================================================================
# fsck -V /export/home
fsck -F ufs /dev/rdsk/c0d0s7
==========================================================================================================================

이제부터 이번 단원의 주제인 디스크 사용관리를 살펴봅시다..
머....어케보면 명령어 사용법 익히는 거 같습니다만...어쩔 수 없지여...
명령어를 익혀야...머를 하던지 하니까여..
먼저...df명령어 입니다...
df명령어는 각 파일 시스템의 디스크 스페이스에 대한 정보를 보여주는 명령어 입니다..
다음은 옵션입니다..

-F  : 파일시스템의 유형을 정의, 명시하지 않으면 /etc/vgstab파일로 부터 찾아 정보를 얻는다.
-a  : /etc/mnttab 파일에 정의된 모든 파일 시스템을 보여준다.
-b  : 사용 가능한 디스크 용량을 KB단위로 보여준다.
-e  : 사용 가능한 파일의 number만 보여준다.
-k  : KB단위로 파일 시스템의 정보를 보여준다.
-l  : 로컬 파일 시스템의 마운트된 정보를 보여준다.
-n  : 파일 시스템의 유형을 보여준다.
-o  : specific_options
-i  : 시스템에 마운트된 파일 시스템의 inode 사용 내역 및 정보를 보여준다.

==========================================================================================================================

# df
/                  (/dev/dsk/c0d0s0   ): 1159550 블록   326014 파일
/boot              (/dev/dsk/c0d0p0:boot):   17631 블록       -1 파일
/proc              (/proc             ):       0 블록     9920 파일
/dev/fd            (fd                ):       0 블록        0 파일
/etc/mnttab        (mnttab            ):       0 블록        0 파일
/var/run           (swap              ):  875856 블록    20265 파일
/tmp               (swap              ):  875856 블록    20265 파일
/export/home       (/dev/dsk/c0d0s7   ): 4156934 블록   425930 파일
# df -b
파일시스템               가용
/dev/dsk/c0d0s0        579775
/dev/dsk/c0d0p0:boot     8815
/proc                       0
fd                          0
mnttab                      0
swap                   437928
swap                   437928
/dev/dsk/c0d0s7       2078467
# df -k
파일시스템           K바이트    사용    가용   용량    설치지점
/dev/dsk/c0d0s0      1491822  912047  520103    64%    /
/dev/dsk/c0d0p0:boot   10484    1669    8815    16%    /boot
/proc                      0       0       0     0%    /proc
fd                         0       0       0     0%    /dev/fd
mnttab                     0       0       0     0%    /etc/mnttab
swap                  437932       4  437928     1%    /var/run
swap                  441072    3144  437928     1%    /tmp
/dev/dsk/c0d0s7      3723974 1645507 2041228    45%    /export/home
# df -n
/                  : ufs
/boot              : pcfs
/proc              : proc
/dev/fd            : fd
/etc/mnttab        : mntfs
/var/run           : tmpfs
/tmp               : tmpfs
/export/home       : ufs
# df -F ufs -o i
파일 시스템             iused   ifree  %iused  마운트 위치
/dev/dsk/c0d0s0        48770  326014    13%   /
/dev/dsk/c0d0s7        47414  425930    10%   /export/home

==========================================================================================================================

다음은 디렉토리와 파일에서 사용하고 있는 디스크 공간을 512byte단위로 보여주는 df명령어에 대해서 살펴보겠슴다...
옵션은 다음과 같습니다..

-a : 모든 파일과 디렉토리에 의해 사용되고 있는 블록의 수를 보여준다.
-s : 디스크 사용량을 요약해서 보여준다.
-k : KB 단위로 정보를 보여준다.

==========================================================================================================================

# cd /export/home/yasi
# du
30      .
# du -k
15      .
# du -ak
1       ./.profile
1       ./sh_script
1       ./.cshrc
1       ./sample
1       ./script.csh
1       ./if1.csh
1       ./if2.csh
1       ./while.csh
1       ./foreach.csh
1       ./repeat.csh
1       ./switch.csh
1       ./ex.csh
1       ./sample.c
1       ./file2
15      .
# du -s
30      .

==========================================================================================================================

다음에 살펴볼 명령어는 ff명령어 입니다..
ff명령어는 파일 시스템의 파일들에 대한 inode number와  path name 을 제공해 줍니다..
옵션은 다음과 같습니다..

-F : 파일시스템의 유형을 명시
-V : ff 명령어를 실행하지 않고 명령어의 사용법을 보여준다.
-s : 파일의 path name 뒤에 파일의 사이즈를 바이트단위로 보여준다.
-u : 파일의 path name 뒤에 파일의 소슈자 명를 보여준다.

ff명령어의 사용예를 생략하겠습니다..
다음은 quot 명령어로 파일시스템에서 각 사용자에 의해 사용된 디스크의 사용량을 1024바이트 단위로 보여줍니다..
옵션은..

-a : 마운트된 모든 파일 시스템의 디스크 사용량을 보여준다.
-f : 파일 시스템에서 각 사용자에 의해서 사용된 디스크의 사용량과 함께 파일의 수를 보여준다.

==========================================================================================================================
# quot -a
/dev/rdsk/c0d0s0 (/):
574238  root
307878  bin
21837   daemon
 3482   #100
 3347   oracle
  765   uucp
  290   adm
  167   lp
   37   #101
    4   #5001
    2   nobody
/dev/rdsk/c0d0s7 (/export/home):
1643985 oracle
 1485   root
   23   yasi
   13   #101
    1   #100
==========================================================================================================================

우리가 보통 메일을 보내고 받고 하는 서비를 받는데...
여기서 모든 사이트는 용량제한을 해놓았습니다....
이런 식으로 솔라리스에서도 사용자에 대한 디스크 사용공간을 제한할 수 있습니다..
그 명령어는 quota입니다..
이 명령은 당연히 root 이어야 겠죠...
다음의 단계대로 하면 됩니다..

==========================================================================================================================

# vi /etc/vfstab
파일시스템           K바이트    사용    가용   용량    설치지점
/dev/dsk/c0d0s0      1491822  912047  520103    64%    /
/dev/dsk/c0d0p0:boot   10484    1669    8815    16%    /boot
/proc                      0       0       0     0%    /proc
#device         device          mount           FS      fsck    mount   mount
#to mount       to fsck         point           type    pass    at boot options
#
#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr          ufs     1       yes     -
fd      -       /dev/fd fd      -       no      -
/proc   -       /proc   proc    -       no      -
/dev/dsk/c0d0s1 -       -       swap    -       no      -
/dev/dsk/c0d0s0 /dev/rdsk/c0d0s0        /       ufs     1       no      -
/dev/dsk/c0d0p0:boot    -       /boot   pcfs    -       no      -
/dev/dsk/c0d0s7 /dev/rdsk/c0d0s7        /export/home    ufs     2       yes     rq                       <--- 마지막 옵션에 rq(reuest quota)입력
swap    -       /tmp    tmpfs   -       yes     -
~
~
~
~
~
~
~
~
~
~
~
:wq
# touch /export/home/quotas                          -- quota를 설정할 파일 시스템에 quotas 파일을 만든다.
# chmod 600 /export/home/quotas                      -- root만의 읽기전용 파일을 만든다.
# quotaon -v /export/home                            -- quotaon 명령을 이용해서 디스크 사용 제한할 파일 시스템을 quota turn on한다.
/export/home: quotas turned on
# edquota yasi                                        -- edquota명령을 이용해서 각 사용자의 디스크 사용량을 할당(vi 편집기 열림)
fs /export/home blocks (soft = 50, hard = 60) inodes (soft = 90, hard = 100)
~
~
~
~
~
~
:wq
# quotacheck -av                                          -- quotacheck 명령을 이용해서 quota설정을 적용한다.
*** Checking quotas for /dev/rdsk/c0d0s7 (/export/home)
# quota -v yasi                                            -- 설정된 quota 확인
Disk quotas for yasi (uid 1002):
Filesystem     usage  quota  limit    timeleft  files  quota  limit    timeleft
/export/home       0     50     60                  0     90    100

==========================================================================================================================

다음은 edquota 명령을 했을때 나오는 각 필드의 의미이다..
fs /export/home blocks (soft = 0, hard = 0) inodes (soft = 0, hard = 0)

fs       :  제한할 파일 시스템 명시
blocks   : 사용을 제한할 블록수를 정의
soft = n : 블록수가 n에 도달하면 사용자에게 경고 메세지 보낸다.
hard = n : 블록수가 n에 도달하면 더 이상 사용자의 디스크 사용을 금지한다.
inode    : 사용자에게 제한한 inode수
soft = n : inode수가 n 에 도달하면 경고 메세지
hard = n : Inode수가 n에 도락하면 더이상 디스크의 사용을 금지한다.

다음은 swap에 대해서 알아봅시다...
swap 은 가상메모리 공간을 의미합니다...
swap 슬라이스는 현재 프로세스를 다루기에 실제 메모리가 충분치 않을때 사용하는 가상 메모리 영역입니다..
메모리 사용에 대한 야그는 생략하고...스왑영역을 추가하고 삭제하는 방법을 알아보겠습니다..

스왑 영역의 추가/삭제/조회등은 swap 유틸리티를 사용합니다...
옵션은 다음과 같습니다..

a : 추가
d : 삭제
l : 조회
s : 요약정보

이제..스왑을 추가하고...조회하고...제거하는 것을 직접 실습해 봅시다..

스왑의 추가
==========================================================================================================================

yasicom% su                              -- root 유저로 로긴
Password:
# mkdir /files                           -- 스왑파일이 속할 디렉토리 생성
# mkfile 24m /files/swapfile             -- mkfile 명령으로 스와 파일 생성(절대 경로명 적어준다... mkfile size[k|b|m] filename
# swap -a /files/swapfile                -- 반드시 절대 경로명을 적어주어야 한다..
# vi /etc/vfstab
#device         device          mount           FS      fsck    mount   mount
#to mount       to fsck         point           type    pass    at boot options
#
#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr          ufs     1       yes     -
fd      -       /dev/fd fd      -       no      -
/proc   -       /proc   proc    -       no      -
/dev/dsk/c0d0s1 -       -       swap    -       no      -
/dev/dsk/c0d0s0 /dev/rdsk/c0d0s0        /       ufs     1       no      -
/dev/dsk/c0d0p0:boot    -       /boot   pcfs    -       no      -
/dev/dsk/c0d0s7 /dev/rdsk/c0d0s7        /export/home    ufs     2       yes     rq
swap    -       /tmp    tmpfs   -       yes     -
/files/swapfile   -   -   swap   -   no   -                 <----------------------------- /etc/vfstab 화일에 지금 만든 파일을 swap이라고 명시하고 관련된 내용을 적어준다.
~
~
~
~
~
:wq
# swap -l                                          -- 스왑에 대한 조회
swapfile             dev  swaplo 블록   사용 가능
/dev/dsk/c0d0s1     102,1       8 1049320 887584
/files/swapfile       -        8  49144  49144
# swap -s
총: 96352k 바이트 할당 + 54380k 예약 = 150732k 사용, 461380k 사용 가능
==========================================================================================================================



스왑의 제거
==========================================================================================================================

yasicom% su                              -- root 유저로 로긴
Password:
# swap -d /files/swapfile
# vi /etc/vfstab
#device         device          mount           FS      fsck    mount   mount
#to mount       to fsck         point           type    pass    at boot options
#
#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr          ufs     1       yes     -
fd      -       /dev/fd fd      -       no      -
/proc   -       /proc   proc    -       no      -
/dev/dsk/c0d0s1 -       -       swap    -       no      -
/dev/dsk/c0d0s0 /dev/rdsk/c0d0s0        /       ufs     1       no      -
/dev/dsk/c0d0p0:boot    -       /boot   pcfs    -       no      -
/dev/dsk/c0d0s7 /dev/rdsk/c0d0s7        /export/home    ufs     2       yes     rq
swap    -       /tmp    tmpfs   -       yes     -
/files/swapfile   -   -   swap   -   no   -                 <----------------------------- /etc/vfstab 화일에서 추가한 엔트리 제거
~
~
~
~
~
:wq
# rm /files/swapfile                              -- 스왑으로 쓰던 파일 제거
# swap -l
swapfile             dev  swaplo 블록   사용 가능
/dev/dsk/c0d0s1     102,1       8 1049320 887584
# swap -s
총: 96344k 바이트 할당 + 54388k 예약 = 150732k 사용, 436808k 사용 가능
==========================================================================================================================

'Device & Language > Solaris 10' 카테고리의 다른 글

Hardware Diagnostics for Sun Systems  (0) 2010.09.01
manpages section 1M: System Administration Commands  (0) 2010.09.01
솔10 svcadm  (0) 2010.09.01
svcs– report service status  (0) 2010.09.01
fsck– check and repair file systems  (0) 2010.09.01
2010-09-01 14:20:46

Name

    svcs– report service status

Synopsis

    svcs [-aHpv?] [-o col[,col]]... [-R FMRI-instance]... 
         [-sS col]... [FMRI | pattern]...
    svcs {-d | -D} [-Hpv?] [-o col[,col]]... [-sS col]... 
         [FMRI | pattern] ...
    svcs -l [FMRI | pattern]...
    svcs -x [-v] [FMRI]...

Description

    The svcs command displays information about service instances as recorded in the service configuration repository.

    The first form of this command prints one-line status listings for service instances specified by the arguments. Each instance is listed only once. With no arguments, all enabled service instances, even if temporarily disabled, are listed with the columns indicated below.

    The second form prints one-line status listings for the dependencies or dependents of the service instances specified by the arguments.

    The third form prints detailed information about specific services and instances.

    The fourth form explains the states of service instances. For each argument, a block of human-readable text is displayed which explains what state the service is in, and why it is in that state. With no arguments, problematic services are described.

    Error messages are printed to the standard error stream.

    The output of this command can be used appropriately as input to the svcadm(1M) command.

Options

    The following options are supported:

    -?

    Displays an extended usage message, including column specifiers.

    -a

    Show all services, even disabled ones. This option has no effect if services are selected.

    -d

    Lists the services or service instances upon which the given service instances depend.

    -D

    Lists the service instances that depend on the given services or service instances.

    -H

    Omits the column headers.

    -l

    (The letter ell.) Displays all available information about the selected services and service instances, with one service attribute displayed for each line. Information for different instances are separated by blank lines.

    The following specific attributes require further explanation:

    dependency

    Information about a dependency. The grouping and restart_on properties are displayed first and are separated by a forward slash (/). Next, each entity and its state is listed. See smf(5) for information about states. In addition to the standard states, each service dependency can have the following state descriptions:

    absent

    No such service is defined on the system.

    invalid

    The fault management resource identifier (FMRI) is invalid (see smf(5)).

    multiple

    The entity is a service with multiple instances.

    File dependencies can only have one of the following state descriptions:

    absent

    No such file on the system.

    online

    The file exists.

    If the file did not exist the last time that svc.startd evaluated the service's dependencies, it can consider the dependency to be unsatisfied. svcadm refresh forces dependency re-evaluation.

    unknown

    stat(2) failed for a reason other than ENOENT.

    See smf(5) for additional details about dependencies, grouping, and restart_on values.

    enabled

    Whether the service is enabled or not, and whether it is enabled or disabled temporarily (until the next system reboot). The former is specified as either true or false, and the latter is designated by the presence of (temporary).

    A service might be temporarily disabled because an administrator has run svcadm disable -t, used svcadm milestone, or booted the system to a specific milestone. See svcadm(1M) for details.

    -o col[,col]...

    Prints the specified columns. Each col should be a column name. See COLUMNS below for available columns.

    -p

    Lists processes associated with each service instance. A service instance can have no associated processes. The process ID, start time, and command name (PID, STIME, and CMD fields from ps(1)) are displayed for each process.

    -R FMRI-instance

    Selects service instances that have the given service instance as their restarter.

    -s col

    Sorts output by column. col should be a column name. See COLUMNS below for available columns. Multiple -s options behave additively.

    -S col

    Sorts by col in the opposite order as option -s.

    -v

    Without -x, displays verbose columns: STATE, NSTATE, STIME, CTID, and FMRI.

    With -x, displays extra information for each explanation.

    -x

    Displays explanations for service states.

    Without arguments, the -x option explains the states of services which:

    • are enabled, but are not running.

    • are preventing another enabled service from running.

Operands

    The following operands are supported:

    FMRI

    A fault management resource identifier (FMRI) that specifies one or more instances (see smf(5)). FMRIs can be abbreviated by specifying the instance name, or the trailing portion of the service name. For example, given the FMRI:


    svc:/network/smtp:sendmail

    The following are valid abbreviations:


    sendmail
    :sendmail
    smtp
    smtp:sendmail
    network/smtp

    The following are invalid abbreviations:


    mail
    network
    network/smt

    If the FMRI specifies a service, then the command applies to all instances of that service, except when used with the -D option.

    Abbreviated forms of FMRIs are unstable, and should not be used in scripts or other permanent tools.

    pattern

    A pattern that is matched against the FMRIs of service instances according to the “globbing” rules described by fnmatch(5). If the pattern does not begin with svc:, then svc:/ is prepended. The following is a typical example of a glob pattern:


    qexample% svcs \*keyserv\*
    STATE          STIME     FMRI
    disabled       Aug_02    svc:/network/rpc/keyserv:default
    FMRI-instance

    An FMRI that specifies an instance.

COLUMNS

    Column names are case insensitive. The default output format is equivalent to “-o state,stime,fmri”. The default sorting columns are STATE, STIME, FMRI.

    CTID

    The primary contract ID for the service instance. Not all instances have valid primary contract IDs.

    DESC

    A brief description of the service, from its template element. A service might not have a description available, in which case a hyphen (-) is used to denote an empty value.

    FMRI

    The FMRI of the service instance.

    INST

    The instance name of the service instance.

    NSTA

    The abbreviated next state of the service instance, as given in the STA column description. A hyphen denotes that the instance is not transitioning. Same as STA otherwise.

    NSTATE

    The next state of the service. A hyphen is used to denote that the instance is not transitioning. Same as STATE otherwise.

    SCOPE

    The scope name of the service instance.

    SVC

    The service name of the service instance.

    STA

    The abbreviated state of the service instance (see smf(5)):

    DGD

    degraded

    DIS

    disabled

    LRC

    legacy rc*.d script-initiated instance

    MNT

    maintenance

    OFF

    offline

    ON

    online

    UN

    uninitialized

    Absent or unrecognized states are denoted by a question mark (?) character. An asterisk (*) is appended for instances in transition, unless the NSTA or NSTATE column is also being displayed.

    See smf(5) for an explanation of service states.

    STATE

    The state of the service instance. An asterisk is appended for instances in transition, unless the NSTA or NSTATE column is also being displayed.

    See smf(5) for an explanation of service states.

    STIME

    If the service instance entered the current state within the last 24 hours, this column indicates the time that it did so. Otherwise, this column indicates the date on which it did so, printed with underscores (_) in place of blanks.

Examples


    Example 1 Displaying the Default Output

    This example displays default output:


    example% svcs
    STATE          STIME    FMRI
    ...
    legacy_run     13:25:04 lrc:/etc/rc3_d/S42myscript
    ...
    online         13:21:50 svc:/system/svc/restarter:default
    ...
    online         13:25:03 svc:/milestone/multi-user:default
    ...
    online         13:25:07 svc:/milestone/multi-user-server:default
    ...


    Example 2 Listing All Local Instances

    This example lists all local instances of the service1 service.


    example% svcs -o state,nstate,fmri service1
    STATE        NSTATE        FMRI
    online       -             svc:/service1:instance1
    disabled     -             svc:/service1:instance2


    Example 3 Listing Verbose Information

    This example lists verbose information.


    example% svcs -v network/rpc/rstat:udp
    STATE          NSTATE        STIME    CTID   FMRI
    online         -             Aug_09        - svc:/network/rpc/rstat:udp


    Example 4 Listing Detailed Information

    This example lists detailed information about all instances of system/service3. Additional fields can be displayed, as appropriate to the managing restarter.


    example% svcs -l network/rpc/rstat:udp
    
    fmri         svc:/network/rpc/rstat:udp
    enabled      true
    state        online
    next_state   none
    restarter    svc:/network/inetd:default
    contract_id
    dependency   require_all/error svc:/network/rpc/bind (online)


    Example 5 Listing Processes


    example% svcs -p sendmail
    STATE          STIME    FMRI
    online         13:25:13 svc:/network/smtp:sendmail
                   13:25:15   100939 sendmail
    13:25:15   100940 sendmail  


    Example 6 Explaining Service States Using svcs -x

    (a) In this example, svcs -x has identified that the print/server service being disabled is the root cause of two services which are enabled but not online. svcs -xv shows that those services are print/rfc1179 and print/ipp-listener. This situation can be rectified by either enabling print/server or disabling rfc1179 and ipp-listener.


    example% svcs -x
    svc:/application/print/server:default (LP print server)
     State: disabled since Mon Feb 13 17:56:21 2006
    Reason: Disabled by an administrator.
       See: http://sun.com/msg/SMF-8000-05
       See: lpsched(1M)
    Impact: 2 dependent services are not running. (Use -v for list.)

    (b) In this example, NFS is not working:


    example$ svcs nfs/client
    STATE          STIME    FMRI
    offline        16:03:23 svc:/network/nfs/client:default

    (c) The following example shows that the problem is nfs/status. nfs/client is waiting because it depends on nfs/nlockmgr, which depends on nfs/status:


    example$ svcs -xv nfs/client
    svc:/network/nfs/client:default (NFS client)
     State: offline since Mon Feb 27 16:03:23 2006
    Reason: Service svc:/network/nfs/status:default
            is not running because a method failed repeatedly.
       See: http://sun.com/msg/SMF-8000-GE
      Path: svc:/network/nfs/client:default
              svc:/network/nfs/nlockmgr:default
                svc:/network/nfs/status:default
       See: man -M /usr/share/man -s 1M mount_nfs
       See: /var/svc/log/network-nfs-client:default.log
    Impact: This service is not running.

Exit Status

    The following exit values are returned:

    0

    Successful command invocation.

    1

    Fatal error.

    2

    Invalid command line options were specified.

Attributes

    See attributes(5) for descriptions of the following attributes:

    ATTRIBUTE TYPE 

    ATTRIBUTE VALUE 

    Availability 

    SUNWcsu 

    Interface Stability 

    See below. 

    Screen output is Uncommitted. The invocation is Committed.

See Also


'Device & Language > Solaris 10' 카테고리의 다른 글

Hardware Diagnostics for Sun Systems  (0) 2010.09.01
manpages section 1M: System Administration Commands  (0) 2010.09.01
솔10 svcadm  (0) 2010.09.01
fsck-spec  (0) 2010.09.01
fsck– check and repair file systems  (0) 2010.09.01
2010-09-01 09:44:17
[출처:WordUp]

'Study > English' 카테고리의 다른 글

도로 관련 표현  (1) 2010.09.01
voca 7000(5)  (0) 2010.09.01
voca 7000(4)  (0) 2010.09.01
voca 7000(3)  (0) 2010.09.01
voca 7000(2)  (0) 2010.09.01
2010-09-01 09:43:29
[출처:WordUp]

'Study > English' 카테고리의 다른 글

도로 관련 표현  (1) 2010.09.01
voca 7000(6)  (0) 2010.09.01
voca 7000(4)  (0) 2010.09.01
voca 7000(3)  (0) 2010.09.01
voca 7000(2)  (0) 2010.09.01
2010-09-01 09:42:13
[출처:WordUp]

'Study > English' 카테고리의 다른 글

voca 7000(6)  (0) 2010.09.01
voca 7000(5)  (0) 2010.09.01
voca 7000(3)  (0) 2010.09.01
voca 7000(2)  (0) 2010.09.01
voca 7000(1)  (0) 2010.09.01
2010-09-01 09:41:29
[출처:WordUp]

'Study > English' 카테고리의 다른 글

voca 7000(5)  (0) 2010.09.01
voca 7000(4)  (0) 2010.09.01
voca 7000(2)  (0) 2010.09.01
voca 7000(1)  (0) 2010.09.01
Don't Push Me - Sweetbox  (0) 2010.09.01
2010-09-01 09:40:35
[출처:WordUp]

'Study > English' 카테고리의 다른 글

voca 7000(4)  (0) 2010.09.01
voca 7000(3)  (0) 2010.09.01
voca 7000(1)  (0) 2010.09.01
Don't Push Me - Sweetbox  (0) 2010.09.01
[본문스크랩] Sweetbox - Everything’s Gonna Be Alright  (0) 2010.09.01
2010-09-01 09:38:07
[출처:WordUp]

'Study > English' 카테고리의 다른 글

voca 7000(3)  (0) 2010.09.01
voca 7000(2)  (0) 2010.09.01
Don't Push Me - Sweetbox  (0) 2010.09.01
[본문스크랩] Sweetbox - Everything’s Gonna Be Alright  (0) 2010.09.01
2010년 4월 3일 오후 10시 25분에 저장한 글입니다.  (0) 2010.09.01
2010-09-01 09:10:18
갤럭시 탭 vs 아이패드
   아이패드  갤럭시 탭
 시스템  애플 A4(1.0 GHz)  S5PC110 1GHz
 ARM Cortex-A8 1GHz or 1.2GHz
 디스플레이(LCD)  9.7 인치(LED 백라이트)  7인치(LED백라이트)
 디스플레이(해상도)  1024 X 768  800x480, 1024 X 600
 네트워크  무선랜(802.11b/g/n), WCDMA(3G) ,Bluetooth 2.1 + EDR  무선랜(802.11n), WCDMA(3G)
 하드디스크  16G,32G,64G(SSD)  16GB / 확장슬롯 제공
 입출력  헤드폰 잭,마이크, 출력장치,독 커네터,심카드트레이  웹캠(3.2MPixels), 플래시탑재, 전면 영상통화용 카메라
 배터리  내장 폴리머 형식
 최대 10시간 동영상 재생 가능
 
 운영체제  Mac OS X v10.5.8 or later  안드로이드2.2
 크기  189.7 x 242.8 x 13.4mm  
 무게  Wi-Fi 모델: 0.68kg
 
Wi-Fi + 3G 모델: 0.73kg
 약0.37Kg
 컬러  그레이  블랙
 부가기능  GPS(WIFI+3G)
전화기능(WIFI+3G)
멀티터치패드
핑거프린트
레지스던트 코팅
특수자막지원
보이스 오버스크린 리더
정전식 줌
모노오디오
빌트인 스피커
가속도계
주변광 센서
 멀티터치지원
터치자판
삼성키패드

모아키
스와이프
지상파DMB
출시  연말예정  9월 중 예정,  SKT 보조금 지원

현재 갤럭시 탭의 스펙이 정해진 것은 아니라서 정확하지가 않네요


베를린 가전, 정보통신 박람회 (IFA)
9.3~9.8
2010-09-01 01:49:17
출처 팝송 완벽 번역 | 다크문
원문 http://blog.naver.com/714stepback/60034446674

곡명: Don't Push Me

 

가수: Sweetbox

 

수록 앨범: Jade (2002)

 

I'm a love em and leave em
Touch and tease em kinda girl
I'm the perfect type for one wild night

 

난 그들에게 사랑을 주고 그들을 떠나가 버리는
어루만지며 애를 태우는 그런 부류의 여자야
거친 하룻밤을 위해선 완벽한 타입이지

 

Yeah, I suffocate quick
Does that make me a bitch?
I don't really care, no

 

그래, 난 금방 숨이 막혀버려
이런점으로 보면 난 못된 계집인건가?
(하지만) 난 별로 상관 안 해, 안 해

 

Well, your roses were sweet
Really swept me off my feet
But I start to choke
When you say let's elope

 

음, 어쨌든 네가 준 장미는 향기로웠고
날 정말 반하게 만들었어
하지만 네가 함께 도망치자고 말하면
난 숨이 막혀버려

 

Yeah, I suffocate quick
Does that make me a bitch?
I don't really care
No, no, no...

 

그래, 난 금방 숨이 막혀버려
이런점으로 보면 난 못된 계집인건가?
(하지만) 난 별로 상관 안 해
안 해, 안 해, 안 해...

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Can we take a bubble bath
Have a drink and a laugh
Enjoy what we have
And then leave it to the past

 

우린 거품 목욕을 하고
술이나 한 잔 하면서 웃을 수도 있어
우리가 가진 것을 즐기고 나서
과거로 흘려 보내는 거지

 

Cause I don't give a damm
Maybe you're the perfect man
That's not how this story goes

 

왜냐면 네가 완벽한 남자라고 해도
난 조금도 개의치 않거든
그건 내가 생각하고 있는 방식이 아냐

 

You can write me fat checks
Or buy diamonds for my neck
Buy me big fat rings?
I prefer Tiffany's

 

넌 내게 돈을 두둑이 쓸 수도 있어
목에 걸 다이아몬드도 사줄 수 있지
내게 커다란 반지 하나 사주겠어?
난 티파니께 더 좋던데

 

Cause I don't give a damn
Maybe you're the perfect man
That's not how this story goes, no no

 

왜냐면 네가 완벽한 남자라고 해도
난 조금도 개의치 않거든
그건 내가 생각하고 있는 방식이 아냐, 아냐 아냐

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Don't push, push me so hard
Don't push me so far, no
Don't push, push me so hard
Don't push me so far, no

 

내게 너무, 너무 강요하지마
내게 지나치게 강요하지마, 하지마
내게 너무, 너무 강요하지마
내게 지나치게 강요하지마, 하지마

 

And I'm not trying to be
Giving you a bitter pill, no way
And I don't wanna make you promises
I can't fulfill
No I...

 

그리고 난 네게 쓰디쓴 약을 주려고
하는 게 아니야, 절대 아니지
그저 내가 지킬 수도 없는 약속을
네게 하고 싶지는 않을 뿐이야
아니야 난...

 

Don't push me, don't push me more
Don't push me, don't push me down
Don't cage me in (oh)
Don't push me (I don't wanna be tied down)

 

내게 강요하지마, 내게 더 이상은 강요하지마
내게 강요하지마, 날 짓누르지마
날 가둬두려 하지마 (아)
내게 강요하지마 (난 구속받고 싶지는 않아)

 

Don't push me so hard (yeah)
Don't push me so far (no, no)
Don't cage me in (com'mon)
Don't tie me down

 

내게 너무 애써 강요하지는 마 (그래)
내게 지나치게 강요하지마 (하지마, 하지마)
날 가둬두려 하지마 (제발)
날 속박하려 하지마

 

I'm a love em and leave em
Touch and tease em kinda girl
I'm the perfect type for one wild night

 

난 그들에게 사랑을 주고 그들을 떠나가 버리는
어루만지며 애를 태우는 그런 부류의 여자야
거친 하룻밤을 위해선 완벽한 타입이지

 

Yeah, I suffocate quick
Does that make me a bitch?
I don't really care, no

 

그래, 난 금방 숨이 막혀버려
이런점으로 보면 난 못된 계집인건가?
(하지만) 난 별로 상관 안 해, 안 해

 

Well, your roses were sweet
Really swept me off my feet
But I start to choke
When you say let's elope

 

음, 어쨌든 네가 준 장미는 향기로웠고
날 정말 반하게 만들었어
하지만 네가 함께 도망치자고 말하면
난 숨이 막혀버려

 

Yeah, I suffocate quick
Does that make me a bitch?
I don't really care
No, no, no...

 

그래, 난 금방 숨이 막혀버려
이런점으로 보면 난 못된 계집인건가?
(하지만) 난 별로 상관 안 해
안 해, 안 해, 안 해...

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Don't push me so hard
Don't push me so far
Don't cage me in
Don't tie me down

 

내게 너무 강요하지마
내게 지나치게 강요하지마
날 가둬두려 하지마
날 속박하려 하지마

 

Oh, don't push me so hard (don't push me)
Don't push me so far (com'mon)
Don't cage me in (oh)
Don't tie me down (don't tie me down)

 

아, 내게 너무 애써 강요하지는 마 (내게 강요하지마)
내게 지나치게 강요하지마 (이것 봐)
날 가둬두려 하지마 (아)
날 속박하려 하지마 (날 속박하려 하지마)

 

Don't push me so hard (hey, hey)
Don't push me so far (no, no)
Don't cage me in (ooh)
Don't tie me down (don't tie me down)

 

내게 너무 강요하지마 (이봐, 이봐)
내게 지나치게 강요하지마 (하지마, 하지마)
날 가둬두려 하지마 (아)
날 속박하려 하지마 (날 속박하지는 마)

 

-------------------------------------------------------------------------------------------

*em: (=them) 그들
- Give em hell! (본때를 보여 줘!)

 

*tease: (짓궂게) 괴롭히다, 애타게 하다

 

*wild: 거친, 열광적인, 야생의

 

*suffocate: 숨이 막히다, 질식하다, 답답해지다
- Dolphins struggle to lift their snouts above the suffocating slick (돌고래들은 숨막히는 원유막 위로 코를 밀어 올리려고 버둥대고 있다)

 

*bitch: 심술궂은 여자, 동물의 암컷

 

*swept off one's feet: (물결에) 발이 휩쓸리다, (한눈에) 반하게 하다, 쉽게 납득시키다
- We were almost swept off our feet by the waves (우리는 파도에 발이 거의 휩쓸릴 뻔했다)
- The first time he met her, he was completely swept off his feet (그는 그녀를 처음으로 만난 순간에, 그녀에게 완전히 반해버렸다)

 

*choke: 질식하다, 억누르다
- She was choking with emotion (그녀는 감정이 북받쳐 목이 메었다)

 

*elope: (남녀가) 눈이 맞아 함께 달아나다, 사랑의 도피를 하다
- She eloped with her childhood sweetheart (그녀는 어린시절의 연인과 눈이 맞아 달아났다)

 

*cage in: 감금하다, 자유를 속박하다 (cage는 새장을 의미하는 단어로 cage in이나 cage up이 쓰이면 새장이나 우리 따위에 가두는 걸 의미하게 됩니다)
- I felt terribly caged in that office (나는 그 사무실에서 끔찍하게 갇힌 기분이 들었다)

 

*tie down: (일어서지 못하게) 옭아매다, 속박하다
- Children do tie you down, don't they? (아이들 때문에 꼼짝 못하시죠, 그렇죠?)

 

*bubble bath: 거품 목욕

 

*don't give a damn: 조금도 개의치 않다
- I don't give a damn what you say, I'm going (난 네가 무슨 말을 하든 조금도 관심 없어. 난 갈 거야)

 

*Tiffany's: 뉴욕 시에 있는 ‘고급 보석상’의 이름입니다.

 

*bitter pill: 쓴 알약, 힘든 일
- It was a bitter pill to swallow (그것은 받아들이기 힘든 일이었다)

 

*no way: ‘there is no way’의 형식으로 쓰이면 ‘절대 ~하지 않는다’는 의미를 가지며, no의 강조 표현인 감탄사적의 요법으로 쓰이면 ‘절대로 안 된다, 절대로 하기싫다(absolutely not)’의 의미를 가집니다.
- There's no way I can meet that deadline (도저히 그 마감 시간에 댈 수가 없다)