베타 문서. 앱이 1.0으로 안정화되면 일부 텍스트와 이미지가 재작업될 예정입니다. 섹션이 오래된 것으로 나타나면 다음을 통해 플래그를 지정하세요. 피드백 양식.

FFB-Bridge 설치

FFB-Bridge는 독립형 Windows 설치 프로그램 및 Linux AppImage로 제공됩니다. 둘 다 .NET 10 런타임을 번들로 제공합니다. 다운로드할 드라이버가 없습니다. SideWinder Force Feedback 2는 이미 최신 Windows 또는 Linux 커널의 HID 수준에서 작동합니다.

시작하기 전에

다음이 필요합니다.

  • A Microsoft SideWinder Force Feedback 2 joystick (USB VID 045E, PID 001B). The bridge is currently hardcoded to this specific stick.
  • 지원되는 시뮬레이터: Microsoft Flight Simulator 2024, X-Plane 11 또는 X-Plane 12. MSFS 2020은 테스트되지 않았습니다. DCS, Prepar3D 및 이전 Flight Simulator는 지원되지 않습니다.
  • Windows 10 (version 1809 or newer) or any modern Linux distribution with evdev — which is essentially every mainstream desktop distro.

윈도우 설치자

다운로드

에 가입하신 후 홈페이지, we email you a tokenised download link. Click the Windows installer link to save FfbBridge-Setup-x64.exe (about 34 MB).

설치 프로그램 실행

설치 프로그램을 두 번 클릭합니다. 하나 또는 두 개의 프롬프트가 표시됩니다.

  1. SmartScreen '인식할 수 없는 앱'입니다. 설치 프로그램은 아직 코드 서명되지 않았습니다. 서명은 1.0 로드맵에 있습니다. 클릭 추가 정보, 그러면 어쨌든 실행.
  2. Inno 설정 설정 마법사. 클릭 다음 through the two pages. The default install location is %LOCALAPPDATA%\Programs\FfbBridge — a per-user install, no administrator permission required.
윈도우 11 스마트 앱 제어는 서명되지 않은 앱을 완전히 차단합니다.

Windows 11을 사용하는 경우 스마트 앱 제어 (SAC)가 활성 모드에서 활성화되면 설치 프로그램이 실행되지 않습니다. SmartScreen 프롬프트도 없고 "어쨌든 실행" 옵션도 없고 아무 일도 일어나지 않습니다. SAC는 신뢰할 수 있는 코드 서명 서명이 없는 앱을 거부하며 베타 빌드는 아직 서명되지 않았습니다.

현재 이 문제를 해결하는 유일한 방법은 설치가 가능할 만큼 오랫동안 Smart App Control을 끄는 것입니다. Microsoft의 자체 지침에서는 흐름을 다룹니다(다음을 통해 전환하는 방법 포함). 설정 → 개인정보 및 보안 → Windows 보안 → 앱 및 브라우저 제어 → 스마트 앱 제어 설정):

Microsoft: 스마트 앱 제어 자주 묻는 질문(FAQ)

좋은 소식과 초기 Windows 11 비교: 최신 누적 업데이트를 사용하면 설치가 완료된 후 Windows 보안 앱에서 SAC를 다시 활성화할 수 있습니다. Microsoft는 Windows 전체를 다시 설치하도록 요구했지만 해당 제한은 사라졌습니다. FFB-Bridge 앱 자체는 SAC가 다시 켜진 후에도 계속 정상적으로 실행됩니다. SAC는 실행 시 이전에 본 적이 없는 앱만 확인합니다.

코드 서명된 설치 프로그램은 1.0 로드맵에 있으며 이 단계를 완전히 제거합니다.

출시

이름이 지정된 시작 메뉴 바로가기 FFB-브리지 lands in the FFB-Bridge program group. You can also launch directly from %LOCALAPPDATA%\Programs\FfbBridge\FfbBridge.Desktop.exe.

주의 — 바이러스 백신

Some antivirus products flag unsigned binaries. If yours quarantines the installer outright (rather than just warning), please email the flagged sample to feedback·ffb-bridge.com (replace the · with an @) so we can investigate.

제거 중

열기 앱 및 기능 Windows 설정에서 다음을 검색하세요. FFB-브리지을 선택하고 제거. Your profiles and preferences under %APPDATA%\ffb-bridge are left in place so a reinstall picks them up again; remove that folder by hand if you want a clean slate.

리눅스 앱이미지

다운로드

Same signup flow as Windows — click the Linux link in the email and you'll get FfbBridge-x86_64.AppImage (about 40 MB).

실행 가능하게 만들고 설치하십시오.

AppImages need the executable bit set and, on most distros, to be registered in the application menu so the desktop launcher picks them up. The included install.sh script does both; the long form is:

chmod +x FfbBridge-x86_64.AppImage
mkdir -p ~/Applications
mv FfbBridge-x86_64.AppImage ~/Applications/
~/Applications/FfbBridge-x86_64.AppImage --install

The --install flag registers a .desktop file and icon into your XDG data directories. After that, a FFB-브리지 항목은 다른 GUI 앱과 함께 애플리케이션 메뉴에 표시됩니다.

설치 후 KDE 플라즈마 응용 프로그램 실행 프로그램의 FFB-Bridge 항목
Figure 1. The installed menu entry on KDE Plasma. GNOME, Xfce, and other XDG-compatible environments pick it up identically.

udev 규칙(권장)

Out of the box, only the user whose login session owns the joystick can open its /dev/input/eventN node. For the bridge to keep working after a fast-user-switch, or simply to avoid polkit prompts on some distributions, the 의사 페이지에서는 다음 udev 규칙의 원클릭 설치를 제공합니다.

# /etc/udev/rules.d/99-ffb-bridge.rules
SUBSYSTEM=="input", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="001b", TAG+="uaccess"
닉스OS

NixOS reads udev rules from the system config, not /etc/udev/rules.d. Add the equivalent to your configuration.nix:

services.udev.extraRules = ''
  SUBSYSTEM=="input", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="001b", TAG+="uaccess"
'';

Then sudo nixos-rebuild switch and replug the stick.

제거 중

Either delete ~/Applications/FfbBridge-x86_64.AppImage and run the bundled uninstaller, or run the AppImage with the --uninstall flag to reverse the menu/icon registration automatically. Profiles and preferences under ~/.config/ffb-bridge are kept for a later reinstall.

설치 확인 중

FFB-Bridge를 실행합니다. 가장 먼저 봐야 할 것은 환영 대화 상자(다음 섹션에서 다룬다). 앱이 전혀 시작되지 않거나 실행 시 충돌이 발생하는 경우 바로 다음으로 이동하세요. 문제 해결.