'프로그램 사용'에 해당되는 글 2263건

  1. 2020.10.14 DHCP hostname
  2. 2020.10.14 kibana
  3. 2020.10.14 grafana
  4. 2020.10.14 zabbix
  5. 2020.10.14 prometheus
  6. 2020.10.06 rancher
  7. 2020.10.06 google coral
  8. 2020.10.06 yolo on rpi?
  9. 2020.09.24 /dev/tty 를 sudo 쓰지 않고 사용하기
  10. 2020.09.23 ubuntu용 cad 프로그램

호스트 이름을 지정을 해줄순 있는데 MAC 주소에 따라서 설정을 해야 해서 서버댓수가 많으면 무지 귀찮을 수도?

 

[링크 : http://www.iorchard.net/2016/11/03/dhcp_set_hostname.html]

[링크 : http://itwiki.kr/w/리눅스_dhcpd.conf]

[링크 : https://blog.naver.com/namelessda/114773026]

 

The use-host-decl-names statement
use-host-decl-names flag;
If the use-host-decl-names parameter is true in a given scope, then for every host declaration within that scope, the name provided for the host declaration will be supplied to the client as its hostname. So, for example,

    group {
      use-host-decl-names on;

     host joe {
        hardware ethernet 08:00:2b:4c:29:32;
          fixed-address joe.fugue.com;
      }
    }

is equivalent to

     host joe {
        hardware ethernet 08:00:2b:4c:29:32;
          fixed-address joe.fugue.com;
        option host-name "joe";
      }
An option host-name statement within a host declaration will override the use of the name in the host declaration.
It should be noted here that most DHCP clients completely ignore the host-name option sent by the DHCP server, and there is no way to configure them not to do this. So you generally have a choice of either not having any hostname to client IP address mapping that the client will recognize, or doing DNS updates. It is beyond the scope of this document to describe how to make this determination.

[링크 : https://linux.die.net/man/5/dhcpd.conf]

'프로그램 사용 > PXE(네트워크 부트)' 카테고리의 다른 글

pxe boot  (0) 2023.06.21
DHCP / BOOTP / TFTP  (4) 2010.04.27
PXE 부팅하기  (0) 2010.04.25
PXE를 통한 우분투/XP 설치  (0) 2009.12.09
Posted by 구차니

 

Kibana는 Elastic Stack을 기반으로 구축된 오픈 소스 프론트엔드 애플리케이션으로, Elasticsearch에서 색인된 데이터를 검색하고 시각화하는 기능을 제공합니다

[링크 : https://www.elastic.co/kr/what-is/kibana]

 

 

[링크 : https://www.elastic.co/kr/kibana]

[링크 : https://www.elastic.co/kr/downloads/kibana]

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
grafana  (0) 2020.10.14
zabbix  (0) 2020.10.14
prometheus  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니

prometheus와 이야기가 많이 언급되서 찾아보는 중.

그나저나 다나와 깃 허브 내용이라니.. ㄷㄷㄷ

 

[링크 : https://danawalab.github.io/common/2020/03/17/Common-Dashboard.html]

[링크 : https://www.44bits.io/ko/keyword/grafana]

 

홈페이지 가서 보니 웹이라고 해서 php 이런걸로 된줄 알았는데 deb로 받게 되어있다.

단순 홈페이지가 아니라 WAS와 동적 페이지의 조합인가?

[링크 : https://grafana.com/]

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
kibana  (0) 2020.10.14
zabbix  (0) 2020.10.14
prometheus  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니

snmp와 ipmi agent를 기본 제공하는 듯?

다만 intel architecture 서버 중에 HP와 Dell을 언급하는데

redfish는 아니고 ipmitool을 이용하는 걸까?

 

IPMI agent
To get important data from hardware, a Zabbix server supports IPMI agents, which are present by default on Intel architecture servers like HP iLO and Dell DRAC.

The items available through IPMI agents vary in each hardware, but these are the most common:

Temperature of the CPU and chassis
Fan speed
System voltages
State of the physical disk
Maintenance LED status

[링크 : https://www.zabbix.com/snmp_ipmi_agent]

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
kibana  (0) 2020.10.14
grafana  (0) 2020.10.14
prometheus  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니

바이너리를 다운로드 받아서 그냥 아무런 옵션 주지 않고 실행한뒤

http://localshost:9090 으로 접속하면 된다.

 

cpu 정도는 보이는데 memory나 network는 잘 안보이고, 그래프도 실시간 업데이트는 안되는 것 같다.

[링크 : https://prometheus.io/docs/prometheus/latest/getting_started/]

[링크 : https://prometheus.io/download/]

 

모니터링 할 타겟에는 node exporter를 설치하면 되는데, 윈도우일 경우 WMI exporter라는 비공식 port가 있는 것으로 보인다.

[링크 : https://prometheus.io/docs/guides/node-exporter/]

[링크 : https://github.com/prometheus-community/windows_exporter]

  [링크 : https://medium.com/@essem_dev/프로메테우스와-그라파나로-개발-서버-모니터링하기-8942aea724b3]

  [링크 : https://hyunki1019.tistory.com/127]

 

+

클러스터에 그러면.. node exporter를 설치하고 전부 설정해야 한다는건데... ㄷㄷ

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
kibana  (0) 2020.10.14
grafana  (0) 2020.10.14
zabbix  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니

쿠버네티스 관리 도구

 

[링크 : http://rancher.com/]

'프로그램 사용 > kubernetes' 카테고리의 다른 글

kubernetes selector  (0) 2019.07.16
kubernetes delete pods with namespace  (0) 2019.07.16
kubernetes ImagePullBackOff 에러  (0) 2019.07.16
yaml  (0) 2019.07.16
kubectl  (0) 2019.07.16
Posted by 구차니

구글의 텐서플로우 가속기 라고 해야하려나?

아무튼 TPU accelerator인데 회사에 USB 버전이 있어서 한번 만져 볼까 싶네

 

[링크 : https://coral.ai/]

[링크 : https://coral.ai/products/accelerator/...E]

[링크 : https://coral.ai/docs/accelerator/get-started/#requirements]

'프로그램 사용 > google coral' 카테고리의 다른 글

edgetpu_c.h 파일 내용 분석  (0) 2022.02.07
tensorflow brace-enclosed initializer list  (4) 2022.02.07
google coral, tpu yolo  (0) 2022.01.27
coral tpu delegate example  (0) 2022.01.25
google coral, ubuntu 18.04  (0) 2020.10.20
Posted by 구차니

 

[링크 : https://j-remind.tistory.com/53]

[링크 : https://www.pyimagesearch.com/2020/01/27/yolo-and-tiny-yolo-object-detection-on-the-raspberry-pi-and-movidius-ncs/] tiny yolo

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

yolo lite  (0) 2021.01.08
SSDnnn (Single Shot Detector)  (0) 2021.01.08
CNN - YOLO  (0) 2021.01.07
yolo BFLOPs  (0) 2020.10.21
yolo3 on ubuntu 18.04  (0) 2020.10.20
Posted by 구차니
프로그램 사용/minicom2020. 9. 24. 11:36

dialout 그룹에 포함시키면 된다고 한다.

귀찮아서 /etc/group 을 수정하긴 했는데

명령어로도 가능은 한 듯?

 

그런데 왜 그룹 변경하면 리부팅이 필요할까?

 

[링크 : https://unix.stackexchange.com/questions/14354/read-write-to-a-serial-port-without-root]

[링크 : https://igotit.tistory.com/entry/우분투에서-USB-2-UART-칩-CP2101-권한설정하기-ttyUSB-시리얼포트]

 

+

newgrp 하면 리부팅 안해도 된다네?

그리고 로그아웃 했다 로그인 할 때 적용이 된다고 하니

우분투 데스크탑 유저라면 리부팅이 편할수도 있긴 하겠다..

[링크 : https://serverfault.com/.../is-a-reboot-required-to-refresh-permissions-after-adding-a-user-to-a-new-group]

 

+

$ stat /dev/ttyUSB0
  File: /dev/ttyUSB0
  Size: 0          Blocks: 0          IO Block: 4096   문자 특수 파일
Device: 6h/6d Inode: 658         Links: 1     Device type: bc,0
Access: (0660/crw-rw----)  Uid: (    0/    root)   Gid: (   20/ dialout)
Access: 2023-03-08 10:04:36.356257260 +0900
Modify: 2023-03-08 10:04:36.356257260 +0900
Change: 2023-03-07 17:22:47.356257260 +0900
 Birth: -

$ sudo usermod -a -G dialout $USER

[링크 : https://askubuntu.com/questions/133235/how-do-i-allow-non-root-access-to-ttyusb0]

'프로그램 사용 > minicom' 카테고리의 다른 글

minicom lf에 cr 붙이기  (0) 2023.01.05
minicom 16진수로 보기  (0) 2022.08.25
minicom 로그 저장하기  (0) 2021.09.16
minicom timestamp  (0) 2021.09.16
minicom 폭 늘리기  (0) 2021.01.28
Posted by 구차니
프로그램 사용/freecad2020. 9. 23. 11:53

18.04 에서 한번 돌려보니 아래와 같이 4개 정도 나오는데 어느게 쓰기 편하려나?

freecad는 윈도우에서도 돌려보긴 했는데 쓰기가 좀 어려웠는데.. ㅠㅠ

$ apt-cache search cad | grep cad
kicad - 전자 회로 및 PCB 설계 소프트웨어
freecad - Extensible Open Source CAx program
librecad - Computer-aided design (CAD) system
sagcad - CAD/CAM of 2D program

[링크 : https://kicad-pcb.org/] pcb에 특화?

[링크 : https://www.freecadweb.org/] 3d cad

[링크 : https://librecad.org/] 2d cad 

[링크 : https://www.qcad.org/en/] 2d cad, 설치 파일 제공

'프로그램 사용 > freecad' 카테고리의 다른 글

CSG(Constructive solid geometry) freecad  (0) 2024.08.30
freecad 사용법 다시..  (2) 2024.08.29
freeCAD 는 ubuntu24.04에서 사라졌나?  (0) 2024.08.29
freecad 첫 드로잉  (2) 2023.08.31
freecad 설명  (0) 2018.01.22
Posted by 구차니