전체 글
-
Repositories for APT and YUM (Filebeat 7.x install)IT 2020. 11. 13. 12:19
Filebeat 설치 APT To add the Beats repository for APT: 1. Download and install the Public Signing Key: wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - 2. You may need to install the apt-transport-https package on Debian before proceeding: sudo apt-get install apt-transport-https 3. Save the repository definition to /etc/apt/sources.list.d/elastic-7.x.list: echo "..
-
[H/W] 디스크 속도측정 - Crystal Disk MarkIT 2015. 11. 18. 15:00
서론 친구의 컴퓨터가 느리다고 문의를 해왔다. 사실 컴퓨터에서 가장 느린것은 디스크의 I/O 속도. 이 디스크 I/O 속도만 올라가도 체감 속도가 빨라짐을 느낄 수 있다. 속도 테스트. 속도 테스트는 윈도우 운영체제에서 CrystalDiskMark 를 많이 쓰는듯 하다. (리눅스의 경우 fio) http://crystalmark.info/ 위 페이지에서 [通常版 : zip] 을 받아서 압축을 풀면, 32비트용과 64비트용이 있다. 자기 피시 사양에 맞게 실행하면 된다. 직 다운로드 링크 : http://crystalmark.info/redirect.php?product=CrystalDiskMark 속도 측정 HDD vs SSD vs RAMDisk 1. HDD(USB 3.0 외장하드) 2. Intel 73..
-
[Linux] Clearing cachesIT 2015. 6. 19. 12:34
drop_caches Writing to this will cause the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free. To free pagecache: echo 1 > /proc/sys/vm/drop_caches To free dentries and inodes: echo 2 > /proc/sys/vm/drop_caches To free pagecache, dentries and inodes: echo 3 > /proc/sys/vm/drop_caches As this is a non-destructive operation and dirty objects are not fr..
-
[Linux] VIM 설정IT 2015. 6. 19. 11:34
vim 설정은 매번 할때마다 햇갈려서 포스팅. 뭐 여러가지 잘 설정해 놓은 사람이 많지만, 난 이정도로 만족하고 더이상 고민 끝. set nocp set all& set hi=100 set bs=indent,eol,start set fenc=utf-8 set fencs=utf-8,cp949 set ru set sc set nu set ts=4 set magic set sel=exclusive set hls set scs set ls=2 set autoindent sy enable set ruler syntax on set t_Co=256 color desert set cursorline autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab autoinden..
-
[Linux] GRUB2 부팅순서 변경IT 2015. 6. 2. 11:46
2015-09-18 추가 # grub2-set-default 2 오렇게 하면 2번째껄로 바뀌네;;; =================================================================================================================== 리눅스 업데이트를 했는데, GRUB2로 업데이트 되었네,. 환경설정 파일을 수정해서 간단하게 부팅 순서를 바꿨던것과 다르게 먼가 좀 바뀌어서 살짝 기록. 설정 파일 위치는 다음과 같다. /boot/grub2/grub.cfg 1. 현재 기본 설정 확인 [root@localhost grub2]# grub2-editenv list saved_entry=CentOS Linux 7 (Core), with Lin..