Skip to content

Instantly share code, notes, and snippets.

@gravityfargo
Created June 29, 2022 22:35
Show Gist options
  • Save gravityfargo/f136425487767dd620d737d76162825c to your computer and use it in GitHub Desktop.
Save gravityfargo/f136425487767dd620d737d76162825c to your computer and use it in GitHub Desktop.

Enable Experimental Device Support

In order to use newly supported devices marked as experimental, you will need to modify your daemon's unit file to start with the required flag for experimental device support.

  1. Verify the ckb-next daemon is running on your system.

systemctl status ckb-next-daemon.service

Screenshot

  1. Stop the daemon.

sudo systemctl stop ckb-next-daemon.service

  1. Open the unit file.

sudo systemctl edit --full ckb-next-daemon.service

  1. Add the --enable-experimental flag to the end of the ExecStart entry.

Screenshot

  1. Start the daemon again.

sudo systemctl start ckb-next-daemon

  1. Verify the flag is enabled by checking the status of the service.

sudo systemctl status ckb-next-daemon

Screenshot

  1. The flag will persist across reboots and logouts. To disable the feature, follow the same steps but remove the flag instead.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment