Bioinformatics solution/Linux related
-
[CENT OS 7] 개요 윈도우에 설치하기Bioinformatics solution/Linux related 2018. 12. 1. 22:52
컴퓨터의 구조와 윈도우, cent OS
-
[centOS 6.8] 외장 하드 연결 (External HDD mount)Bioinformatics solution/Linux related 2018. 8. 28. 10:10
외장하드 4TB가 넘어가면 FAT 형식이 아니다.... 그렇기 때문에 특별한 처리를 해야 한다. 리눅스에 연결하기 위해서는 , mount를 하기 위해선... 2가지를 다운받아야 한다. https://centos.pkgs.org/6/forensics-x86_64/fuse-exfat-1.0.1-1.el6.x86_64.rpm.html https://centos.pkgs.org/6/forensics-x86_64/exfat-utils-1.2.3-1.el6.x86_64.rpm.html 다운 받았으면 설치하면 된다. (당연히 su 권한으로 설치해야 된다.)rpm -Uvh exfat-utils-1.0.1-1.el6.x86_64.rpm 다음과 같이 설치 된다. warning: exfat-utils-1.0.1-1.el6...
-
[linux bash shell] bz2 풀기Bioinformatics solution/Linux related 2018. 8. 23. 09:48
bz2를 bzip2로 압축해제 하는것을 추천 bzip2 -d filename.bz2 위의 명령어는 원래 파일이 없어진다.원래 파일을 보존하기 위해서 -k option 을 이용한다.bzip2 -dk filename.bz2 -----------------------------------------------------------------------------------------------bzip2to compress and decompress files Examples compress files (original file will be removed after compression) bzip2 myfile.txt bzip2 *.txt keep the original file (option -k) bzip..