728x90

Environment

  • Red Hat Enterprise Linux
  • 네트워크 서비스

Issue

  • 갑자기 특정 포트에 바인딩되는 일부 프로그램들이 포트예약 충돌때문에 시작할 수가 없습니다.
  • 해당 포트에 대한 telnet 명령은 소켓이 열려있는 것을 보여 주지만 프로세스는 특정되지 않습니다.
  • 다음과 같이 "PID / Program Name"열에 대시 (-)가 표시됩니다.

Resolution

  • 'root'사용자로 'netstat'명령을 실행하십시오.

  • 일반적으로 사용자가 옵션 'e'에서 netstat를 사용하면 프로세스의 UID 및 Inode가 표시됩니다.

728x90



출처: https://jhnyang.tistory.com/193 [양햄찌가 만드는 세상]

 

정부24 에서 세대주 변경신청을 하면, 변경 대상자에게 문자로 알림이 온다

 

"정부24 > 서비스 > 세대주 확인 에서 서비스 진위확인" 을 요청한다.

그리고 공동인증서 (구 공인인증서) 혹은 다른 인증수단으로 인증을 통해 로그인 후에 실제로 메뉴를 통해 들어가보면

 

홈페이지의 서비스 란에 사실/진위확인 이 있다. 여기에 들어가면

 

 

이렇게 "세대주 확인" 이 존재한다.

 

그리고 나서, 변경될 세대주로 다시한번 인증절차를 거치면

 

 

이런식으로 세대주 확인이 넘어온 것을 확인할 수 있다.

그리고 "상세" 하단의 확인을 눌러서 내용을 확인하고 변경하면 된다.

'부동산 > 청약' 카테고리의 다른 글

청약통장의 명의변경, 청약통장 설명  (0) 2020.12.15
728x90

Arduino boards have built in support for serial communication on pins 0 and 1, but what if you need more serial ports? The SoftwareSerial Library has been developed to allow serial communication to take place on the other digital pins of your boards, using software to replicate the functionality of the hardwired RX and TX lines. This can be extremely helpful when the need arises to communicate with two serial enabled devices, or to talk with just one device while leaving the main serial port open for debugging purpose.

In the example below, digital pins 10 and 11 on your Arduino boards are used as virtual RX and TX serial lines. The virtual RX pin is set up to listen for anything coming in on via the main serial line, and to then echo that data out the virtual TX line. Conversely, anything received on the virtual RX is sent out over the hardware TX.

Hardware Required

  • Arduino Board

Circuit

There is no circuit for this example. Make sure that your Arduino board is attached to your computer via USB to enable serial communication through the serial monitor window of the Arduino Software (IDE).

 

Schematics

image developed using Fritzing. For more circuit examples, see the Fritzing project page

Code

/*
  Software serial multple serial test

 Receives from the hardware serial, sends to software serial.
 Receives from software serial, sends to hardware serial.

 The circuit:
 * RX is digital pin 2 (connect to TX of other device)
 * TX is digital pin 3 (connect to RX of other device)

 Note:
 Not all pins on the Mega and Mega 2560 support change interrupts,
 so only the following can be used for RX:
 10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69

 Not all pins on the Leonardo support change interrupts,
 so only the following can be used for RX:
 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI).

 created back in the mists of time
 modified 25 May 2012
 by Tom Igoe
 based on Mikal Hart's example

 This example code is in the public domain.

 */
#include <SoftwareSerial.h>

SoftwareSerial mySerial(2, 3); // RX, TX

void setup()
{
  // Open serial communications and wait for port to open:
  Serial.begin(115200);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Native USB only
  }


  Serial.println("Goodnight moon!");

  // set the data rate for the SoftwareSerial port
  mySerial.begin(38400);
  mySerial.println("Hello, world?");
}

void loop() // run over and over
{
  if (mySerial.available())
    Serial.write(mySerial.read());
  if (Serial.available())
    mySerial.write(Serial.read());
}

www.arduino.cc/en/Tutorial/LibraryExamples/SoftwareSerialExample

728x90

rasino.tistory.com/203

+ Recent posts