On LineageOS (and most Android-based systems), you can change the Wi-Fi hotspot name (SSID) using adb by modifying the appropriate settings in the Android configuration database. Here’s how you can do it:
Make sure USB debugging is enabled on your device and you are connected via ADB:
bashadb shell
You can check the current hotspot name (SSID) with:
bashsettings get global wifi_softap_ssid
Use the following command to set a new SSID (replace MyNewHotspotName with your desired name):
bashsettings put global wifi_softap_ssid "MyNewHotspotName"
For the changes to take effect, you may need to restart the hotspot:
bashsvc wifi disable svc wifi enable
Or toggle the hotspot off and on from the settings menu.
bashsettings put global wifi_softap_password "MyNewPassword"
tether_ssid or similar.This Chat is read-only. Login to resume chatting.