http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201sol64soft.html

AND

디렉토리를 삭제하기 전에 디렉토리를 비워야 하는 번거로움을 피하려면, rm -rf 명령을 입력하여 그 디렉토리에 있는 모든 파일과 디렉토리를 한 번에 삭제할 수 있습니다.

$ rm -rf dirname

AND

압축하기

tar 압축하기

> tar cvf test.tar test1 test2

gzip 압축하기

> gzip test.tar

tar, gzip 한번에 압축하기

> tar zcvf test.tgz test1 test2

압축풀기

gzip 압축 풀기

> gzip -d test.tgz

tar 압축 풀기

> tar xvf test.tar

tar, gzip 한번에 풀기

> tar zxvf test.tgz

AND

1. CPU 정보

AIX lsdev -Cc processor

HP-UX ioscan -fnC processor

SOLARIS psrinfo -v

Tru64 psrinfo -v

LINUX cat /proc/cpuinfo

2. Physical RAM

AIX bootinfo -r

HP-UX grep -i Physical /var/adm/syslog/syslog.log

SOLARIS Prtconf

Tru64 uerf | grep memory

LINUX free

3. Kernel Bits

AIX bootinfo -K

HP-UX getconf KERNEL_BITS

SOLARIS isainfo -kv

Tru64 64

LINUX getconf WORD_BIT

4. Service Switch

AIX /etc/netsvc.conf

HP-UX /etc/nsswitch.conf

SOLARIS /etc/nsswitch.conf

Tru64 /etc/svc.conf

LINUX /etc/nsswitch.conf

5. NIC

AIX ifconfig -a

HP-UX lanscan -v

SOLARIS ifconfig -a

Tru64 ifconfig -a

LINUX ifconfig -a

6. Administrator

AIX smit

HP-UX sam

SOLARIS admintool

Tru64  

LINUX linuxconf

AND

pom.xml에

<dependency>
<groupId>org.web3j</groupId>
<artifactId>core</artifactId>
<version>3.3.1</version>
</dependency>
        
<dependency>
<groupId>org.web3j</groupId>
<artifactId>utils</artifactId>
<version>4.5.10</version>
</dependency>  


 

AND