tar.Z 파일 linux에서 압축풀기
2020. 3. 17. 15:31ㆍ오류
https://archive.ics.uci.edu/ml/datasets/Artificial+Characters
data set을 얻을 수 있는 좋은 공간이죠!
이 중 artificial characters data set을 가져와보도록 하겠습니다.
이 data set은 tar.Z로 파일이 압축되어 있기 때문에 linux서버에서 압축을 풀도록 할게요.
아래와 같은 방법을 진행해주시면 압축이 풀립니다!
$ uncompress character.tar.Z
$ tar –xvf character.tar
$ cd murphy
$ unzip learn.zip
$ unzip test.zip
데이터 파일 개수 확인하기
murphy/learn$ find ./ -type f |wc -l
murphy/test$ find ./ -type f |wc -l
728x90
'오류' 카테고리의 다른 글
[git] git branch 확인이 안될 때 (0) | 2020.11.04 |
---|---|
history 유지하며 여러 git repo 합치기 (0) | 2020.10.28 |
[Python] TypeError: Object of type int32 is not JSON serializable (0) | 2020.03.16 |
[Python] ValueError: 1 columns passed, passed data had 11 columns 오류 (0) | 2020.03.02 |
ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 액세스가 거부되었습니다: 오류 (0) | 2020.03.02 |