mirror of
https://github.com/jetkvm/website.git
synced 2025-09-16 08:38:16 +00:00
99 lines
3.8 KiB
Plaintext
99 lines
3.8 KiB
Plaintext
---
|
|
title: "Factory Reset"
|
|
description: "Learn how to perform a factory reset on your JetKVM device using DFU Mode. This guide covers entering DFU Mode and flashing the latest firmware to restore your device to its original settings."
|
|
order: 1
|
|
---
|
|
|
|
If you need to reset your JetKVM device, this can be done by reflashing the firmware through DFU Mode (Device Firmware Update). This process restores the device by installing the latest firmware, effectively resetting it to factory settings. DFU Mode is essential when you can't access the KVM over SSH or want to start fresh with a clean firmware install.
|
|
|
|
## Reset Your JetKVM Using DFU Mode
|
|
|
|
To reset the device, you will use DFU Mode, which allows you to flash the firmware directly to the KVM. Instead of compiling custom firmware, you will download the latest official firmware from the JetKVM GitHub repository.
|
|
|
|
### Steps to Enter DFU Mode:
|
|
|
|
1. Unplug the USB cable from the device.
|
|
2. Locate the small hole on the right side of the device.
|
|
3. Insert a needle into the hole and press & hold the button inside before reconnecting the USB cable.
|
|
4. Hold the needle for three seconds, then release. Your device is now in DFU Mode.
|
|
|
|
##### Flashing the Latest Firmware:
|
|
|
|
1. Download the firmware update tool from [MacOS & Linux](https://wiki.luckfox.com/Luckfox-Pico/Linux-MacOS-Burn-Image/) or [Windows](https://wiki.luckfox.com/Luckfox-Pico/Luckfox-Pico-RV1106/Luckfox-Pico-Ultra-W/Luckfox-Pico-emmc-burn-image/#driver-installation).
|
|
2. Download the latest JetKVM firmware from [here](https://api.jetkvm.com/releases/system_recovery/latest).
|
|
3. Once you have the firmware and update tool, run the following command in your terminal to flash the firmware, while being in DFU Mode:
|
|
|
|
```sh
|
|
sudo ./upgrade_tool uf update.img
|
|
```
|
|
|
|
## Windows Specific Instructions
|
|
|
|
#### Prepare your computer for flashing
|
|
|
|
1. Download and install the [RK Driver Assistant](https://files.luckfox.com/wiki/Luckfox-Pico/Software/DriverAssitant_v5.12.zip).
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/driverinstall.png"
|
|
alt="Driver Install"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|
|
|
|
2. Download and extract the [flashing tool](https://files.luckfox.com/wiki/Luckfox-Pico/Software/SocToolKit_v1.98_20240705_01_win.zip).
|
|
3. Open the software (right-click and run as administrator) and select RV1106 when prompted for chip selection
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/rv1106.png"
|
|
alt="Chip Selection"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|
|
#### Flashing the Latest Firmware
|
|
|
|
1. Boot JetKVM into DFU mode (instructions above), making sure you are using the USB from the computer you plan to flash with to power the JetKVM
|
|
2. Make sure USB is selected and that "Maskrom 22" is in the field to the right. If not, you need to make sure the driver is successfully installed
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/maskrom.png"
|
|
alt="maskrom"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|
|
3. Click "Firmware" and select the [JetKVM Image](https://api.jetkvm.com/releases/system_recovery/latest) you previously downloaded
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/firmware.png"
|
|
alt="Firmware"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|
|
4. Click upgrade
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/upgrade.png"
|
|
alt="Upgrade"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|
|
5 Once the firmware update completed, remove power from the JetKVM and it will be factory reset.
|
|
<Card className="mb-2 inline-block max-w-[480px] overflow-hidden">
|
|
<img
|
|
src="/upgradeok.png"
|
|
alt="Completed Upgrade"
|
|
style={{
|
|
margin: "0 auto",
|
|
}}
|
|
/>
|
|
</Card>
|