On Sat, Apr 18, 2020 at 09:15:54PM -0700, Guerlan wrote: > I'm reading qubes-core-admin python source code and it opens a socket > connection to qubesd. What is it? Where can I find its source? >
It is service that provides core Qubes functionality. Source is in core-admin/qubes/tools/qubesd.py You could have found this yourself in dom0 -`ps aux |grep qubesd` points you at /usr/bin/qubesd Inspection of that file indicates existence of qubesd.py `find -name qubesd*` gets the file name: /usr/lib/python3.5/site-packages/qubes/tools/qubesd.py `dnf provides` tells you which package provides the file: qubes-core-dom0 Or if you have the full source downloaded you could just grep for the name using `grep -r` -- You received this message because you are subscribed to the Google Groups "qubes-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/qubes-users/20200419142216.GA11021%40thirdeyesecurity.org.
