일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- snmp
- c3 축 가리기
- python os
- c3 step graph
- gcc regex
- 백준
- regex_search
- centos pyhon 설치
- python popen
- c++ 정규식
- c3 초
- c3 second
- InfluxDB
- subporcess path
- 정규식 문자열 출력
- g++ 업데이트
- snmp test
- telegraf
- grafana dashboard
- semanage
- 정규식 활용
- 1697
- c3 축 없애기
- gcc 업데이트
- CentOS7
- 정규식 컴파일
- linux시간으로 변경
- python subprocess
- influxdb 설치
- selinux port 등록
- Today
- Total
목록Linux Tips (49)
리셋 되지 말자
mailx 설치 [vagrant@server ~]$ sudo yum update -y [vagrant@server ~]$ sudo yum install -y mailx 외부 mail 전송 테스트 [vagrant@server ~]$ echo "testvagrant" | mail -s "test_test_vagrant" kimkyeongjun273@gmail.com 전송이 될수도 있고, 안 될수도 있다. 집에서는 잘 됐는데, 특정 네트워크 상황에서는 안되는듯 하다. 이유는 mail 전송 포트가 막혀있기 때문... 25 포트가 막혀 있어서 일듯? 내부 mail 전송 테스트 [vagrant@server ~]$ echo "testvagrant" | mail -s "test_test_vagrant" root@loc..
https://labo.lansi.kr/posts/33 [Alpine] 타임존 변경하기 # tzdata 설치 apk add tzdata # 타임존 목록 출력 ls /usr/share/zoneinfo # 타임존 정보 복사 cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime # 타임존 설정 echo "Asia/Seoul" > /etc/timezone # 현재 시간 출력 date Mon Mar 26 13:17:21 labo.lansi.kr 감사합니다
https://www.lesstif.com/lpt/sudo-echo-permission-denied-89556053.html sudo echo 명령어 사용시 Permission denied 문제 해결하기 www.lesstif.com tee 를 사용하자
https://blog.dalso.org/article/ubuntu-mirror-change Ubuntu 미러서버 변경하기. - 달소씨의 하루 우분투 운영체제에서 패키지를 다운받을때는 미러서버를 통해 다운로드 받게됩니다. 한국지역에서 최초설치하게되면 kr.archive.ubuntu.com 으로지정되어있으나 국내에 카카오,카이스트 등 속도빠 blog.dalso.org 감사합니다.
netplan ubuntu 17 버젼부터는 /etc/network/interfaces 가 아닌 /etc/netplan을 이용한다. netplan 경로 확인 ls /etc/netplan/ 00-installer-config.yaml virtualbox로 ubuntu 18.04-server 를 설치 했을 때의 netplan 경로의 모습이다. 위에 보이는 .yaml 파일 수정을 시작한다. .yaml 파일 수정 - 변경 전 # This is the network config written by 'subiquity' network: ethernets: enp0s3: dhcp4: true enp0s8: dhcp4: true version: 2 - 변경 후 # This is the network config writ..
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=gjdeveloper&logNo=220890331194 [Linux 공통]wget 다른이름으로 저장 wget - Linux환경에서 사용하는 다운로드 프로그램. HTTP, HTTPS, FTP 등 다양한 프로토콜을 ... blog.naver.com 감사합니다
https://sevendollars.tistory.com/92 [Linux] grep으로 검색한 문자열에서 특정 문자 추출. uniq 중복 제거 안될 때. (cut uniq sort ) index.html 이라는 파일의 내용을 보자. cat index.html 엄청 길다. 여기서 "color"가 포함된 문자열을 출력해보자. cat index.html | grep "color" 2020/02/14 - [개발] - [Linux] 원하는 디렉토리/파일/문자.. sevendollars.tistory.com 감사합니다
문제 ssh로 처음 접속을 할 때, 아래와 같이 신뢰할 수 있냐 마냐를 물어본다. ssh vagrant@192.168.56.201 The authenticity of host '192.168.56.201 (192.168.56.201)' can't be established. ECDSA key fingerprint is SHA256:MhZLkVZMcsNgbx8bxcXy+fBeEjecMgKgx7HhmRwpfrQ. Are you sure you want to continue connecting (yes/no)? 해결 ssh-keyscan 커맨드를 통해 자동으로 known_hosts에 등록할 수 있다. - example $ cat known_hosts $ ssh-keyscan -t rsa 192.168.56.2..