BLOG ARTICLE 분류 전체보기 | 226 ARTICLE FOUND
- 2020.03.05 oracle 10g client SunOS 64bit 다운로드 받는곳
- 2020.03.05 rm -rf를 사용하여 모두 삭제
- 2020.03.05 tar gz 압축하기 & 압축풀기
- 2020.03.05 OS 별 CPU, Memory, 커널Bit 확인방법
- 2020.03.05 Web3j 라이브러리 추가법 (maven 사용시)
디렉토리를 삭제하기 전에 디렉토리를 비워야 하는 번거로움을 피하려면, rm -rf 명령을 입력하여 그 디렉토리에 있는 모든 파일과 디렉토리를 한 번에 삭제할 수 있습니다.
$ rm -rf dirname |
압축하기
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
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
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>