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

  1. 2025.03.08 FCoE
  2. 2025.03.07 2 스택
  3. 2025.03.07 STM32 float point support 활성화시 %f 출력 NaN
  4. 2025.03.07 fcoeadm
  5. 2025.03.06 netplan
  6. 2025.03.05 polypill
  7. 2025.03.05 wireshark logging
  8. 2025.03.04 Uncaught TypeError: object.at is not a function
  9. 2025.03.04 mariaDB 설치 실패
  10. 2025.03.03 ace combat 7 키 맵 변경 (x-56) 2
하드웨어/FC_SAN_10G2025. 3. 8. 09:48

Fiber Channel over Ethernet

10GbE 나오더니 8G 수준의 FC와 통합되면서 전송 계층을 Ethernet으로 쓰는 듯?

 

--

FC 및 FCoE 장치의 대상 구성은 스위치 연결 환경에만 적용됩니다.
[링크 : https://www.ibm.com/docs/vi/aix/7.2.0?topic=configuration-targeted-fc-fcoe-devices]

 

cfgmgr (aix 명령어?)

[링크 : https://blog.naver.com/win2107/100002546792]



FC, iSCSI, FCIP, FCoE 장단점 비교

FCP (Fibre Channel Protocol) 

FCoIP (Fibre Channel over Internet Protocol)

[링크 : https://performance.tistory.com/m/66]

 

FCIP (Fiber Channel over IP) - FCoIP와 혼용해서 쓰나? 그 와중에 FCoE랑 차이는?

[링크 : https://blog.naver.com/heavenksm/80026302800]

'하드웨어 > FC_SAN_10G' 카테고리의 다른 글

fcoe ubuntu  (0) 2025.03.27
FCoE FCF(Fiber Channel Forwarder)  (0) 2025.03.27
fcoeadm  (0) 2025.03.07
BCM957810 10G NIC window 10 드라이버 버전  (0) 2025.02.26
BCM957810A1008G 10g linux 로그  (0) 2025.02.23
Posted by 구차니

후우..

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

아내몰래 지름 ㅋㅋ  (2) 2025.03.13
k-pass 다자녀 혜택 + 횟수 제한  (0) 2025.03.10
정신이 늙었어..  (2) 2025.02.20
차 끌고 일찍 옴, 10g 만져봄  (0) 2025.02.14
하.. 현타  (0) 2025.02.12
Posted by 구차니
embeded/Cortex-M3 STM2025. 3. 7. 15:21

하나는 값이 나오고

다른 하나는 -nan 으로 나오는데 정체가 멀까?

 

아래는 갑싱 별로 차이나지 않는데 다양하게 이상한 출력을 보여주는 중

STM32의 float point enumation 문제가 있나?

Temperature: 2999(2999) -> 2.0°C
Temperature: 2999(2999) -> 26.7°C
Temperature: 2996 -> 26.4°C
Temperature: 2996 -> -nan°C
Temperature: 2998(2998) -> -0.0°C
Temperature: 2997(2997) -> 0.0°C
Temperature: 2996(2996) -> 2681562227601498728190175138316381969682918615886529120475031854806500724778654407474920833961662

 

인터럽트내에서 출력하면 그런건가 싶기도 하고.. 원인을 모르겠다.

'embeded > Cortex-M3 STM' 카테고리의 다른 글

stm32 timer로 gpio 에 연결된 led on/off  (0) 2025.03.26
stm32 sleep mode  (0) 2025.03.10
STM32 timer 사용하기  (0) 2024.12.13
STM32 PWM 으로 LED 점진적으로 깜박이기  (0) 2024.12.13
stm32 gpio ext interrupt 모드  (0) 2024.11.04
Posted by 구차니
하드웨어/FC_SAN_10G2025. 3. 7. 08:58

'하드웨어 > FC_SAN_10G' 카테고리의 다른 글

FCoE FCF(Fiber Channel Forwarder)  (0) 2025.03.27
FCoE  (0) 2025.03.08
BCM957810 10G NIC window 10 드라이버 버전  (0) 2025.02.26
BCM957810A1008G 10g linux 로그  (0) 2025.02.23
10g with cat 8 S-FTP 케이블  (0) 2025.02.23
Posted by 구차니
Linux/Ubuntu2025. 3. 6. 15:14

우분투 서버 설치하는데 netplan-zz 이런식으로 이름이 붙길래 먼가 해서 찾아봤더니

2018 이후 부터 netplan이 적용되었고 /etc/network/interfaces를 대체한다고 한다.

 

[링크 : https://feelsogoodcamp.tistory.com/35]

[링크 : https://bongjasee.tistory.com/4]

[링크 : https://documentation.ubuntu.com/server/explanation/networking/about-netplan/index.html]

[링크 : https://netplan.io/]

Posted by 구차니
Programming/web 관련2025. 3. 5. 14:58

구버전의 javascript 라던가 python에 필요한 기능이 있을 경우 새로운 기능을 확장해주는 것을 polyfill 이라고 하는 듯.

 

In software development, a polyfill is code that implements a new standard feature of a deployment environment within an old version of that environment that does not natively support the feature. Most often, it refers to JavaScript code that implements an HTML5 or CSS web standard, either an established standard (supported by some browsers) on older browsers, or a proposed standard (not supported by any browsers) on existing browsers. Polyfills are also used in PHP and Python.

[링크 : https://en.wikipedia.org/wiki/Polyfill_(programming)]

[링크 : https://toss.tech/article/smart-polyfills]

[링크 : https://babeljs.io/docs/babel-polyfill]

'Programming > web 관련' 카테고리의 다른 글

restful API  (0) 2025.07.15
html custom tag  (0) 2025.05.14
css 캐로젤  (0) 2024.11.12
webgl + three.js를 이용한 GL 공부하기 (feat 클로드)  (0) 2024.10.18
웹 브라우저에서 웹 캠 띄우기  (0) 2024.09.24
Posted by 구차니

tshark나 dumpcap 으로 캡쳐할때 용량이나 캡쳐 시간으로 잘라서, logrotate 하듯이 용량 초과하지 않게 캡쳐 가능한 듯.

SEE ALSO
       wireshark(1), tshark(1), editcap(1), mergecap(1), capinfos(1), pcap(3),
       pcap-filter(7) or tcpdump(8)

 

dumpcap -ni 1 -w c:\temp\phone_problem.pcap -b duration:1200 -b files:5

[링크 : https://osqa-ask.wireshark.org/questions/21323/monitor-247-but-retain-only-15-minutes/]

Posted by 구차니

좀 뜬금 없는 에러가 발생해서 멘붕(!!)

windows server 2016 / edge 86 버전이었는데 vue.js로 만든 애가 이런 에러가 나서 찾아보니

edge 92..?

Array.prototype.at()
Baseline Widely available
Array 인스턴스의 at() 메서드는 정숫값을 받아 해당 인덱스에 있는 항목을 반환하며, 양수와 음수를 사용할 수 있습니다. 음의 정수는 배열의 마지막 항목부터 거슬러 셉니다.

[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/at#browser_compatibility]

  [링크 : https://stackoverflow.com/questions/68464114/why-am-i-getting-at-is-not-a-function]

 

2025.03.04 기준 최신이 133 인것 같은데 86이면 거~~~~업나 오래 되었네 -_-

 

 

[링크 : https://en.m.wikipedia.org/wiki/Microsoft_Edge]

'Programming > javascript & HTML' 카테고리의 다른 글

js DataView()  (0) 2024.08.21
javascript ... (rest parameter)  (0) 2024.08.12
qr decoder  (0) 2024.04.19
QR decoder로 로또 추첨하기  (0) 2024.04.16
javascript 집합(set) 내용 출력하기  (0) 2024.04.16
Posted by 구차니

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

mariadb msec 단위 시간 얻기  (0) 2022.08.31
mariadb 초기설정  (0) 2022.08.30
mariadb c# connector  (0) 2021.10.22
HeidiSQL  (2) 2021.08.18
sql zerofill  (0) 2019.11.25
Posted by 구차니
게임/ace combat2025. 3. 3. 22:29

스틱

H2 좌 - 레이더

H2 우 - 다음 타겟

H2 상 - 플레어 << 요건 좀 다른데로 옮겨야 하나 고민.. 너무 낭비됨

상 트리거 - 미사일

하 트리거 - 가속+감속

A - (미사일  발사 ->) 카메라 뷰

D (하 트리거 안 쪽 버튼) - 기총

기본 매핑 수정
[Joystick-22210738-0000-0000-0000-504944564944]
ProductName=Saitek Pro Flight X-56 Rhino Stick
Flight_Gun=Button1
Flight_Missile=Button2
Flight_Weapon=Button3
Flight_Target=Button14
Flight_Radar=Button11
Flight_Flare=Button12
Flight_View=Button5
Flight_AccelerationDeceleration=Button6
Flight_AutoPilot=Button13
Flight_Pause=Button4
Flight_HatSwitchUp=POV_U1
Flight_HatSwitchDown=POV_D1
Flight_HatSwitchLeft=POV_L1
Flight_HatSwitchRight=POV_R1
Flight_Pitch=Y:R
Flight_Roll=X
Flight_Yaw=Rz
Flight_Throttle=
Flight_CameraPitch=Ry
Flight_CameraYaw=Rx
UI_B=Button2
UI_A=Button1
UI_X=Button3
UI_Y=Button14
UI_LB=Button10
UI_RB=Button8
UI_LT=Button9
UI_RT=Button7
UI_LeftStickPress=
UI_RightStickPress=Button5
UI_DPadUp=POV_U1
UI_DPadDown=POV_D1
UI_DPadLeft=POV_L1
UI_DPadRight=POV_R1
UI_LeftStickUp=Y:N
UI_LeftStickDown=Y:P
UI_LeftStickLeft=X:N
UI_LeftStickRight=X:P
UI_RightStickUp=
UI_RightStickDown=
UI_RightStickLeft=
UI_RightStickRight=
UI_Menu=Button4
[Joystick-22210738-0000-0000-0000-504944564944]
ProductName=Saitek Pro Flight X-56 Rhino Stick
Flight_Gun=Button5
Flight_Missile=Button1
Flight_Weapon=Button3
Flight_Target=Button12
Flight_Radar=Button14
Flight_Flare=Button11
Flight_View= Button2
Flight_AccelerationDeceleration=Button6
Flight_AutoPilot=Button13
Flight_Pause=Button4
Flight_HatSwitchUp=POV_U1
Flight_HatSwitchDown=POV_D1
Flight_HatSwitchLeft=POV_L1
Flight_HatSwitchRight=POV_R1
Flight_Pitch=Y:R
Flight_Roll=X
Flight_Yaw=Rz
Flight_Throttle=
Flight_CameraPitch=Ry
Flight_CameraYaw=Rx
UI_B=Button2
UI_A=Button1
UI_X=Button3
UI_Y=Button14
UI_LB=Button10
UI_RB=Button8
UI_LT=Button9
UI_RT=Button7
UI_LeftStickPress=
UI_RightStickPress=Button5
UI_DPadUp=POV_U1
UI_DPadDown=POV_D1
UI_DPadLeft=POV_L1
UI_DPadRight=POV_R1
UI_LeftStickUp=Y:N
UI_LeftStickDown=Y:P
UI_LeftStickLeft=X:N
UI_LeftStickRight=X:P
UI_RightStickUp=
UI_RightStickDown=
UI_RightStickLeft=
UI_RightStickRight=
UI_Menu=Button4

 

우측 스로틀 왼쪽 뒤 버튼(I) 가 가속+감속 버튼

E 버튼 플레어(기본 설정)

기본 매핑 수정
[Joystick-A2210738-0000-0000-0000-504944564944]
ProductName=Saitek Pro Flight X-56 Rhino Throttle
Flight_Gun=
Flight_Missile=
Flight_Weapon=
Flight_Target=Button21
Flight_Radar=Button5
Flight_Flare=Button1
Flight_View=Button2
Flight_AccelerationDeceleration=Button4
Flight_AutoPilot=Button3
Flight_Pause=Button25
Flight_HatSwitchUp=
Flight_HatSwitchDown=
Flight_HatSwitchLeft=
Flight_HatSwitchRight=
Flight_Pitch=
Flight_Roll=
Flight_Yaw=
Flight_Throttle=X + Y
Flight_CameraPitch=Ry
Flight_CameraYaw=Rx
UI_B=
UI_A=
UI_X=
UI_Y=Button21
UI_LB=
UI_RB=
UI_LT=
UI_RT=
UI_LeftStickPress=Button32
UI_RightStickPress=Button2
UI_DPadUp=
UI_DPadDown=
UI_DPadLeft=
UI_DPadRight=
UI_LeftStickUp=
UI_LeftStickDown=
UI_LeftStickLeft=
UI_LeftStickRight=
UI_RightStickUp=
UI_RightStickDown=
UI_RightStickLeft=
UI_RightStickRight=
UI_Menu=Button25
[Joystick-A2210738-0000-0000-0000-504944564944]
ProductName=Saitek Pro Flight X-56 Rhino Throttle
Flight_Gun=
Flight_Missile=
Flight_Weapon=
Flight_Target=Button21
Flight_Radar=Button5
Flight_Flare=Button1
Flight_View=Button2
Flight_AccelerationDeceleration=Button4
Flight_AutoPilot=Button3
Flight_Pause=Button25
Flight_HatSwitchUp=
Flight_HatSwitchDown=
Flight_HatSwitchLeft=
Flight_HatSwitchRight=
Flight_Pitch=
Flight_Roll=
Flight_Yaw=
Flight_Throttle=X + Y
Flight_CameraPitch=Ry
Flight_CameraYaw=Rx
UI_B=
UI_A=
UI_X=
UI_Y=Button21
UI_LB=
UI_RB=
UI_LT=
UI_RT=
UI_LeftStickPress=Button32
UI_RightStickPress=Button2
UI_DPadUp=
UI_DPadDown=
UI_DPadLeft=
UI_DPadRight=
UI_LeftStickUp=
UI_LeftStickDown=
UI_LeftStickLeft=
UI_LeftStickRight=
UI_RightStickUp=
UI_RightStickDown=
UI_RightStickLeft=
UI_RightStickRight=
UI_Menu=Button25

 

포스트 스톨 기동이라는 걸 위해서는

Flight_AccelerationDeceleration 키를 눌러줘야 할 것 같아서 일단 이건 수정하지 않도록 해봐야 할 듯

근데 난 아직 비행기를 못 열었잖아? 안될거야 -_ㅠ

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

 

+

탑건 DLC로 해서 기동중에 AccDeacc 버튼 누르기 빠르게 회전한다.

언넝 F-35나 F-22를 열기 전에는 답이 없는건가..

'게임 > ace combat' 카테고리의 다른 글

ace combat 7 F-22 구매!  (0) 2025.03.09
ace combat 7 미션 진행중  (0) 2025.03.08
ace combat / x-56 hotas  (0) 2025.02.27
ace combat + x56 hotas  (0) 2025.02.22
ace comabt 7 - F-15C 뽑음  (0) 2025.02.13
Posted by 구차니