davesteele / comitup

Bootstrap Wifi support over Wifi
https://davesteele.github.io/comitup/
GNU General Public License v2.0
322 stars 54 forks source link

Changing the SSID #27

Closed augisbud closed 5 years ago

augisbud commented 5 years ago

Hello, I have been wondering how do I change the SSID for eg. comitup-<nn> -> Hello.

cyberchucktx commented 5 years ago

Um, this is clearly in the configuration file (see below).

# ap_name
# This defines the name used for the AP hotspot, and for the ZeroConf
# host name. The "<nnn>" string, if present, will be replaced with an
# instance-unique, persistent number of the same length. There may be
# up to four "n's" in the string.
#
# ap_name: comitup-<nn>
augisbud commented 5 years ago

Where can I find the config if I do a package install?

cyberchucktx commented 5 years ago

You can find the configuration file in the CONF folder on GitHub archive site ( https://github.com/davesteele/comitup ), conf folder at https://github.com/davesteele/comitup/tree/master/conf

augisbud commented 5 years ago

I meant in linux, raspbian, when I install it using sudo apt-get install comitup

cyberchucktx commented 5 years ago

To list installed packages on any Debian system (including Raspian), use

apt list --installed

To see where disk paths are related to a given package:

dpkg -L <packagename-returned-by-apt-list>

davesteele commented 5 years ago

... which will tell you that the file is /etc/comitup.conf.

"man comitup" would have gotten you there as well (it's actually documented in the comitup.conf man page).