Perplexity

How do I completely uninstall rustdesk on rapberian using apt

Uninstalling RustDesk on Raspberry Pi Using APT

To completely remove RustDesk from a Raspberry Pi running Raspbian (which uses the Debian-based APT package manager), follow these steps:

  1. Open the terminal on your Raspberry Pi.
  2. Update the package list to ensure you have the latest information about installed packages: sudo apt update
  3. Remove the RustDesk server package: sudo apt remove rustdesk-server
  4. Remove the RustDesk client package: sudo apt remove rustdesk-client
  5. Purge the configuration files and dependencies associated with RustDesk: sudo apt autoremove --purge rustdesk*
  6. Check if any remaining packages related to RustDesk are still installed: dpkg -l | grep rustdesk
  7. If any packages remain, remove them using the package names found in step 6.
  8. Clean up the APT cache and remove unnecessary files: sudo apt autoremove --purge && sudo apt autoclean
  9. Verify that RustDesk has been completely uninstalled by checking for its presence in the list of installed packages: dpkg -l | grep rustdesk If no RustDesk-related packages are listed, you have successfully completed the uninstallation process. Note: The above steps assume you installed RustDesk using APT. If you installed it manually or through another method, additional steps may be required to fully remove all associated files and configurations. Remember to restart your Raspberry Pi after completing these steps if necessary for the changes to take effect. 1 How to Uninstall Software from Raspberry Pi Operating System 2 How can we completely remove Rust installed by Ubuntu? 3 Installation :: Documentation for RustDesk

How can i see the rustdesk id to connect to using ssh?
rustdesk --get-id > out.txt
cat out.txt

If you want to set a new password as well, you can use the following command:
sudo rustdesk --password 'yournewpassword'

I installed rustdesk on raspian. I used SD Card Copier to copy to another disk. When I booted that disk on another raspberry pi rustdisk shows the same id as the original disk. How can I reset that to another Id. Can I use addresses instead of iDs?