First Time Setup¶
Before you use Galaxy Flasher for the first time, there are a few things you have to do:
Setup udev rules - This is so Galaxy Flasher can detect your device.
Open a terminal.
Create a “/etc/udev/rules.d/51-android.rules” file, and add the rule to it:
$ echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666", GROUP="plugdev"' | sudo tee -a /etc/udev/rules.d/51-android.rulesOn older kernels, you might also need to unload the cdc_acm module, use:
$ sudo modprobe -r cdc_acm
to temporarily unload the module, or:
$ echo 'blacklist cdc_acm' | sudo tee -a /etc/modprobe.d/cdc_acm-blacklist.conf
to disable it.
Select a flash-tool for Galaxy Flasher to use
TODO.