Cheat Linux System
Linux 에서 짬짬히 자주 쓰이는 명령을 설정을 정리.
- Disk
- GRUB, fsck, dd
- System 설정
- rsync
비슷한 문서:
Disk
GRUB 복구
우분투 부트로더인 GRUB가 잘못되어 복구하려면 해당 배포본의 Live CD, Live USb 등으로 부팅해서 ‘Try Ubuntu’ 에서 터미널을 통해 복구 절차를 시작한다.
https://help.ubuntu.com/community/Grub2
https://wiki.ubuntu.com/Grub2#Recover
fsck
fsck(for file system consistency check) 명령은 파일 시스템을 조사하여 손상된 파일을 출력해 주며 사용자에게 그것을 복구할 것인지를 질의
fsck 수행은 시스템마다 약간의 차이가 있지만 대부분 다음과 같은 5개 항목에 대하여 검사
- Blocks and sizes, Pathname, Connectivity, Reference count, Free List
1 | $ sudo fsck –t ext2 /dev/hdb |
Attempt to repair damaged blocks
1 | $ sudo fsck –a |
Repair damaged blocks interactively
1 | $ sudo fsck -r <drive> |
force
Forcing the check
You can also force fsck at boot time by passing fsck.mode=force
, as a kernel parameter. This will check every filesystem you have on the machine.
/forcefsck
Create a file called forcefsck:
1 | # touch /forcefsck |
Now, reboot the system:
1 | # reboot |
Frce fsck on next boot using shutdown command (may not work on many modern distros)
The -F option force fsck on reboot, login as root and type the following command to reboot and run fsck:
1 | # shutdown -rF now |
Changing the check frequency
By default, fsck checks a filesystem every 30 boots (counted individually for each partition). To change the frequency of checking, run:
1 | $ sudo tune2fs -c 20 /dev/sda1 |
exFAT
리눅스테어 외부 USB 디스크를 exFAT로 포맷하고 사용한다면, exfat-fuse와 exfat-utils를 설치해 준다.
1 | $ sudo apt install exfat-fuse exfat-utils |
그리고 대부분 최신 리눅스 데스크탑은 USB 디스크를 더블클릭하면 자동마운트 해준다.
터미널에서는
1 | $ sudo mkdir /media/my_usb |
참조
dd
블록 크기
디스크에 데이터를 쓸려면 디스크의 기본 블록 크기인 512B 보다 큰게 좋다. 또한 쓰기 속도를 증가시키기 위해서 디스크의 물리적 지형에 맞는 크기를 사용하는 것이 좋다. fdisk 같은 유틸리티로 정보를 확인할 수 있고 혹은 sysfs 정보를 확인할 수 있다.
1 | /sys/block/sdX/size |
디스크 지우기
dd에 데이터를 쓸려면 디스크의 기본 블록 크기인 512B 보다 커야 한다. 또한 쓰기 속도를 증가시키기 위해서 디스크의 물리적 지형에 맞는 크기를 사용하는 것이 좋다.
1 | $ sudo dd bs=8k if=/dev/urandom of=/dev/rdisk2 |
fdisk 정보로 확인
1 | $ sudo fdisk -l /dev/sdb |
fdisk 결과의 Sector size는 전체 용량과 섹터 크기를 계산하면 논릭적인 섹터의 크기를 확인할 수 있다.
1 | echo $((64021856256/125042688)) |
Sector size (logical/physical): 512 bytes / 512 bytes
에서 물리 크기를 확인할 수 있다.
성능
dd 를 사용해서 1024 바이트를 1000000 블록에 걸쳐 쓰기를 수행한다 - 1GB
1 | $ time sudo dd bs=1024 count=1000000 if=/dev/zero of=1GB_file |
dd 를 사용해서 1GB 크기 파일을 1024 바이트씩 읽기를 한다.
1 | $ time sudo dd bs=1024 if=1GB_file of=/dev/null |
Verbose output
Sending an INFO signal to a running dd process makes it print I/O statistics to standard error and then resume copying. In the example below, dd is run in the background to copy 10 million blocks. The kill command makes it output intermediate I/O statistics, and when dd completes normally or is killed by the SIGINT signal, it outputs the final statistics.
1 | $ dd if=/dev/zero of=/dev/null count=10MB & pid=$! |
On systems lacking the INFO signal dd responds to the USR1 signal instead, unless the POSIXLY_CORRECT environment variable is set.
You can also try the status=progress option:
1 | [~]$ dd if=/dev/zero of=/dev/null count=10MB status=progress |
참조
System 설정
Time zone
1 | $ sudo dpkg-reconfigure tzdata |
Keyboard
Capslock과 Control key 교체하기
키맵 이용해서 다음 명령:
1 $setxkbmap -layout us -option ctrl:nocaps
1
2
3 sudo vi /etc/default/keyboard
XKBOPTIONS="ctrl:nocaps"
1 sudo dpkg-reconfigure keyboard-configuration
Terminal Reset
실수로 바이너리 파일을 cat 하거나 하여 글자들이 깨질때.. 터미널 리셋하는 방법
1 | $ reset |
System Info
1 | cat /etc/os-release # Raspbian |
Hardware Info
1 | lscpu |
1 | cat /proc/cpuinfo |
BIOS안의 시스템 정보
1 | # dmidecode |
memory
1 | $ free -m |
Architecture
1 | $cat /etc/issue |
Ubuntu 에서
1 | $subo lsb_release -a |
1 | $ dpkg --print-architecture // |
1 | $ uname -a |
1 | $ arch // uname -m 과 동일 |
32bit 64bit 체크
1 | $ getconf LONG_BIT // 시스템 구성 질의 |
1 | $ file /bin/ls |
1 | $ uname -m // machine inf |
rsync
http://www.joinc.co.kr/w/Site/Tip/Rsync
rsync -avzh source destination
-a : 심볼릭 링크, 속성, 퍼미션, 소유권 등 보존
-v : 자세한 정보출력
-z : 전송시 압축
-r : 하위디렉토리포함
-e ssh : ssh를 이용한 rsync 동기화
–stats : 결과출력
기본 옵션
1 | rsync -av source/ destination/ |
include와 exclude
이 옵션을 이용해서 대상 파일을 추가하거나 제외 할 수 있다.
1 | $ rsync -avz --exclude 'data' id@192.168.56.101:/home/backups ./ |
별표(*)도 사용할 수 있다.
1 | $ rsync -avz --exclude '*.cache' id@192.168.56.101:/home/backups ./ |
증분 백업
수정/변경된 내용만 동기화한다.
rsync -avzh moniwiki/ /tmp/backups/
-h, –human-readable : output numbers in a human-readable format
-u : –update update only (don’t overwrite newer files)
–delete : 서버동기화후 원본에서 파일이 삭제되면 백업에서도 파일을 삭제
–remove-source-files :
1 | $ rsync -av /home/ /backup/home/ # 원본 증분 백업 |
동기화 옵션
delete 옵션
목적지에 파일이나 디렉토리가 존재할 경우 삭제하고 싶을 때 --delete
옵션을 사용한다.
1 | rsync -avz --delete id@192.168.56.101:/home/backups ./ |
원본 삭제 옵션
--remove-source-files
를 이용하면, 전송이 끝난 후 원본파일을 삭제한다.
1 | $rsync --remove-source-files -zvh backup.tar /tmp/backups/ |
ssh 통한 백업
rsync 에는 ssh 를 이용하여 원격서버에 접속하여 동기화를 하는 기능이 있습니다.
1 | rsync -azrtv --delete --stats -e "ssh -i /root/.ssh/개인키" 원본서버계정@원본서버주소:원본경로/ /백업경로/ |
find와 결합
1 | find . -type f -mtime -3 | rsync -avz --files-from=- /soucepc /data/backup |
faillog
/var/log/faillog 는 계정의 로그인 실폐 횟수 정보를 바이너리 파일로 저장한다. 다음 C struct 구조의 정보가 바이너리로 저장되고 있다:
1 | struct faillog { |
직접 읽을 수 없기 때문에 faillog
명령을 사용한다.
1 | $ faillog -u pi # pi 계정 |
최근 3일의 로그인 실패를 찾으려면 :
1 | $ faillog -t 3 -u pi |
vnc server
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-14-04
1 | $ sudo apt-get install gnome-panel tightvncserver |
첫 실행을 해서 기본 Config 등의 구성을 하도록 하면 되는데, sudo 없이 계정 권한으로 실행하여도 된다. 계정 권한으로 실행을 하면 해당 계정으로 환경 설정을 한다.
1 | $ vncserver |
실행할 때에 해상도를 미리 정해줘야 한다.
1 | $ vncserver -geometry 1024x768 |
기본 창 관리자 변경
기본 생성된 xstartup 파일에는 내가 원하는 대로 환경 설정이 되어 있지 않다. 가장 먼저 실행된 vnc4server를 종료부터 하고 xstartup 파일을 수정하자.
1 | $ vncserver -kill :1 |
Cheat Linux System