sudo mount -o remount,exec /dev sudo vbetool dpms off sudo mount -o remount,noexec /dev
다시 디스플레이를 켜려면
1 2 3
sudo mount -o remount,exec /dev sudo vbetool dpms on sudo mount -o remount,noexec /dev
Network 상태 확인
ss 명령
ss 명령은 Socket Statistics 를 출력해 준다. open 된 소켓에 대한 정보를 표시한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
ss [-a -t -u -l -p -n] [filter]
-a: -t: TCP -u: UDP -l: LISTEN 상태 포트 -n: 호스트/포트/사용자 이름을 숫자로 표시 -p: 프로세스 이름 -r, --resolve: resolve host names -w, --raw : display only RAW sockets -x, --unix : display only Unix domain sockets -4, --ipv4 : display only IP version 4 sockets -6, --ipv6 : display only IP version 6 sockets -m, --memory : show socket memory usage
LISTEN Port 확이
netstat 같이 LISTEN 상태 프로세스를 확인할 수 있다. 다음은 t: tcp 포트, l: LISTEN 상태의 소켓 정보를 출력한다.
$ ss -tl4 State Recv-Q Send-Q Local Address:Port Peer Address:Port Process LISTEN 0 511 0.0.0.0:http 0.0.0.0:* LISTEN 0 511 0.0.0.0:https 0.0.0.0:* $ $ ss -tl6 State Recv-Q Send-Q Local Address:Port Peer Address:Port Process LISTEN 0 128 [::]:2020 [::]:* q
lsof
Linux에서 open file을 확인하는데 사용되는 lsof 명령입니다. Unix/Linux의 모든 것은 파일로 이루어져있기때문에 스트림이나 네트워크 파일도 lsof 로 확인할 수 있습니다.
-d, --detach : 명령을 detach mode, 백그라운드로 실행 -e, --env : 환경변수 설정하고 실행 -it [SHELL]: iteractive tty 옵션. 사용할 shell을 지시한다, 보통 bash -u, --user: User ID, UID -w, --workdir: 작업 디렉토리 지정
Device Start End Sectors Size Type /dev/sdb1 2048 8390655 8388608 4G Linux swap /dev/sdb2 8390656 125042654 116651999 55.6G Linux LVM
fdisk 결과의 Sector size는 전체 용량과 섹터 크기를 계산하면 논릭적인 섹터의 크기를 확인할 수 있다.
1 2
echo $((64021856256/125042688)) 512
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 2 3 4 5 6 7 8
$ dd if=/dev/zero of=/dev/null count=10MB & pid=$! $ kill -s INFO $pid; wait $pid 3385223+0 records in 3385223+0 records out 1733234176 bytes (1.7 GB) copied, 6.42173 seconds, 270 MB/s 10000000+0 records in 10000000+0 records out 5120000000 bytes (5.1 GB) copied, 18.913 seconds, 271 MB/s
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 2 3 4 5 6
[~]$ dd if=/dev/zero of=/dev/null count=10MB status=progress 4708234752 bytes (4.7 GB, 4.4 GiB) copied, 4 s, 1.2 GB/s 10000000+0 records in 10000000+0 records out 5120000000 bytes (5.1 GB, 4.8 GiB) copied, 4.3516 s, 1.2 GB/s [~]$
$ file /bin/ls ELF 32-bit LSB executable, ARM, EABI5 version 1 .. ARM arm 7 is 32 bit. ARMv8-A, October 2011, 64-bit address space and 64-bit arithmetic 지원