Table Of Contents netstat lsof (MAC) netstat 현재 사용하고 있는 TCP 포트를 조회하는 리눅스 명령어는 netstat 입니다. netstat명령어로 TCP통신을 진행중인 서비스의 연결상태를 확인가능 하다. $ netstat -tnl 위 명령어를 실행결과는 아래와 같다. 옵션 t 는 TCP, n 은 10진수(Numeric), l 은 Listening을 의미한다. $ netstat -tnl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:22 0.0.0..
tail 명렁어로 log를 보는법scp로 접속을 하는데, 계속 permission 에러가 발생한다. 도대체 왜 그럴까? 이럴때는 가장 기본적인 것이 시스템 로그를 보는 것이다./var/log 폴더를 보면, 여러가지 log파일들이 있다. ssh permission 에러면 auth.log를 보면 된다. tail -f 명렁어를 쓰면 실시간으로 확인가능 하다. pi@raspberrypi:/var/log $ cd /var/log pi@raspberrypi:/var/log $ ls Xorg.0.log auth.log daemon.log fontconfig.log messages wtmp Xorg.0.log.old boot.log debug kern.log samba alternatives.log bootstrap...
service-start/stop.md Service Start/Stop 서비스를 start/stop하는 방법은 시스템에 따라서 다르다. 시스템이 SysV init 또는 stemd 중에서 무었을 쓰냐야 따라 다르다. 그럼 나의 시스템에서는 뭘 쓰는 걸까? 1번 프로세스를 조회해 보면 된다. $ ps -p 1 // 1번 process를 조회 PID TTY TIME CMD 1 ? 00:06:54 systemd SysV init SysV init시스템이면 service 명령어로 start/stop을 할수 있다. sudo -i service kibana start sudo -i service kibana stop systemd systemd 시스템이면 systemctl 명령어로 start/stop할수 있다. s..
mount 진행$ sudo mount -t nfs -o nolock 192.168.64.10:(mount 되는 server에서 만들 디렉토리 경로)/nfs (client 측 경로/nfcclient fstab 설정 - 라즈베리파이 재 부팅 후에도 지속적으로 mount 되어 편하게 사용하기 위한 설정 - 설정 파일 경로 : /etc/fstab proc /proc proc defaults 0 0PARTUUID=16b95e80-01 /boot vfat defaults 0 2PARTUUID=16b95e80-02 / ext4 defaults,noatime 0 1 xx.synology.me:/volume1/music /mnt/nfs nfs rw 0 0
어떤 앱이 어떤 Port번호를 쓰고 있는지 어떻게 알수 있을까?netstat라는 명령어가 바로 그런 명령어 이다.예를 들어서 port :22번을 쓰고 있는 녀석은 바로 SSH이겠지.pi@raspberrypi:~ $ netstat -tnlp(Not all processes could be identified, non-owned process info will not be shown, you would have to be root to see it all.)Active Internet connections (only servers)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:42861 0.0.0..
First, verify the path to your SD card. You can do this by running the following command from terminal:diskutil listThe output shows a list of disks currently mounted on the system. Here's the relevant line from my output:/dev/disk3 #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *8.0 GB disk3 1: DOS_FAT_32 RPISDCARD 8.0 GB disk3s1 In this case I can verify /dev/disk3 is my SD card becaus..