'잡동사니'에 해당되는 글 13031건

  1. 2023.10.26 통깁스
  2. 2023.10.25 갑자기 먼일이래 -ㅁ-?
  3. 2023.10.24 /proc/uptime
  4. 2023.10.24 minicom에서 stty로 터미널 폭 조절하기
  5. 2023.10.24 소소한 지름
  6. 2023.10.23 으아아아앙
  7. 2023.10.23 /proc/pid/statm
  8. 2023.10.22 damon x machina c 랭크 물자 수송 화물 열차 호위 작전 미션..
  9. 2023.10.21 DAMON X MACHINA
  10. 2023.10.21 트리 회로

이제 자유는 끝나고

나만의 작은 감옥에 갇히는 4주 ㅠㅠ

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

딸래미 생일 그리고 스타필드  (0) 2023.11.11
어깨 떄문에 뒷목이 아프다 ㅠㅠ  (0) 2023.10.28
으아아아앙  (0) 2023.10.23
병상일기 - 실밥도 아직  (0) 2023.10.20
투병일기 - 목욕  (2) 2023.10.16
Posted by 구차니
개소리 왈왈/블로그2023. 10. 25. 12:08

요즘 800도 쟐 안나왔는데

갑자기 1600 찍는 신기한 일이. 그냥 검색엔진 크롤링이려나?

 

'개소리 왈왈 > 블로그' 카테고리의 다른 글

높았던 방문자수여 안녕  (0) 2023.12.29
블로그 미쳤다?  (4) 2023.11.30
블로그 방문자 하락.. -_ㅠ  (0) 2023.10.03
방문자 1000 미만 -_ㅠ  (0) 2023.09.22
흐음.. 방문자 수가..  (0) 2023.09.05
Posted by 구차니
Linux API/linux2023. 10. 24. 16:00

proc fs의 uptime의

첫번째는 uptime(시스템 레벨)

두번째는 uptime * core * idle time (코어 idle 타임 합산)

이라고 하는데 두번째가 어떤 의미를 지닐진..

이론상 시스템이 100% 사용중이면

uptime은 증가하지만 두번째는 시스템 기동되고 cpu 100% 쓰기 전까지의 시간만으로 기록되려나?

 

$ cat /proc/uptime
624319.95 1141902.92

$ top

top - 15:57:56 up 7 days,  5:25,  1 user,  load average: 0.68, 0.57, 0.54

[링크 : https://access.redhat.com/documentation/ko-kr/red_hat_enterprise_linux/6/html/deployment_guide/s2-proc-uptime]

'Linux API > linux' 카테고리의 다른 글

mmap() 과 munmap() 예제  (0) 2023.11.17
mmap와 malloc  (0) 2023.11.13
/proc/pid/statm  (0) 2023.10.23
malloc() 으로 할당된 메모리 리스트?  (0) 2023.10.19
inotify  (0) 2023.06.21
Posted by 구차니
프로그램 사용/minicom2023. 10. 24. 14:58

minicom으로 통신을 하는데(시리얼)

창을 넓혀도 top 등을 실행할때 창의 폭이 넓어지지 않을때

아래의 명령을 넣어주면 폭이 조절된다.

$ stty columns 150

[링크 : https://acet.pe.kr/17]

 

posix 표준은 아니지만 columns N 하면 된다.

# stty --help
Usage: stty [-F DEVICE | --file=DEVICE] [SETTING]...
  or:  stty [-F DEVICE | --file=DEVICE] [-a|--all]
  or:  stty [-F DEVICE | --file=DEVICE] [-g|--save]
Print or change terminal characteristics.

Mandatory arguments to long options are mandatory for short options too.
  -a, --all          print all current settings in human-readable form
  -g, --save         print all current settings in a stty-readable form
  -F, --file=DEVICE  open and use the specified DEVICE instead of stdin
      --help     이 도움말을 표시하고 끝냅니다
      --version  버전 정보를 출력하고 끝냅니다

Optional - before SETTING indicates negation.  An * marks non-POSIX
settings.  The underlying system defines which settings are available.

Special characters:
 * discard CHAR  CHAR will toggle discarding of output
   eof CHAR      CHAR will send an end of file (terminate the input)
   eol CHAR      CHAR will end the line
 * eol2 CHAR     alternate CHAR for ending the line
   erase CHAR    CHAR will erase the last character typed
   intr CHAR     CHAR will send an interrupt signal
   kill CHAR     CHAR will erase the current line
 * lnext CHAR    CHAR will enter the next character quoted
   quit CHAR     CHAR will send a quit signal
 * rprnt CHAR    CHAR will redraw the current line
   start CHAR    CHAR will restart the output after stopping it
   stop CHAR     CHAR will stop the output
   susp CHAR     CHAR will send a terminal stop signal
 * swtch CHAR    CHAR will switch to a different shell layer
 * werase CHAR   CHAR will erase the last word typed

Special settings:
   N             set the input and output speeds to N bauds
 * cols N        tell the kernel that the terminal has N columns
 * columns N     same as cols N
 * [-]drain      wait for transmission before applying settings (on by default)
   ispeed N      set the input speed to N
 * line N        use line discipline N
   min N         with -icanon, set N characters minimum for a completed read
   ospeed N      set the output speed to N
 * rows N        tell the kernel that the terminal has N rows
 * size          print the number of rows and columns according to the kernel
   speed         print the terminal speed
   time N        with -icanon, set read timeout of N tenths of a second

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

minicom color  (0) 2024.11.06
minicom lf에 cr 붙이기  (0) 2023.01.05
minicom 16진수로 보기  (0) 2022.08.25
minicom 로그 저장하기  (0) 2021.09.16
minicom timestamp  (0) 2021.09.16
Posted by 구차니
embeded/전자회로2023. 10. 24. 10:36

간만에 질렀나.. 엘레파츠 주소가 예전 주소.. 최소 3년 정도는 지른적이 없다는 소리구먼..

전자회로 공부하려고 PNP / NPN 트랜지스터와 혹시나 몰라서(?) RLC 중 L(인덕터) 부품을 적당히 골라서 지름고

 

(배송비 아까워서) 보다보니 usb 인두가 있길래 후다닥 구매 빠르게 데워지고 빠르게 식는다는데

부피도 부피고 220V 전원으로도 너무 오래걸리고 선이 두꺼워서 불편해 이래저래 교체를 노렸는데

그렇다고 hakko 껄 지르기에는 너무 비싸서 좌절하다 이거라도 써보자 싶어서 질렀는데 어떠려나?

'embeded > 전자회로' 카테고리의 다른 글

멀티미터 TR 테스트  (0) 2023.11.02
지름도착 - usb 인두기  (0) 2023.10.27
트리 회로  (0) 2023.10.21
다이오드, 트랜지스터  (0) 2023.10.18
tr을 구매해볼까나..  (0) 2023.10.18
Posted by 구차니

언넝 낫고 싶다. -_ㅠ

 

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

어깨 떄문에 뒷목이 아프다 ㅠㅠ  (0) 2023.10.28
통깁스  (0) 2023.10.26
병상일기 - 실밥도 아직  (0) 2023.10.20
투병일기 - 목욕  (2) 2023.10.16
투병일기 - 닭닭닭  (0) 2023.10.15
Posted by 구차니
Linux API/linux2023. 10. 23. 12:21

top 에서 출력되는 메모리 사용량이 어디서 나오나 찾아보는 중인데

일단 proc fs에서 statm 이라는 것을 발견

 

proc/77145$ cat statm
3178 1312 896 223 0 467 0

 

다만 page 단위라서, top 처럼 byte 단위로 보는건 어디인지 아직 못 찾음.

Table 1-3: Contents of the statm files (as of 2.6.8-rc3)
..............................................................................
 Field    Content
 size     total program size (pages)        (same as VmSize in status)
 resident size of memory portions (pages)   (same as VmRSS in status)
 shared   number of pages that are shared   (i.e. backed by a file, same
                                             as RssFile+RssShmem in status)
 trs      number of pages that are 'code'   (not including libs; broken,
                                             includes data segment)
 lrs      number of pages of library        (always 0 on 2.6)
 drs      number of pages of data/stack     (including libs; broken,
                                             includes library text)
 dt       number of dirty pages             (always 0 on 2.6)

[링크 : https://stackoverflow.com/questions/60644373/how-do-i-decode-the-output-of-proc-statm]

'Linux API > linux' 카테고리의 다른 글

mmap와 malloc  (0) 2023.11.13
/proc/uptime  (0) 2023.10.24
malloc() 으로 할당된 메모리 리스트?  (0) 2023.10.19
inotify  (0) 2023.06.21
system v shmget size  (0) 2023.01.09
Posted by 구차니

20번도 넘게 시도해도 안되서 포기할뻔 하다가

공략을 찾았는데 하나도 도움이 안되는 상황 -_-

[링크 : https://www.youtube.com/watch?v=Hxg_8areynA]

 

오기가 생겨서 조금의 업그레이드와, 무기를 바꾸고 간단하게 해결 !

다른건 폭발이나 일반 공격이라 스태미나 깍지를 못하는데

Rampage Hammer 는 특이하게 burn 속성이 있어 공격 히트 되면

이동불가 상태에 빠져(스태미나 오링) 열심히 두드려 맞아준다.

 

대 아스널 전에서는 필수로 구비를 해야하나..

아니면 아크로 지지는게 나으려나 고민중.

'게임 > 오리진&스팀&유플레이' 카테고리의 다른 글

갑자기 게임을 지르고 싶어짐  (2) 2024.10.25
끝이 보이니.아쉬운 게임  (0) 2023.10.29
DAMON X MACHINA  (0) 2023.10.21
식물대 좀비 fatal error  (0) 2023.07.23
오리진 계정 복구  (0) 2023.06.08
Posted by 구차니

예전에 EPIC에서 받은거 이제야 해봄

12기가라서 작은건 아닌데

요즘 게임에 비교하면 적은 용량

 

한글 패치는 아래서 받을수 있는데 원래는 dc갤 쪽이 원조인듯

근데 정작 적용하니 에러가 난다. 원래 파일도 580메가 정도 되던게 1메가 밖에 안되니

정말 제대로 된 패치가 맞나 의심되네

[링크 : https://fpsrpgames.tistory.com/3748]

Posted by 구차니
embeded/전자회로2023. 10. 21. 16:31

bc547 라는 걸 쓰는데 찾아보니 NPN TR이다.

[링크 : https://www.devicemart.co.kr/goods/view?no=1624]

 

트리에서 처럼 깜박이는걸 하려면 단순하게 R/C 만으로는 안되고, 무조건 TR을 넣어야 하나?

[링크 : https://youtu.be/8-BwTmkiMdA?si=3h8UvqFAlevSNMSU]

'embeded > 전자회로' 카테고리의 다른 글

지름도착 - usb 인두기  (0) 2023.10.27
소소한 지름  (0) 2023.10.24
다이오드, 트랜지스터  (0) 2023.10.18
tr을 구매해볼까나..  (0) 2023.10.18
오실로스코프 파형 - 캐패시터  (0) 2023.10.17
Posted by 구차니