일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- oracle supplemental
- oracleasm
- SSMS
- oracle tde
- oracle pdb
- SQL Server
- sqlnet.allowed_logon_version_server=8
- ORA-00020
- sqlnet.allowed_logon_version_client=8
- oracle sqlnet.ora
- ora-28002: the password will expire within 7 days
- oracle system lock
- oracle hugepage
- oracle 테스트 데이터
- oracle awr
- oracle SCN
- mssql database 삭제
- oracle account_status expired
- ora-39083 ora-00439
- 오라클
- ora-00439: feature not enabled: partitioning
- MSSQL
- oracle
- Oracle Database
- supplemental log 활성화
- oracle install
- partition_options=merge
- oracle dba_profile password_life_time
- Oracle RAC
- ora-28040: no matching authentication protocol
Archives
- Today
- Total
신문지한장
[Tech] tar 명령어 본문
1. tar로 압축하기
> tar -cvf [파일명.tar] [폴더명]
ex) abc라는 폴더를 aaa.tar로 압축하고자 한다면
> tar -cvf aaa.tar abc
2. tar 압축 풀기
> tar -xvf [파일명.tar]
ex) aaa.tar라는 tar파일 압축을 풀고자 한다면
> tar -xvf aaa.tar
3. tar.gz로 압축하기
> tar -zcvf [파일명.tar.gz] [폴더명]
ex) abc라는 폴더를 aaa.tar.gz로 압축하고자 한다면
> tar -zcvf aaa.tar.gz abc
4. tar.gz 압축 풀기
> tar -zxvf [파일명.tar.gz]
ex) aaa.tar.gz라는 tar.gz파일 압축을 풀고자 한다면
> tar -zxvf aaa.tar.gz
'Linux&Unix' 카테고리의 다른 글
[Tech] scp command (0) | 2024.04.18 |
---|---|
OS별 서버 사양 확인 커맨드 (1) | 2024.04.18 |
find 명령어 (0) | 2024.04.08 |
[Tech] 네트워크 인터페이스 등록 및 설정 (0) | 2024.04.08 |
backspace 오류 stty (0) | 2024.04.04 |